如何在expo中使用android-intent (例如:)
Intent promptInstall = new Intent(Intent.ACTION_VIEW)
.setDataAndType(Uri.parse("file:///path/to/your.apk"),
"application/vnd.android.package-archive");
startActivity(promptInstall); 发布于 2020-09-23 03:24:37
您可以使用IntentLauncher接口:https://docs.expo.io/versions/latest/sdk/intent-launcher/
https://stackoverflow.com/questions/64016358
复制相似问题