我尝试将我的Android应用程序从eclipse转换为android studio项目,应用程序正在测试模拟器和我的真实设备,但在尝试退出应用程序时我无法找到它。发布到商店后我得到了相同的问题+应用程序永远不会打开..安装后我只是在谷歌游戏商店卸载..请帮助:)
这是商店的应用网址: https://play.google.com/store/apps/details?id=com.linkedtalents.app&hl=en
这是我的 manifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.linkedtalents.app"
android:versionCode="10"
android:versionName="1.1" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/launch123"
android:label="@string/app_name"
android:largeHeap="true" >
<activity
android:name="com.linkedtalents.app.Splash"
android:theme="@style/AppBaseTheme"
android:screenOrientation="portrait"
android:configChanges="locale"
>
答案 0 :(得分:1)
您似乎缺少了意图过滤器。至少你没有发布它。你能看看你有这样的MAIN LAUNCHER吗?如果你想从主屏幕启动,你只需要一个与之匹配的活动。
<activity
android:name="..."
android:label="@string/app_name"
android:theme="@style/AppTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>