1

UPDATEПочему мой список поддерживаемых устройств порожних на Google playstore

Итак, чтобы решить эту проблему, я принял подход, начиная новый проект и понемногу пытаются довести его до окончательного проекта. Следующий фрагмент кода, как представляется, по крайней мере, частично ответственны

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

    <uses-feature android:name="android.hardware.camera"/> 
    <uses-feature android:name="android.hardware.camera2.autofocus"/> 

, прежде чем я добавил, что фрагмент кода, список был 9202 устройств, после того, как я добавить фрагмент список упал до .

ORIGINAL ВОПРОС

Я опубликовал много приложений в прошлом, используя затмение. Это первый раз, когда я публикую приложение, которое разрабатывается с помощью студии Android. Поскольку мое приложение не отображается в мобильном магазине воспроизведения (то есть через андроид) и говорит This app is incompatible with all of your devices. в интернет-магазине, я начал расследование, чтобы узнать, почему. К моему большому suprize я нахожу это как мой Supported devices list

enter image description here

Это безумие, как я никогда не приходилось этого раньше. Любые идеи, что я могу делать неправильно? У меня нет проблем с загрузкой моего apk-приложения для моего устройства с помощью инструмента adb. И мой Gradle действительно говорит

defaultConfig { 

  applicationId "com.company.android"
  
    minSdkVersion 14 

  targetSdkVersion 23
  
    versionCode 6 

  versionName "0.0.06" 

  multiDexEnabled true 

 } 

после долгого устранения неполадок, я теперь даже добавил к моему манифесту

<uses-sdk 
     android:minSdkVersion="14" 
     android:targetSdkVersion="23"/> 

Вот мой полный Gradle файл:

buildscript { 
    repositories { 
     maven { url 'https://maven.fabric.io/public' } 
    } 

    dependencies { 
     classpath 'io.fabric.tools:gradle:1.+' 
    } 
} 
apply plugin: 'com.android.application' 
apply plugin: 'io.fabric' 
apply plugin: 'com.google.gms.google-services' 

repositories { 
    maven { url 'https://maven.fabric.io/public' } 
} 


android { 
    compileSdkVersion 23 
    buildToolsVersion "23.0.1" 

    defaultConfig { 
     applicationId "com.mycompany.android" 
     minSdkVersion 14 
     targetSdkVersion 23 
     versionCode 6 
     versionName "0.0.06" 
     multiDexEnabled true 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 
      zipAlignEnabled true 
     } 
    } 
    dexOptions { 
     incremental true 
     javaMaxHeapSize "4g" 
     preDexLibraries = false 
    } 

} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    compile project(path: ':cloud', configuration: 'android-endpoints') 
    compile('com.twitter.sdk.android:twitter:[email protected]') { 
     transitive = true; 
    } 
    compile 'com.android.support:multidex:1.0.0' 
    compile 'com.android.support:design:23.0.1' 
    compile 'com.android.support:recyclerview-v7:23.0.1' 
    compile 'com.android.support:cardview-v7:23.0.1' 
    compile 'com.google.android.gms:play-services-analytics:8.1.0' 
    compile 'com.squareup.okhttp:okhttp:2.5.0' 
    compile 'com.squareup.picasso:picasso:2.5.2' 
    compile 'com.path:android-priority-jobqueue:1.1.2' 
    compile 'com.google.android.gms:play-services-gcm:8.1.0' 
    compile 'com.google.android.gms:play-services-appindexing:8.1.0' 
    compile 'com.google.android.gms:play-services-location:8.1.0' 
    compile 'com.google.android.gms:play-services-ads:8.1.0' 
    compile('com.crashlytics.sdk.android:crashlytics:[email protected]') { 
     transitive = true; 
    } 
} 

И я уже проверил, что apk активирован.

Manifest:

