ниже используются вещи в приложении
minSdkVersion 19, targetSdkVersion 29
Версия ниже 8.0.0: не отображается в магазине воспроизведения; Версия 8.0.0: Только эта версия телефона может быть видна в магазине игр; Версия выше 8.0.0: не отображается в магазине игр;
Я перешел на AndroidX
После отклонения приложения (из-за отправки приложения SMS и разрешения на вызов) я удалил эти параметры и снова перегрузил мое приложение в игровой магазин
Теперь приложение в прямом эфире, но, когда я ищу приложение (Lifeonplus), не отображается, кроме версии 8.0.0 телефона. Пожалуйста, помогите мне это. где я ошибся? Приложение должно отображать версию выше 4.4
Build Gradle & Class Path
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Модель: Приложение
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.digital.lifeonplus"
minSdkVersion 19
targetSdkVersion 29
versionCode 7
versionName "1.0.6"
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'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.android.volley:volley:1.1.1'
implementation 'com.github.bumptech.glide:glide:4.9.0'
implementation 'com.google.android.gms:play-services-location:16.0.0'
implementation 'com.karumi:dexter:4.2.0'
implementation 'info.androidhive:barcode-reader:1.1.5'
implementation 'com.google.android.gms:play-services-vision:11.4.0'
implementation 'com.budiyev.android:code-scanner:2.1.0'
implementation 'com.github.clans:fab:1.6.4'
implementation 'de.hdodenhof:circleimageview:3.0.0'
implementation 'com.loopj.android:android-async-http:1.4.9'
implementation 'com.squareup.picasso:picasso:2.5.2'
//Apache httpclient-android library
implementation group: 'org.apache.httpcomponents', name: 'httpclient-android', version: '4.3.5.1'
//Excluding httpclient since it is already part of httpclient-android
implementation('org.apache.httpcomponents:httpmime:4.3') {
exclude module: "httpclient"
}
implementation 'com.theartofdev.edmodo:android-image-cropper:2.6.0'
implementation 'androidx.preference:preference:1.1.0'
}