这是我在 Google play 上的第一个版本,所以请多多包涵,这可能是一个非常简单的问题。几周前我发布了我的应用程序的一个版本,对我的测试人员来说没有问题。
现在在新版本上,他收到一条消息,说他的手机与应用程序版本不兼容,所以他不能再测试了。我不认为我对我的应用程序进行了重大更改,只是进行了一些 UI 改进并将 minSdk 从 28 降低到 26(我试图将其放回 28,但它没有解决任何问题)。
谷歌控制台说我的应用程序不支持框架版本(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>