1
Play 스토어 (베타 테스트)에 게시 한 후 신청서에 문제가 있습니다.
app-debug
과 app-release
apk를 여러 AVD에서 테스트했으며 S3 모바일에서도 모든 것이 정상적으로 작동했습니다. 그런 다음 베타 테스트를 위해 app-release.apk
파일을로드하고 내 S3 모바일이 앱과 더 이상 호환되지 않습니다.
의견이 있으십니까? 몇 가지 레이아웃과 값 파일을 추가했지만 결과는 없습니다. 여기 내 매니페스트 파일과 나는 또한이 시도게시 후 삼성 전자 갤럭시 S3와 호환되는 Android 기기
<?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
}
} }
당신이를 설치하려고 로그 캣/패키지 매니저 오류를 포함 할 수 있습니다 정책에 위배됩니다 APK? – FishStix
build.gradle 파일의 내용을 질문에 추가 할 수 있습니까? – petey
@petey build.gradle – Leonald