In which app store the app is not visible ? Model of your phone ? Did you checked whether the app is visble in other mobile models ?
You added <uses-sdk android:minSdkVersion="4" /> two times one with 2 and other with 4. This can be a reason .Don't know exactly . Remove it and chek it out. On Thu, Nov 10, 2011 at 12:44 PM, lakshman <[email protected]>wrote: > HI, > i have developed some applications which are not visible in my mobile > app store. > But the same app is visible from the desktop or pc. > can u tell me why my application is not visible in mobile app store > > Please find my AndroidManifest.xml attached. > > Please let me know the changes to my code so that the android app is > visible to all the mobile models > thanks in advance > > <?xml version="1.0" encoding="utf-8"?> > <manifest xmlns:android="http://schemas.android.com/apk/res/android" > package="com.hyperwebenable.techpanels" > android:versionCode="1" > android:versionName="1.0"> > <uses-sdk android:minSdkVersion="4" /> > > <application android:icon="@drawable/sitelogo" > android:label="@string/app_name"> > <activity android:name=".MessageList" > android:label="@string/app_name" > android:theme="@android:style/Theme.NoTitleBar" > > <intent-filter> > <action android:name="android.intent.action.MAIN" /> > <category > android:name="android.intent.category.LAUNCHER" /> > </intent-filter> > </activity> > <activity android:name=".SecondActivity" > android:theme="@android:style/Theme.NoTitleBar" ></ > activity> > <meta-data android:name="com.mobclix.APPLICATION_ID" > android:value=""/> > <activity > android:name="com.mobclix.android.sdk.MobclixBrowserActivity" > android:theme="@android:style/ > Theme.Translucent.NoTitleBar" /> > > </application> > <uses-sdk android:minSdkVersion="2" /> > <uses-permission android:name="android.permission.INTERNET"/> > <uses-permission > android:name="android.permission.ACCESS_NETWORK_STATE"/> > <uses-permission > android:name="android.permission.READ_PHONE_STATE"></uses-permission> > </manifest> > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

