I've just published an app on Android Market, but it doesn't appear on the phones I've tested (HTC Hero, Samsung Galaxy S2 and Samsung Galaxy Note). According to the Android Market Publisher Website, the app is available for all the phones I mentioned. The app is even published in https://market.android.com/details?id=br.com.torres.faleoquequiser, but I'm unable to install it on any of the devices I've tried (neither from the Android Market app, nor from the Android Market website).
Here is my AndroidManifest.xml:
- Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:debuggable="false"
package="br.com.torres.faleoquequiser"
android:versionCode="2"
android:versionName="0.0.1" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="11" />
<uses-feature
android:name="android.hardware.telephony"
android:required="false" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:configChanges="orientation"
android:label="@string/app_name"
android:name=".FaleOQueQuiserActivity"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Wallpaper" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:configChanges="orientation"
android:label="@string/app_name"
android:name=".PreferencesActivity"
android:screenOrientation="portrait" >
</activity>
<activity
android:configChanges="orientation"
android:label="@string/app_name"
android:name=".HelpActivity"
android:screenOrientation="portrait" >
</activity>
<activity
android:configChanges="orientation"
android:label="@string/app_name"
android:name=".AboutActivity"
android:screenOrientation="portrait" >
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.SEND_SMS" />
</manifest>
Here are the details of one of the phones I tested:
- Model: Samsung Galaxy S2 (GT-I9100)
- Android Version: 2.3.6
- Country: Brazil
- Phone Carrier: Oi
In the Android Market publisher website, I've chosen the following options:
- Disable publicity: No
- Copy Protection: Off
- Content Level: Low maturity level
- Price: Free
- Coutries: All countries
- Application complies with content policies: Yes
- I agree that my app is subject to USA export laws: Yes
Any idea what's wrong?
Thanks a lot,
Tiago

