【发布时间】:2015-12-09 08:12:08
【问题描述】:
我已尝试将我的 android 应用程序从 eclipse 转换为 android studio 项目,并且该应用程序正在模拟器和我的真实设备上进行测试,但是在尝试退出应用程序时我找不到它.. 发布到商店后我得到了同样的问题+应用程序永远不会打开..安装后我只在google play store上卸载了..请帮忙:)
这是商店的应用网址: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"
>
【问题讨论】:
-
意思是,它的图标不显示还是什么?
-
是的,它的图标没有显示.. 发布应用后也永远不会打开
-
你能发布整个清单吗?
标签: android android-studio google-play android-manifest