Я опубликовал свое приложение в Google Play в качестве внутреннего теста.Добавил электронные письма тестировщиков в список тестировщиков и отправил им URL-адрес для загрузки приложения.
Им удалось без проблем загрузить приложение из Google Play.
Я попытался загрузитьприложение с моим OnePlus One, но я получаю сообщение «Это приложение несовместимо с вашим устройством».в Google Play, даже если телефон указан как совместимый в консоли Google Play.
Я подключен к Play Store с использованием учетной записи, которую ядобавлен в список тестеров и отличается от моей учетной записи разработчика.
Как определить причину проблемы совместимости?
Вот мое приложение build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.danilecx.oofmusicplayer"
minSdkVersion 21
targetSdkVersion 28
versionCode 2
versionName "1.0.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
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'
implementation 'com.google.android.gms:play-services-ads:17.1.3'
}
AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.danilecx.oofmusicplayer">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_oof"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_oof_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-xxxxxxxxxxxxxxxx~xxxxxxxxxx"/>
</application>
</manifest>
ОБНОВЛЕНИЕ : установка работает на BlueStacks, но не на Nox или моем телефоне (OnePlus One).