安卓设备与三星Galaxy S3发布后的兼容性
问题描述:
我在应用程序上发布Play商店(Beta测试版)后遇到问题。
我测试了app-debug
和app-release
apks在多个AVD甚至在我的S3手机上,一切正常。然后我加载app-release.apk
文件进行Beta版测试,我的S3手机与该应用程序不兼容。
你有什么建议吗?我添加了几个布局和值文件,但没有结果。这里是我的清单文件和项目安卓设备与三星Galaxy S3发布后的兼容性
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.xxxxx">
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity1"
android:label="@string/app_name"
android:launchMode="singleTask"
android:logo="@mipmap/ic_launcher"
android:theme="@style/AppTheme.NoActionBar">
</activity>
我也试过这样的捕获,但我得到了相同的结果
<supports-screens android:resizeable="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true" />
你可以在这里找到项目结构:
这里是build.gradle的内容
compileSdkVersion 23
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com."
minSdkVersion 9
targetSdkVersion 23
versionCode 9
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.config
}
debug {
signingConfig signingConfigs.config
}
} }
答
“一个人不能购买自己在谷歌应用程序上与他developper帐户相关联的所有他适当的设备(设备上播放。”
这是对政策
您可以包括试图安装时的logcat/packagemanager错误APK? – FishStix
您是否也可以将您的build.gradle文件的内容添加到您的问题中? – petey
@petey添加了build.gradle的内容 – Leonald