android-auto-update icon indicating copy to clipboard operation
android-auto-update copied to clipboard

Android 应用自动更新。Android update checker,download and install apk file

Results 11 android-auto-update issues
Sort by recently updated
recently updated
newest added

Hi, Is it possible to use this to update any installed app without user interaction?

https://raw.githubusercontent.com/feicien/android-auto-update/develop/extras/update.json 这个是不是GitHub提供的一个接口服务?

download apk file error:Conversion = 'End of String'

使用android-auto-update-v1.2.apk安装后,点击对话框更新报错,本质上你没有处理 ```java if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { //先获取是否有安装未知来源应用的权限 boolean haveInstallPermission = getPackageManager().canRequestPackageInstalls(); if (!haveInstallPermission) { //跳转设置开启允许安装 Uri packageURI = Uri.parse("package:"+context.getPackageName()); Intent intent =new Intent(Settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES,packageURI); startActivityForResult(intent,1000); return; } } ``` 处理canRequestPackageInstalls

安卓小白,求使用方法,不知道怎么用,求大神告知