Shizuku
Shizuku copied to clipboard
If application label refer string resource, can't get permission, must manual enable it.
Please report bugs of Shizuku itself.
Requirements:
- [x] Shizuku version is up-to-date
- [x] Shizuku is downloaded from official channels (GitHub release or Google Play)
- [x] Shizuku is not running in a virtual environment or broken ROM (GrapheneOS)
- [x] (Root users) No Xposed installed / Xposed is not enabled for Shizuku
Information:
- Shizuku version:3.1.2
- Mode: [adb, root]adb
- Android version:13
- Device: (optional)
Describe the bug: if set application attribute label to "@string/app_name",like below:
<application
android:label="@string/app_name">
</application>
The applications manager will show package name instead of app_name. It can't get permission after request permission, must manual enable it. if we hardcode application label, it will work,like below:
<application
android:label="hardcode_str">
</application>