NextVersions icon indicating copy to clipboard operation
NextVersions copied to clipboard

[DEPRECATED]

Results 3 NextVersions issues
Sort by recently updated
recently updated
newest added

if (currentVersion.code >= remoteVersion.code) return;

部分手机如小米等禁止使用android.permission.SYSTEM_ALERT_WINDOW,只有手动在权限里打开才可以

项目中一直在用您的这个自动更新库,但是在同事的**华为H60-L01**手机上总是不能更新成功,出现“**应用停止运行**”,其他手机上暂时没发现这个问题,打断点是在如下代码处开始出错,希望您能帮忙解决,谢谢您, 在Downloads类的submit函数 long id = download.enqueue(request);处; ` public long submit(Context context, Version version){ DownloadManager download = (DownloadManager)context.getSystemService(Context.DOWNLOAD_SERVICE); Uri uri = Uri.parse(version.URL); DownloadManager.Request request = new DownloadManager.Request(uri); request.setTitle(version.name); long id =...