我最近刚刚启动了我的应用程序,一切进展顺利!我遇到了一些用户的问题。使用Nexus 5X,Huawei P10 Lite和魅族M2 Note等较旧设备的用户表示,他们无法在Google Play上下载该应用程序,因为该应用程序与他们的设备不兼容。我已经检查过开发者控制台,它说该应用程序应该支持这些设备(除了魅族,它甚至没有出现在目录中)。我还已经运行了模仿设备的仿真器,并且一切正常。他们所有人都在运行Android 8.0,我确定可以支持我的应用。
我一直在Google各处寻找解决此问题的方法,但老实说,我不知道该怎么办。这是我第一个真正的应用程序,我不禁感到自己缺少广泛发布的关键步骤。
这是我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.balanstudios.einar.workouttimer">
<uses-permission android:name="android.permission.VIBRATE" />
<uses-feature android:name="android.hardware.vibrate" android:required="false"></uses-feature>
<application
android:name=".BaseApp"
android:allowBackup="true"
android:icon="@mipmap/ic_work_icon_small"
android:label="Robota"
android:roundIcon="@mipmap/ic_work_icon_small_round"
android:supportsRtl="true"
android:theme="@style/WorkoutTimerLight">
<activity
android:name=".MainActivity"
android:screenOrientation="portrait"
android:theme="@style/WorkoutTimerLight"
android:windowSoftInputMode="adjustPan">
</activity>
<meta-data
android:name="preloaded_fonts"
android:resource="@array/preloaded_fonts" />
<activity android:name=".SplashScreen"
android:screenOrientation="portrait"
android:theme="@style/WorkoutTimerLight"
android:windowSoftInputMode="adjustPan">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER"></category>
</intent-filter>
</activity>
</application>
</manifest>
这是我的礼物:
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.balanstudios.einar.workouttimer"
minSdkVersion 23
targetSdkVersion 28
versionCode 7
versionName "1.0.2"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
sourceSets { main { assets.srcDirs = ['src/main/assets', 'src/main/assets/'] } }
lintOptions {
abortOnError false
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
implementation 'com.android.support:support-media-compat:28.0.0-alpha3'
implementation 'com.android.support:design:28.0.0-alpha3'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.android.support:support-v4:28.0.0-alpha3'
implementation 'com.google.code.gson:gson:2.8.2'
implementation 'com.anjlab.android.iab.v3:library:1.0.44'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
有人有什么想法吗?我真的很感谢您的帮助!
答案 0 :(得分:0)
您的应用具有min Sdk = 23
(此标线)
minSdkVersion 23
投诉可能来自使用旧版Android的用户。