Android 静默安装和静默卸载(SilentInstaller)

时间:2020-12-01 11:33:23
【文件属性】:

文件名称: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)

网友评论

  • 帮朋友下的,哈哈
  • 您好,您这个在7.0以上验证了么
  • 您好,你这个里面的代码,我导入我的eclipse里面,PackageManager.installPackage报错是怎么回事呢,是安卓版本的问题么?