2016-06-20 32 views
6

मुझे Android ऐप्स पर कोई समस्या है ... यह मेरे डिवाइस पर सही है, लेकिन डेवलपर कंसोल पर समर्थन 0 होगा।0 Play Play 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

आपका लक्ष्य एसडीके क्या है? –

+0

कृपया build.gradle – USKMobility

+0

लक्ष्य एसडीके 23 मुझे लगता है। – Ima

उत्तर

2

this और this पर एक नज़र डालें, मुझे लगता है कि आप अपनी समस्या को हल कर सकते हैं। लेकिन संक्षेप में, यह आपके उपयोग की अनुमति या उपयोग सुविधा में गलत नामकरण के कारण हो सकता है। यह आपके द्वारा उपयोग की जाने वाली किसी तृतीय पक्ष लाइब्रेरी के कारण भी हो सकता है। उम्मीद है की यह मदद करेगा!

+0

लिंक के लिए धन्यवाद! मैंने "compile 'org.apache.directory.studio:org.apache.commons.codec:1.8'" पंक्ति को हटा दिया और यह काम किया! – Ima

+0

अच्छा! खुशी हुई यह मदद की! –

संबंधित मुद्दे