我正在使用下载管理器从互联网下载文件。在Android6,8.1中下载成功,但在Android9.0中下载失败
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
request.setDescription("Downloading...");
request.setTitle(nameOfFile);
request.setMimeType("application/pdf");
request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS + "/CPG", nameOfFile);
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
queueId = manager.enqueue(request);
这个标签对我有用
android:usesCleartextTraffic="true"
将此标记添加到应用程序中
<application
android:name=".ApplicationClass"
android:allowBackup="true"
android:hardwareAccelerated="false"
android:usesCleartextTraffic="true"
解决方案2)
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true" />
</network-security-config>
android:networkSecurityConfig="@xml/network_security_config"
下载Android派9.0中不工作的马槽(小米mi A2)
如有任何帮助,我们将不胜感激。谢谢
问题内容: 我对android 7.0.0有一些问题。 我为我的应用程序使用了volley库,除了Android 7.0以外,它都运行良好 这是我的代码的一部分; 如果我在Android 7.0上测试我的应用程序,则控制台的输出为: D / NetworkSecurityConfig:未使用平台默认I / Choreographer指定网络安全配置:跳过127帧!该应用程序可能在其主线程上做过多的
我使用jhipster版本7.6.0,这是我的CacheConfiguration类。 以下是redisson的依赖关系: 这是我的应用程序dev.yml: 一切都是由jHipster生成的,在安装redis 3.2.100版后,我遇到了以下异常: 顺便说一下,项目正在成功编译。 提前感谢您的帮助!
问题内容: 我正在尝试将我的应用程序升级到新版本的Firebase。我仔细阅读了设置指南,并编辑了所有代码以匹配新语法。但是,当我运行该应用程序时,出现了这两个错误。 我 在AppDelegate中,并将GoogleServices- Info.plist导入到我的项目中。plist也具有所有正确的信息。其他人遇到这个问题或知道如何解决? 问题答案: 这是您的问题的答案: 要配置Firebase,
Here are the articles in this section:跨站脚本跨站请求伪造