我知道有很多关于此问题的堆栈溢出帖子,但是我无法使用其中任何一个来解决我的问题。
我的应用仅适用于有限的一群人(内部公司应用),因此我无法在应用商店中发布它,并且当我在应用服务器上发布新版本时,我希望它能够自动更新。
它是device admin
应用,没有root权限。我发现可以使用this方法来实现此目标,但是没有用。
我的AndroidManifest.xml
文件具有安装软件包的权限:
<uses-permission android:name="android.permission.INSTALL_PACKAGES" />
这是我的代码:
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
private void installPackage(Context context, String filePath, String packageName)
throws IOException
{
Log.d(TAG, "installPackage: start");
PackageInstaller packageInstaller = context.getPackageManager().getPackageInstaller();
PackageInstaller.SessionParams params = new PackageInstaller.SessionParams(
PackageInstaller.SessionParams.MODE_FULL_INSTALL);
params.setAppPackageName(packageName);
// set params
int sessionId = packageInstaller.createSession(params);
PackageInstaller.Session session = packageInstaller.openSession(sessionId);
//
InputStream in = new FileInputStream(new File(filePath));
OutputStream out = session.openWrite(packageName, 0, -1);
IOUtils.copyStream(in, out);
//
session.fsync(out);
in.close();
out.close();
//
session.commit(PendingIntent.getActivity(context, 112233, new Intent(context, MainActivity.class), PendingIntent.FLAG_UPDATE_CURRENT).getIntentSender());
Log.d(TAG, "installPackage: commit");
}
这是我的onCreate
类的MainActivity
方法:
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
ComponentName componentName = new ComponentName(this, AdminReceiver.class);
DevicePolicyManager dpm = (DevicePolicyManager) getSystemService(Context.DEVICE_POLICY_SERVICE);
if (getIntent() != null && dpm != null)
{
Log.d(TAG, "onCreate: is app admin : " + dpm.isAdminActive(componentName));
Log.d(TAG, "onCreate: status : " + getIntent().getIntExtra("android.content.pm.extra.STATUS", 1000));
Log.d(TAG, "onCreate: intent : " + getIntent().getParcelableExtra("android.intent.extra.INTENT"));
}
}
这是我的logcat
结果:
2019-07-08 15:03:24.147 5841-5841/com.test.learncheshmak D/AutoUpdateHelper: downloadUpdate: SUCCESSFUL
2019-07-08 15:03:24.147 5841-5841/com.test.learncheshmak D/AutoUpdateHelper: installPackage: start
2019-07-08 15:03:24.295 5841-5841/com.test.learncheshmak D/AutoUpdateHelper: installPackage: commit
2019-07-08 15:03:24.298 5841-5895/com.test.learncheshmak V/FA: Recording user engagement, ms: 11740
2019-07-08 15:03:24.302 5841-5841/com.test.learncheshmak W/ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@fe51cb8
2019-07-08 15:03:24.307 5841-5841/com.test.learncheshmak V/FA: onActivityCreated
2019-07-08 15:03:24.308 5841-5895/com.test.learncheshmak V/FA: Connecting to remote service
2019-07-08 15:03:24.308 5841-5841/com.test.learncheshmak D/MainActivity: onCreate: is app admin : true
2019-07-08 15:03:24.309 5841-5841/com.test.learncheshmak D/MainActivity: onCreate: status : -1
2019-07-08 15:03:24.309 5841-5841/com.test.learncheshmak D/MainActivity: onCreate: intent : Intent { act=android.content.pm.action.CONFIRM_PERMISSIONS pkg=com.google.android.packageinstaller (has extras) }
在这里,我们看到状态为-1。根据{{3}}文档,我得到了STATUS_PENDING_USER_ACTION
,它确定我们需要用户提示来更新我们的应用。但是此应用是设备管理员(设备所有者)应用,并且根据this文档:< / p>
上岗可能需要用户干预才能完成安装,除非呼叫者属于以下类别之一,在这种情况下,安装将自动完成。
- 设备所有者
- 关联个人资料所有者
因此,如果应用为device owner
,安装进度将自动执行(没有用户提示)。那为什么我的应用程序是STATUS_PENDING_USER_ACTION
的应用程序时却得到device admin
?