<?xml version="1.0" encoding="utf-8"?> 
<manifest 
    package="com.company.android" 
    xmlns:android="http://schemas.android.com/apk/res/android"> 

    <supports-screens 
     android:anyDensity="true" 
     android:largeScreens="true" 
     android:normalScreens="true" 
     android:smallScreens="true"/> 

    <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"/> 
    <uses-permission android:name="android.permission.INTERNET"/> 
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 
    <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS"/> 
    <!-- for notifications --> 
    <uses-permission android:name="android.permission.WAKE_LOCK"/> 
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/> 
    <uses-permission android:name="com.company.android.permission.C2D_MESSAGE"/> 
    <!-- Additional permission for camera --> 
    <uses-permission android:name="android.permission.CAMERA"/> 
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 
    <uses-permission android:name="android.permission.RECORD_AUDIO"/> 
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> 

    <uses-feature android:name="android.hardware.camera"/> 
    <uses-feature android:name="android.hardware.camera2.autofocus"/> 

    <application 
     android:name=".Application" 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:theme="@style/AppTheme"> 

     <!-- ACTIVITIES --> 
     <activity 
      android:name=".MainActivity" 
      android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|uiMode|screenSize|smallestScreenSize" 
      android:label="@string/app_name" 
      android:launchMode="singleTop" 
      android:windowSoftInputMode="adjustPan"> 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN"/> 

       <category android:name="android.intent.category.LAUNCHER"/> 
      </intent-filter> 
      <intent-filter> 
       <action android:name="android.intent.action.SEARCH"/> 
      </intent-filter> 
      <!-- deep linking for search engine --> 
      <intent-filter android:label="@string/app_name"> 
       <action android:name="android.intent.action.VIEW"/> 

       <category android:name="android.intent.category.DEFAULT"/> 
       <category android:name="android.intent.category.BROWSABLE"/> 
       <!-- Accepts URIs that begin with "http://www.company.com” --> 
       <data 
        android:host="www.company.com" 
        android:scheme="http"/> 
      </intent-filter> 

      <intent-filter android:label="@string/app_name"> 
       <action android:name="android.intent.action.VIEW"/> 

       <category android:name="android.intent.category.DEFAULT"/> 
       <category android:name="android.intent.category.BROWSABLE"/> 
       <!-- Accepts URIs that begin with "http://www.company.com/” --> 
       <data 
        android:host="www.company.com" 
        android:pathPrefix="/" 
        android:scheme="http"/> 
      </intent-filter> 

      <intent-filter android:label="@string/app_name"> 
       <action android:name="android.intent.action.VIEW"/> 

       <category android:name="android.intent.category.DEFAULT"/> 
       <category android:name="android.intent.category.BROWSABLE"/> 
       <!-- Accepts URIs that begin with "https://www.company.com” --> 
       <data 
        android:host="www.company.com" 
        android:scheme="https"/> 
      </intent-filter> 

      <intent-filter android:label="@string/app_name"> 
       <action android:name="android.intent.action.VIEW"/> 

       <category android:name="android.intent.category.DEFAULT"/> 
       <category android:name="android.intent.category.BROWSABLE"/> 
       <!-- Accepts URIs that begin with "http://www.company.com/” --> 
       <data 
        android:host="www.company.com" 
        android:pathPrefix="/" 
        android:scheme="https"/> 
      </intent-filter> 

      <meta-data 
       android:name="android.app.searchable" 
       android:resource="@xml/searchable"/> 
     </activity> 
     <activity 
      android:name=".CameraActivity" 
      android:configChanges="orientation|screenSize" 
      android:label="@string/title_activity_camera"/> 
     <activity 
      android:name=".SettingsActivity" 
      android:label="@string/title_activity_settings"/> 

     <activity 
      android:name=".DogsWebPageActivity" 
      android:label="@string/title_activity_Dogs_web_page" 
      android:theme="@style/AppTheme"> 
      <!--<meta-data--> 
      <!--android:name="android.support.PARENT_ACTIVITY"--> 
      <!--android:value=".MainActivity"/>--> 
     </activity> 
     <!-- RECEIVERS --> 
     <!-- for cloud messages --> 
     <receiver 
      android:name="com.google.android.gms.gcm.GcmReceiver" 
      android:exported="true" 
      android:permission="com.google.android.c2dm.permission.SEND"> 
      <intent-filter> 
       <action android:name="com.google.android.c2dm.intent.RECEIVE"/> 
       <category android:name="com.company.android"/> 
      </intent-filter> 
      <intent-filter> 
       <action android:name="com.google.android.c2dm.intent.REGISTRATION"/> 

       <category android:name="com.company.android"/> 
      </intent-filter> 
     </receiver> 

     <!-- fragments for their adapters --> 


     <!-- SERVICES --> 
     <!-- for cloud messages --> 
     <service 
      android:name="com.company.android.data.service.companyGcmListenerService" 
      android:exported="false"> 
      <intent-filter> 
       <action android:name="com.google.android.c2dm.intent.RECEIVE"/> 
      </intent-filter> 
     </service> 
     <service 
      android:name=".data.service.companyInstanceIDListenerService" 
      android:exported="false"> 
      <intent-filter> 
       <action android:name="com.google.android.gms.iid.InstanceID"/> 
      </intent-filter> 
     </service> 
     <service 
      android:name=".data.service.RegistrationIntentService" 
      android:exported="false"> 
     </service> 

     <!-- The DuckSyncAdapter service --> 
     <service 
      android:name=".data.contentprovider.sync.DuckSyncService" 
      android:exported="true"> 
      <intent-filter> 
       <action android:name="android.content.SyncAdapter"/> 
      </intent-filter> 

      <meta-data 
       android:name="android.content.SyncAdapter" 
       android:resource="@xml/syncadapter"/> 
     </service> 

     <!-- syncadapter's dummy authenticator service --> 
     <service android:name=".data.contentprovider.sync.DuckAuthenticatorService"> 
      <intent-filter> 
       <action android:name="android.accounts.AccountAuthenticator"/> 
      </intent-filter> 

      <meta-data 
       android:name="android.accounts.AccountAuthenticator" 
       android:resource="@xml/authenticator"/> 
     </service> 

     <!-- for adapters: data cache/providers --> 
     <service 
      android:name=".data.service.DogsService" 
      android:exported="false"/> 
     <service 
      android:name=".data.service.RemoteDataService" 
      android:exported="false"/> 
     <service 
      android:name=".data.service.VideoSearchService" 
      android:exported="false"/> 
     <!-- PROVIDERS --> 
     <!-- Duck tab content provider --> 
     <provider 
      android:name=".data.contentprovider.VideoProvider" 
      android:authorities="@string/content_authority" 
      android:exported="false" 
      android:syncable="true"/> 
     <provider 
      android:name=".data.contentprovider.companySearchRecentSuggestionsProvider" 
      android:authorities="com.company.android.data.contentprovider.companySearchRecentSuggestionsProvider"/> 

     <meta-data 
      android:name="com.google.android.gms.version" 
      android:value="@integer/google_play_services_version"/> 
     <meta-data 
      android:name="io.fabric.ApiKey" 
      android:value="somestring"/> 

    </application> 

</manifest> 
+0

Можете ли вы разместить файл манифеста? – danieljohngomez

+0

Читайте это: http://stackoverflow.com/a/27828666/4350275 –

ответ

1

Там нет android.hardware.camera2.autofocus, по крайней мере, не перечисленных в the docs for <uses-feature>. Там -android.hardware.camera.autofocus (без 2). Если вы не видели своего зарегистрированного <uses-feature>, попробуйте переключиться на него без 2 и посмотреть, есть ли у вас больше удачи.

+0

Мой друг, у меня нет денег, чтобы дать вам - я бы хотел, чтобы я сделал, - поэтому я буду молиться за вас, чтобы Бог спас вас от вашего темный час. Вам не нужно верить в Бога: я верю. Я потратил дни боли и лишений на эту ошибку. Дни ХАРДЖИ. – learner