我已经用 Java 开发了 Simple android 应用程序,并将其上传到play.google.com
. 我上传成功并且发布得很好,我完成了发布和保存应用程序的所有步骤。发布后它显示在应用商店中。问题是当我在我的 android 设备上搜索应用程序时,它会给出“这个项目是与您的设备不兼容”。我不明白为什么会发生这个错误。请任何人告诉我如何制作与所有版本的 android 兼容的 android 应用程序或我的应用程序应该在所有 android 设备上运行的任何其他方法。
这是我的清单文件代码:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="sml.sml.pkg"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".SMLActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>