我的部分客户在下载后无法打开应用。这是我最后一位明星客户评论:
'只能使用打开/卸载按钮在Play商店中播放。当选择在手机应用程序手机上说应用程序未安装。 。在卸载'
由于这个原因,我获得了很多1星级的评分,这让我很伤心。我也得到了一些5星评级,所以显然这个问题只会影响一些用户。它可以在我的手机上正常使用,但不会在朋友面前打开,除非她从商店打开它。我最近可能已将targetSdkVersion从16升级到19。
这是我的清单,为隐私进行了轻微编辑,我已阅读其他帖子的开放问题是由错误的清单设置引起的,但没有与我的清单设置相关的建议:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mypackage"
android:sharedUserId="com.myshareduserid"
android:versionCode="300"
android:versionName="3" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="19" />
<supports-screens android:largeScreens="true"/>
<supports-screens android:xlargeScreens="true"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_USB" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
android:largeHeap="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:debuggable="false" android:permission="android.permission.WRITE_EXTERNAL_STORAGE">
<activity
android:name=".MyActivity"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|
uiMode|screenSize|smallestScreenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|
uiMode|screenSize|smallestScreenSize"/>
</application>
答案 0 :(得分:0)
这只是客户端启动器应用中的一个错误。 你无法做到这一点。
它可能是一个制作糟糕的自定义启动器,或者是一个错误,但它不在你的手中。
如果该用户有权访问自定义恢复,他可以擦除dalvik和缓存,在这种情况下它总是适用于我。