【发布时间】:2012-03-26 09:28:42
【问题描述】:
我刚刚在 android 市场上发布了一个应用程序。当我尝试从三星 Galaxy S II 和一些 micromax 设备的市场下载我的应用程序时,我找不到该应用程序。当我尝试从网络市场安装时,它显示“此项目与您的设备不兼容”。我的应用程序不需要任何使用许可。请帮帮我。
这里是 manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sample"
android:installLocation="auto"
android:versionCode="1"
android:versionName="2.0" >
<application
android:debuggable="false"
android:icon="@drawable/rti_logo"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >
<activity
android:name=".Activity1"
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=".Activity2"
android:label="@string/app_name"
android:screenOrientation="portrait" >
</activity>
</application>
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="4" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true" >
</supports-screens>
</manifest>
【问题讨论】:
-
移除 android:targetSdkVersion="4" developer.android.com/guide/topics/manifest/…
-
@Padma Kumar 也许您可以将其添加为答案
-
@Richie hay 谢谢 Richie Rich:-)
标签: android google-play