要构建包“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);
}
}
}
所以,我有两个问题:
非常感谢您的期货回复。