我创建了一个应用程序,其资产目录中包含另一个第三方.apk。
我想知道如果我将我的应用程序上传到Google播放。
有什么问题吗? #34; .apk文件不能包含另一个.apk文件"等等。
我已从我的资源文件夹中以编程方式安装了第三方应用程序。
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File
(Environment.getExternalStorageDirectory() + "/com.ayansoft.androphp-1.2.0-free-eccb-www.apkhere.com.apk")), "application/vnd.android.package-archive");
startActivity(intent);