Hi friends, I am launching my first android app in the google play store. 
It shows that the number of supported devices as "0". I have surfed a lot 
and tried many solutions provided but in vain. The following is my content 
of my manifest my. 

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
    package="com.rbparekh.securityservices"
    android:versionCode="2"
    android:versionName="1.0" >
  
    <uses-sdk
        android:minSdkVersion="9"
        android:targetSdkVersion="23" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" 
/>
      <uses-permission android:name="android.permission.INTERNET"/> 
    
    <application
        android:name=".app.AppController"
        android:allowBackup="true"
        android:icon="@drawable/logo"
        android:label="@string/app_name"
       
         >
        <activity
            android:name="com.rbparekh.securityservices.SplashActivity"
            android:label="@string/app_name"
             >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.rbparekh.securityservices.MainActivity"
            android:label="@string/app_name"
              >
        </activity>
        <activity
            android:name="com.rbparekh.securityservices.SelectionActivity"
            android:label="@string/title_activity_selection" 
             >
        </activity>
        <activity
            android:name="com.rbparekh.securityservices.ListChargesActivity"
            android:label="@string/title_activity_installation_list" 
            >
        </activity>
        
        <activity
            android:name="com.rbparekh.securityservices.EnquiryActivity"
            android:label="@string/title_activity_enquiry"
             >
        </activity>
        <activity
            android:name="com.rbparekh.securityservices.CategoryActivity"
            android:label="@string/title_activity_category"
             >
        </activity>
        <activity
            android:name="com.rbparekh.securityservices.AddressActivity"
            android:label="@string/title_activity_address"
           >
        </activity>
        <activity
            
android:name="com.rbparekh.securityservices.CategoryBrandActivity"
            android:label="@string/title_activity_category_brand"
            >
        </activity>
        <activity
            android:name="com.rbparekh.securityservices.PaymentListActivity"
            android:label="@string/title_activity_payment_list" 
           >
        </activity>
        <activity
            android:name="com.rbparekh.securityservices.ThanksActivity"
            android:label="@string/title_activity_thanks" 
             >
        </activity>
        
    </application>

</manifest>

Please help me to launch the application....

-- 
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/f3f7224b-7883-44cc-9a25-42f50352376a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to