-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] AndroidManifest.xml is missing attributes when decoding apk #2981
Comments
Hmm that is odd. I replicate. Marking as bug. |
I have exactly the same issue with one apk that I downloaded. Jadx seems to parse it correctly so it's somehow a problem in the parser I guess |
Hello, any news of this bug? Any idea where I can dig to fix it? It affects more and more APKs. |
After some research the bug was introduced by 3fff2f1. |
Hello, is there any updates? |
PR linked above solves about 99% of this. Struggling to figure out a few resources. <?xml version="1.0" encoding="utf-8"?>
<selector xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="true" app:2130969642="true" 2130969643="false">
<objectAnimator android:duration="150" android:valueTo="0.0dip" android:valueType="floatType" android:propertyName="elevation" />
</item>
<item android:state_enabled="true">
<objectAnimator android:duration="150" android:valueTo="4.0dip" android:valueType="floatType" android:propertyName="elevation" />
</item>
<item>
<objectAnimator android:duration="0" android:valueTo="0" android:valueType="floatType" android:propertyName="elevation" />
</item>
</selector> This is file - aapt2
aapt
No matter what I search these appear to be invalid/bogus resources. They have no corresponding resource/name
(the 2 missing xmlstrings)
(the resource dumped w/ name context) |
Information
apktool -version
) - 2.7.0Stacktrace/Logcat
Steps to Reproduce
java -jar apktool_2.7.0.jar decode All4.apk -o All4-decoded -only-main-classes
AndroidManifest.xml
Frameworks
N/A
APK
https://m.apkpure.com/all-4-watch-live-on-demand/com.channel4.ondemand/download
Questions to ask before submission
apktool d
,apktool b
without changing anything? YesThe text was updated successfully, but these errors were encountered: