CSharpShellApp icon indicating copy to clipboard operation
CSharpShellApp copied to clipboard

AndroidManifest question

Open sedoLevi609 opened this issue 2 years ago • 5 comments

Can you somehow implement the edit of AndroidManifest for scenarios(even to work in compiled apk), when I need to add queries/intent for Map or for features that requires these only for Android 11, like adding this:

Screenshot_20230221_094140_com huawei browser

?

Or for features, like camera(mediapicker) on android 11?

sedoLevi609 avatar Feb 21 '23 08:02 sedoLevi609

Queries? I think it is all basically strings so yes, should be implementable.

radimitrov avatar Feb 22 '23 12:02 radimitrov

@radimitrov Will you please implement it?

sedoLevi609 avatar Mar 08 '23 12:03 sedoLevi609

@sedoLevi609 Yes, I'm implementing it

radimitrov avatar Mar 08 '23 17:03 radimitrov

@radimitrov I see I can add queries to AndroidManifest, but should I do something after setting the queries text or it's doing auto-save after I change the text in queries? (I tried to search it in compiled apk(as zip) androidmanifest, but I can't see my queries, though as I see the androidmanifest.xml end is only from symbols, so I can't read it, and can't see my queries in the part that is readable)

sedoLevi609 avatar Mar 20 '23 11:03 sedoLevi609

@sedoLevi609 It should autosave. AndroidManifest.xml is stored (and edited in this case) in AXML or binary XML. You can use an app like Apk Analyzer to examine installed app's manifest as plain text.

radimitrov avatar Mar 20 '23 13:03 radimitrov