开发 Android 2.3.3 应用程序,在模拟器中工作,APK 声称它已安装在手机上,没有安装任何东西
这是一个简单的应用程序,它在 Eclipse Android 应用程序中运行良好。当我导出未签名的 .apk 文件时,它声称该应用程序已“成功安装”。我无法在任何列表(如 google play 或“AppInstaller”)中看到该应用程序正在安装。
这是我的清单代码:
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" android:debuggable="true"
android:theme="@android:style/Theme.Light">
<activity
android:name=".IS303AndroidSPLSActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".TabSubmenyTest"
android:label="@string/app_name" >
</activity>
</application>
</manifest>