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
插件内的activity 声明了,同时声明了data,如下。在插件内通过startActivity 无法跳转对应的activity Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("scheme://host/path")); context.startActivity(intent);
<action android:name="android.intent.action.VIEW" /> <data android:host="host" android:path="/path" android:scheme="scheme" />
replugin-host-lib/gradle Version: rePlugin-plugin-lib/gradle Version:
Android API Version: Android 手机型号&ROM(Phone model & ROM):
The text was updated successfully, but these errors were encountered:
No branches or pull requests
问题详细描述 Detailed description of the problem
插件内的activity 声明了,同时声明了data,如下。在插件内通过startActivity 无法跳转对应的activity
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("scheme://host/path"));
context.startActivity(intent);
复现问题步骤 Steps to reproduce the problem
其它重要信息 Other important information
replugin-host-lib/gradle Version:
rePlugin-plugin-lib/gradle Version:
Android API Version:
Android 手机型号&ROM(Phone model & ROM):
Logcat上下文 Logcat context
The text was updated successfully, but these errors were encountered: