Google Play控制台:0个支持的设备

时间:2017-06-01 21:37:01

标签: android google-play-console

我正在努力寻找答案。我阅读了关于清单过滤的Google文档,例如manifest filtering,我还在论坛周围发现了一些类似的问题,如thisthis但到目前为止我没有任何作用,我在我的控制台上看到0设备支持app是我的AndroidMnifest.xml:

<?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="app.googledrive">
<uses-sdk
    android:minSdkVersion="17"
    android:targetSdkVersion="25" />

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

  <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

 <uses-permission android:name="android.permission.READ_CONTACTS"/>

 <uses-permission android:name="com.android.alarm.permission.SET_ALARM"/>
 <supports-screens
    android:resizeable="true"
    android:smallScreens="true"
    android:largeScreens="true"
    android:xlargeScreens="true"
    android:normalScreens="true"
    android:anyDensity="true"/>
<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="my contacts backup"
    android:supportsRtl="true"
    android:theme="@style/Theme.AppCompat.Light.NoActionBar"

    >

我的build.gradle:

    apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion '25.0.2'

defaultConfig {
    applicationId "app.googledrive"
    minSdkVersion 14
    targetSdkVersion 25
    versionCode 6
    versionName "2.2.1"
    multiDexEnabled true
    vectorDrawables.useSupportLibrary = true
   }
    buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])




compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.google.android.gms:play-services-drive:10.2.6'
compile 'com.google.android.gms:play-services-ads:10.2.6'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.github.angads25:filepicker:1.1.0'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:support-vector-drawable:25.3.1'
compile 'com.google.android.gms:play-services-ads:10.2.4'
testCompile 'junit:junit:4.12'
}

0 个答案:

没有答案