Android 发布后设备与 Samsung galaxy S3 的兼容性
Android device compatibility with Samsung galaxy S3 after publishing
我在 Play 商店(Beta 测试)上发布应用程序后遇到问题。
我已经在多个 AVD 上测试了 app-debug
和 app-release
apk,甚至在我的 S3 移动设备上,一切正常。然后我加载 app-release.apk
文件进行 Beta 测试,我的 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
}
} }
"One cannot purchase his own app on Google Play on all his proper devices (devices associated with his developper account."
这违反政策
我在 Play 商店(Beta 测试)上发布应用程序后遇到问题。
我已经在多个 AVD 上测试了 app-debug
和 app-release
apk,甚至在我的 S3 移动设备上,一切正常。然后我加载 app-release.apk
文件进行 Beta 测试,我的 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
}
} }
"One cannot purchase his own app on Google Play on all his proper devices (devices associated with his developper account."
这违反政策