これは Google Play での私の最初のリリースです。ご容赦ください。非常に単純な質問かもしれません。数週間前にアプリのバージョンをリリースしましたが、テスターに問題はありませんでした。
現在、新しいバージョンでは、彼の携帯電話がアプリのバージョンと互換性がないというメッセージが表示されるため、これ以上テストすることはできません。アプリに大きな変更を加えたとは思いません。UI を少し改善し、minSdk を 28 から 26 に下げました (28 に戻そうとしましたが、何も修正されませんでした)。
Googleコンソールは、私のアプリはフレームワークバージョン(2,616デバイス!)28以降をサポートしていないと言っていますが、「minSdkVersion 26」で何をすべきかをしました。
どんな助けでも本当に感謝します!
私のアプリの詳細は次のとおりです。
グラドル
plugins {
id 'com.android.application'
id 'com.google.secrets_gradle_plugin' version '0.5'
}
android {
compileSdkVersion 30
defaultConfig {
applicationId "xyzthis.myapp.this"
minSdkVersion 26
targetSdkVersion 30
versionCode 8
versionName "1.7"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.navigation:navigation-fragment:2.0.0-rc02'
implementation 'androidx.navigation:navigation-ui:2.0.0-rc02'
implementation 'androidx.lifecycle:lifecycle-livedata:2.0.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.0.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'com.google.android.material:material:1.4.0-alpha01'
implementation 'com.google.android.play:core:1.10.0'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.google.android.gms:play-services-location:18.0.0'
implementation 'com.google.android.gms:play-services-maps:16.1.0'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
}
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.android.application'
そして、ここに私のマニフェストがあります:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="xyzthis.myapp">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION"
tools:remove="android:maxSdkVersion" />
<compatible-screens>
<!-- all small size screens -->
<screen android:screenSize="small" android:screenDensity="ldpi" />
<screen android:screenSize="small" android:screenDensity="mdpi" />
<screen android:screenSize="small" android:screenDensity="hdpi" />
<screen android:screenSize="small" android:screenDensity="xhdpi" />
<screen android:screenSize="small" android:screenDensity="xxhdpi" />
<screen android:screenSize="small" android:screenDensity="xxxhdpi" />
<!-- all normal size screens -->
<screen android:screenSize="normal" android:screenDensity="ldpi" />
<screen android:screenSize="normal" android:screenDensity="mdpi" />
<screen android:screenSize="normal" android:screenDensity="hdpi" />
<screen android:screenSize="normal" android:screenDensity="xhdpi" />
<screen android:screenSize="normal" android:screenDensity="xxhdpi" />
<screen android:screenSize="normal" android:screenDensity="xxxhdpi" />
</compatible-screens>
<application
android:name="xyzthis.myapp.ui.App"
android:allowBackup="true"
android:icon="@mipmap/logo_square"
android:label="@string/app_name"
android:roundIcon="@mipmap/logo_rounded"
android:supportsRtl="true"
android:theme="@style/Theme.MyTheme”
android:usesCleartextTraffic="true">
<receiver
android:name="xyzthis.myapp.ui.xlocation.MyBroadCastReceiver"
android:allowBackup="true"
android:directBootAware="true"
android:enabled="true"
android:exported="false">
</receiver>
<receiver android:name="xyzthis.myapp.ui.xlocation.AutoStartGeo"
android:enabled="true"
android:exported="false">
<intent-filter>
<category android:name="android.intent.category.DEFAULT"/>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<service
android:name="xyzthis.myapp.ui.xlocation.LocationService"
android:enabled="true"
android:exported="false" />
<service
android:name="xyzthis.myapp.ui.xlocation.OnStartService"
android:enabled="true"
android:exported="false" />
<activity
android:name="xyzthis.myapp.MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/Theme.MyTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="${MAPS_API_KEY}" />
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>
</manifest>