文件名称:Android 静默安装和静默卸载(SilentInstaller)
文件大小:104KB
文件格式:ZIP
更新时间:2020-12-01 11:33:23
静默安装卸载
详情见:Android 静默安装和静默卸载(系统层) http://blog.csdn.net/zhouyuanjing/article/details/78507606 安装: Intent intent = new Intent("android.intent.action.SILENT_PACKAGE_INSTALL"); intent.putExtra("silent_install_file", "/sdcard/Helloworld.apk"); intent.putExtra("silent_install_auto_start", true);//是否安装并启动 intent.putExtra("silent_install_start_clazz", "com.example.helloworld.MainActivity");//如果安装并启动,则需指定activityName sendBroadcast(intent); 卸载: Intent intent = new Intent("android.intent.action.SILENT_PACKAGE_DELETE"); intent.putExtra("silent_delete_package", "com.example.helloworld");//指定需要卸载apk的包名 sendBroadcast(intent);
【文件预览】:
SilentInstaller
----AndroidManifest.xml(1KB)
----res()
--------layout()
--------drawable-mdpi()
--------drawable-hdpi()
--------drawable-xhdpi()
--------drawable-xxhdpi()
--------values-zh-rCN()
--------values()
----src()
--------com()
----proguard-project.txt(781B)
----.classpath(425B)
----SilentInstallerTest()
--------AndroidManifest.xml(847B)
--------res()
--------src()
--------proguard-project.txt(781B)
--------.classpath(425B)
--------project.properties(607B)
--------ic_launcher-web.png(50KB)
--------.project(822B)
--------Android.mk(228B)
----project.properties(563B)
----.settings()
--------org.eclipse.jdt.core.prefs(173B)
----.project(818B)
----Android.mk(282B)