1
Playストアで公開した後にアプリケーションに問題が発生しました(ベータテスト)。
複数のAVDでapp-debug
とapp-release
のAPKをテストしましたが、S3モバイルでもすべて正常に動作しました。その後、私はapp-release.apk
ファイルをベータテスト用に読み込み、私のS3モバイルはもはやそのアプリケーションと互換性がありません。
ご意見はありますか?いくつかのレイアウトと値ファイルを追加しましたが、結果はありません。ここに私のマニフェストファイルとプロジェクトのキャプチャ公開後のAndroidデバイスとSamsung 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
}
} }
をインストールしようとしてlogcat/packagemanagerエラーを含むことができ、ポリシーに反していますAPK? – FishStix
build.gradleファイルの内容を質問に追加することはできますか? – petey
@petey build.gradle – Leonald