jtnwm
2018-06-08 13:15:06 +08:00
```
JOB #u0a9/1: df19174 DownloadManager:com.android.providers.downloads
u0a9 tag=*job*/DownloadManager:com.android.providers.downloads
Source: uid=u0a17 user=0 pkg=com.android.vending
JobInfo:
Service: com.android.providers.downloads/.DownloadJobService
Priority: 30
Flags: 1
Requires: charging=false batteryNotLow=false deviceIdle=false
Network type: 2
Backoff: policy=1 initial=+30s0ms
Required constraints: UNMETERED
Satisfied constraints: CONNECTIVITY NOT_ROAMING METERED APP_NOT_IDLE DEVICE_NOT_DOZING
Unsatisfied constraints: UNMETERED
Tracking: CONNECTIVITY
Enqueue time: -7m37s263ms
Run time: earliest=none, latest=none
Ready: false (job=false user=true !pending=true !active=true !backingup=true comp=true)
```
```
/** This job requires network connectivity that is unmetered. */
public static final int NETWORK_TYPE_UNMETERED = 2;
```
```
public int getRequiredNetworkType(long totalBytes) {
if (!mAllowMetered) {
return JobInfo.NETWORK_TYPE_UNMETERED;
}
if (mAllowedNetworkTypes == DownloadManager.Request.NETWORK_WIFI) {
return JobInfo.NETWORK_TYPE_UNMETERED;
}
if (totalBytes > mSystemFacade.getMaxBytesOverMobile()) {
return JobInfo.NETWORK_TYPE_UNMETERED;
}
if (totalBytes > mSystemFacade.getRecommendedMaxBytesOverMobile()
&& mBypassRecommendedSizeLimit == 0) {
return JobInfo.NETWORK_TYPE_UNMETERED;
}
if (!mAllowRoaming) {
return JobInfo.NETWORK_TYPE_NOT_ROAMING;
}
return JobInfo.NETWORK_TYPE_ANY;
}
```
楼主还是看看 ss 网络设置 play 哪有问题吧,也可以清数据试试。
顺便问下 opengapps 8.1 的的应用为啥直接安装的时候会说签名有点问题。
[INSTALL_PARSE_FAILED_NO_CERTIFICATES]