Hello,

I have someone e-mailing me that they can't see my application in the
Market. Is there something specific that I need to put in my manifest?
They're using a Sprint Hero.

Here's my manifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
      package="com.droidfart.app" android:versionCode="14"
android:versionName="1.1.2">
<application android:label="@string/app_name" android:icon="@drawable/
logo">
        <activity android:name=".Main"
                  android:label="@string/app_name"
                  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=".FartBombActivity"
                android:label="@string/app_name"
                android:screenOrientation="portrait"/>

        <activity android:name=".FartBombCountDown"
                android:label="@string/app_name"
                android:screenOrientation="portrait"/>

        <activity android:name=".Shaker"
        android:label="@string/app_name"
        android:screenOrientation="portrait"/>

        <activity android:name=".Settings"
        android:label="@string/app_name"
        android:screenOrientation="portrait"/>

        <activity android:name=".Recorder"
        android:label="@string/app_name"
        android:screenOrientation="portrait"/>

         <receiver android:name=".SMSReceiver"
                        android:enabled="true">
                        <intent-filter>
                                <action
                                        
android:name="android.provider.Telephony.SMS_RECEIVED" />
                        </intent-filter>
        </receiver>
        <receiver android:name=".SMSReceiver" android:label="@string/
app_name">
    <intent-filter>
       <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</receiver>

 <receiver android:name=".OneShotAlarm" android:process=":remote" />
   <service android:name=".FartBomb"/>
 </application>

<uses-sdk android:minSdkVersion="4"></uses-sdk>
<uses-permission android:name="android.permission.RECEIVE_SMS"></uses-
permission>
<uses-permission android:name="android.permission.WAKE_LOCK"></uses-
permission>
<uses-permission android:name="android.permission.VIBRATE"></uses-
permission>
<uses-permission android:name="android.permission.RECORD_AUDIO"></uses-
permission>
</manifest>

Thanks in advance.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to