Hello,

I am launching my first android app in the google play store. If i browse 
to the app in the store, the store will show that none of my devices is 
supported. In the developper console under apk is every device in the 
supported list and none in the unsupported list.


could someone help me please?

my manifest:


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
    package="com.cbach.srctrainer.windows"
    android:versionCode="2"
    android:versionName="1.01" >
    <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/>    <!-- 
Devices >= 3 have version of Google Play that supports licensing. -->
    <uses-permission android:name="com.android.vending.CHECK_LICENSE" />    
<!-- Required permission to check licensing. -->

    <!-- Min/target SDK versions (<uses-sdk>) managed by build.gradle -->
    <application
        android:allowBackup="true"
        android:icon="@drawable/src"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.cbach.srctrainer.windows.MainActivity"
            android:label="@string/app_name"
            
android:parentActivityName="com.cbach.srctrainer.windows.Main2Activity" >
        </activity>
        <activity
            android:name="com.cbach.srctrainer.windows.Main2Activity"
            android:label="@string/title_activity_main2" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.cbach.srctrainer.windows.Auswertung"
            android:label="@string/title_activity_auswertung"
            
android:parentActivityName="com.cbach.srctrainer.windows.Main2Activity" >
        </activity>
        <activity
            android:name="com.cbach.srctrainer.windows.FragenAuswahl"
            android:label="@string/title_activity_fragen_auswahl"
            
android:parentActivityName="com.cbach.srctrainer.windows.Main2Activity" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.cbach.srctrainer.windows.Main2Activity" />
        </activity>
        <activity
            android:name="com.cbach.srctrainer.windows.Extras"
            android:label="@string/title_activity_extras"
            
android:parentActivityName="com.cbach.srctrainer.windows.Main2Activity" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.cbach.srctrainer.windows.Main2Activity" />
        </activity>
        <activity
            android:name="com.cbach.srctrainer.windows.Extras_tabs"
            android:label="@string/title_activity_extras_tabs"
            android:parentActivityName="com.cbach.srctrainer.windows.Extras" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.cbach.srctrainer.windows.Extras" />
        </activity>
        <activity
            android:name="com.cbach.srctrainer.windows.buchstabiertafel"
            android:label="@string/title_activity_buchstabiertafel"
            android:parentActivityName="com.cbach.srctrainer.windows.Extras" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.cbach.srctrainer.windows.Extras" />
        </activity>
    </application>

</manifest>


-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/0e9bded8-2369-4778-8474-51fcd4938316%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to