在安装系统服务apk期间“INSTALL_FAILED_SHARED_USER_INCOMPATIBLE”

时间:2017-02-15 10:38:41

标签: wso2 android-install-apk

要构建包“org.wso2.emm.system.service”,我使用AndroidStudio,SDK 23从https://github.com/wso2/product-emm(文件夹:modules / mobile-agents / android / system-service)构建APK。 / p>

构建编译通过,我得到apk,并希望在Android 6.0.1上安装在我的非root设备(Galaxy Tab A6 2016)上。

我在这里输入安装apk:

public static void startDownload() throws IOException, ParseException {

    Drive serv = getDriveService();

    FileList result = serv.files().list().setMaxResults(10).execute(); //there are 10 files in the root folder     

    List<File> listA = result.getItems();

    if (listA == null || listA.isEmpty()) {
        System.out.println("No files found.");
    } else {
        System.out.println("Files:"+lista.size());
        for (File file : listA) {
            System.out.printf("%s (%s)\n", file.getTitle(), file.getDownloadUrl());
            downloadFile(serv, file);
        }
    }
}

所以,我有两个问题:

  • 设备必须是否已植根?
  • 如果设备已植根,则不会导致代理程序包(org.wso2.emm.agent)出现问题?

非常感谢您的期货回复。

0 个答案:

没有答案