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接入了微信登录、支付等,必须要在manifest里配置指定格式的Activity,否则可能无法正常回调,比如: `
<activity android:name="com.xxx.xxx.wxapi.WXEntryActivity" android:label="@string/app_name" android:theme="@android:style/Theme.Translucent.NoTitleBar" android:exported="true" android:taskAffinity="com.xxx.xxx" android:launchMode="singleTask"> </activity>`
其中com.xxx.xxx是应用包名,以上信息配置到manifest里后,也会被XmlClassGuard混淆,会造成微信登录、支付异常,请问有办法能指定不混淆某些Activity吗?
The text was updated successfully, but these errors were encountered:
${applicationId}.wxapi.WXEntryActivity这样写就好
${applicationId}.wxapi.WXEntryActivity
Sorry, something went wrong.
好的,可以了,非常感谢
No branches or pull requests
你好,像APP接入了微信登录、支付等,必须要在manifest里配置指定格式的Activity,否则可能无法正常回调,比如:
`
其中com.xxx.xxx是应用包名,以上信息配置到manifest里后,也会被XmlClassGuard混淆,会造成微信登录、支付异常,请问有办法能指定不混淆某些Activity吗?
The text was updated successfully, but these errors were encountered: