We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
修改app启动launcher的icon的时候, packageManager.setComponentEnabledSetting( alias, if (use) PackageManager.COMPONENT_ENABLED_STATE_ENABLED else PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP ) 虽然设置了PackageManager.DONT_KILL_APP,但是大概率还是会被系统强行关闭。 能否热修这个activity-alias的enabled,绕过系统这个限制呢
packageManager.setComponentEnabledSetting( alias, if (use) PackageManager.COMPONENT_ENABLED_STATE_ENABLED else PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
修改app启动launcher的icon的时候,
packageManager.setComponentEnabledSetting( alias, if (use) PackageManager.COMPONENT_ENABLED_STATE_ENABLED else PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP )
虽然设置了PackageManager.DONT_KILL_APP,但是大概率还是会被系统强行关闭。
能否热修这个activity-alias的enabled,绕过系统这个限制呢
The text was updated successfully, but these errors were encountered: