# AppInstaller **Repository Path**: bruceran/appinstaller ## Basic Information - **Project Name**: AppInstaller - **Description**: android 系统中应用批量安装 - **Primary Language**: Android - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-01-17 - **Last Updated**: 2023-05-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 应用批量安装器 android 系统级应用批量安装和卸载 # 使用说明: 装此应用进相应的系统签名后作为系统应用安装,完成后就可以实现对指定路径下的应用或多个应用进批量安装;批量卸载功能还在完善中。 在任何一个应用中调用如下: ``` ArrayList apklist = new ArrayList<>(); apklist.add("/sdcard/xxx/launcherAssets/581e2aedeff23f210b4f40b1edecf4be.apk");//apk的绝对路径 Intent intent = new Intent(); intent.setAction(Receiver.ACTION_ASSETS_UPDATE_COMPLETED); intent.putStringArrayListExtra(Receiver.ACTION_APK_LIST, apklist); appContext.sendBroadcast(intent); ```