Форум для тех, кто программирует под Android
Anonymous
Почему уровень поддерживаемых устройств Android такой низкий?
Сообщение
Anonymous » 27 окт 2024, 12:06
Почему у меня так мало поддерживаемых устройств Android? Я попытался настроить таргетинг на минимально возможный APK-файл (13), но мое приложение могут использовать только 12 000 устройств.
Буду очень признателен за любую помощь!
Вот мой build.gradle.
Код: Выделить всё
android {
signingConfigs {
}
compileSdkVersion 23
buildToolsVersion '25.0.0'
defaultConfig {
applicationId "thomas.surfaceviewtest"
minSdkVersion 13
targetSdkVersion 13
versionCode 5
versionName "1.0.5"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
}
}
dexOptions {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.google.android.gms:play-services-ads:9.4.0'
compile 'com.google.firebase:firebase-ads:9.4.0'
}
apply plugin: 'com.google.gms.google-services'
Подробнее здесь:
https://stackoverflow.com/questions/460 ... ces-so-low
1730019960
Anonymous
Почему у меня так мало поддерживаемых устройств Android? Я попытался настроить таргетинг на минимально возможный APK-файл (13), но мое приложение могут использовать только 12 000 устройств. Буду очень признателен за любую помощь! Вот мой build.gradle. [code]android { signingConfigs { } compileSdkVersion 23 buildToolsVersion '25.0.0' defaultConfig { applicationId "thomas.surfaceviewtest" minSdkVersion 13 targetSdkVersion 13 versionCode 5 versionName "1.0.5" multiDexEnabled true } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } debug { } } dexOptions { } } dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') compile 'com.android.support:appcompat-v7:23.4.0' compile 'com.android.support:design:23.4.0' compile 'com.google.android.gms:play-services-ads:9.4.0' compile 'com.google.firebase:firebase-ads:9.4.0' } apply plugin: 'com.google.gms.google-services' [/code] [img]https://i.sstatic.net/TNATi.png[/img] Подробнее здесь: [url]https://stackoverflow.com/questions/46092238/why-are-my-supported-android-devices-so-low[/url]