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
安装APK时,不出现安装完成界面,建议在startActivity方法中增加代码判断是否APK: Intent intent = new Intent(Intent.ACTION_VIEW); if(TYPE_STRING_APK.equals(typeString)) intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); else intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
Intent intent = new Intent(Intent.ACTION_VIEW); if(TYPE_STRING_APK.equals(typeString)) intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); else intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
The text was updated successfully, but these errors were encountered:
这个问题是部分机型存在,还是所有机型都存在?
Sorry, something went wrong.
部分机型,我用的是三星,然后安卓版本6.0.0
fix #106 #100 #74
35327e3
No branches or pull requests
安装APK时,不出现安装完成界面,建议在startActivity方法中增加代码判断是否APK:
Intent intent = new Intent(Intent.ACTION_VIEW); if(TYPE_STRING_APK.equals(typeString)) intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); else intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
The text was updated successfully, but these errors were encountered: