2016-06-20 156 views
6

我在Android應用上遇到問題... 它在我的設備上運行完美,但在開發者控制檯上支持爲0。0在Google Play開發者控制檯的支持設備

這將是我的AndroidManifest.xml。 我檢查了它沒有錯誤。

我不知道在哪裏看。

有人可以幫助我。

<?xml version="1.0" encoding="utf-8"?> 

<uses-permission android:name="android.permission.WAKE_LOCK" /> 
<uses-permission android:name="xxx.permission.C2D_MESSAGE" /> 
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 
<uses-permission android:name="android.permission.INTERNET" /> 
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> 

<permission 
    android:name="xxx.permission.C2D_MESSAGE" 
    android:protectionLevel="signature" /> 

<uses-feature 
    android:name="android.hardware.camera" 
    android:required="false" /> 

<application 
    android:allowBackup="true" 
    android:icon="@mipmap/ic_launcher" 
    android:label="@string/app_name" 
    android:supportsRtl="true" 
    android:theme="@style/AppTheme"> 
    <activity 
     android:name=".activities.SplashActivity" 
     android:screenOrientation="portrait"> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 
    <activity 
     android:name=".activities.MainActivity" 
     android:label="xxx" 
     android:screenOrientation="portrait"> 
    </activity> 

    <activity 
     android:name=".activities.ProfileCropImageActivity" 
     android:screenOrientation="portrait" /> 

    <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="xxx.gcm" /> 
     </intent-filter> 
    </receiver> 

    <service 
     android:name="xxx.services.MyGcmListenerService" 
     android:exported="false"> 
     <intent-filter> 
      <action android:name="com.google.android.c2dm.intent.RECEIVE" /> 
     </intent-filter> 
    </service> 
    <service 
     android:name="xxx.services.MyInstanceIDListenerService" 
     android:exported="false"> 
     <intent-filter> 
      <action android:name="com.google.android.gms.iid.InstanceID" /> 
     </intent-filter> 
    </service> 
    <service 
     android:name="xxx.services.RegistrationIntentService" 
     android:exported="false"> 
    </service> 
</application> 

以下是build.gradle部分:

defaultConfig { 
    applicationId "xxx" 
    minSdkVersion 15 
    targetSdkVersion 23 
    versionCode 1 
    versionName "1.0.0" 
} 
+0

你的目標SDK是什麼? –

+0

請添加build.gradle – USKMobility

+0

目標SDK將23我猜。 – Ima

回答

2

看一看thisthis,我認爲它可以幫助您解決問題。 但總而言之,它可能是由您的使用權限或使用功能中的錯誤命名引起的。它也可能是由您使用過的第三方庫引起的。希望這可以幫助!

+0

感謝您的鏈接!我刪除了「編譯」org.apache.directory.studio:org.apache.commons.codec:1.8'「這一行,它工作! – Ima

+0

不錯!很高興幫助! –

相關問題