Connor Tumbleson
Connor Tumbleson
I downloaded the application and was surprised to find it over 200mb - for a remote...for a car. Thats about all the news at the moment. ``` 7f37fbd25d27ee79c992b99a46a02061 Jaguar Remote_2.18.0_Apkpure.apk...
How come I've never heard of `android:graph`? Need to find what framework/sdk version that is from.
Sure - remove all those attributes the framework doesn't know about. A hacky workaround, but it might work.
Confirmed, I'll investigate if bug or a new framework.
Appears to be a bug. We have a situation where the resource namespaces are stripped, like so. ``` ➜ 3533 aapt2 d xmltree app-release.apk --file res/6x.xml N: android=http://schemas.android.com/apk/res/android (line=5) N:...
I took a look at this some more. While the namespace uri was stripped, the prefix wasn't. So I should be able to maintain a common pool of URIs to...
* 16, 25 (prefix, uri), (android, http://schemas.android.com/apk/res/android) * 18, 24 (prefix, uri), (app, http://schemas.android.com/apk/res-auto) I see a bug - we are mixing up offset/index when resolving a non-main uri/prefix for...
``` [9, 5, -1, 1, 0x7F110003] ``` Haven't been able to pinpoint how this is occurring yet. So ignore my notes as I leave reminders for myself for next time....
and sadly my [attempt](https://github.com/iBotPeaches/TestApks/commit/1286a92d2feaa73e758804c2f72fefa121b7a326) to replicate fails - it correctly decodes. ```xml ``` Somehow this application stripped the ending namespace declaration which has thrown off the detection of namespaces when...
@REAndroid - could I pick your brain with this? Looking at file `res/6x.xml` in this application - Apktool improperly associates the Android namespace instead of the app namespace. ``` ➜...