如何在我的android应用中添加对android 4.4的支持

时间:2019-07-19 14:00:04

标签: java android

我正在开发一个应用程序,我还需要在旧版本的android(例如android 4.4)中运行。我进行了很多搜索,但仍然感到困惑,我尝试了诸如多义化的操作,但没有成功。 我的模块文件如下所示:

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "al.sqmo"
        minSdkVersion 22
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility = '1.8'
        targetCompatibility = '1.8'
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.android.support:recyclerview-v7:28.0.0'
    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.squareup.retrofit2:retrofit:2.1.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
    implementation 'com.google.code.gson:gson:2.6.1'
    implementation 'com.android.support:recyclerview-v7:28.0.0'
    implementation fileTree(dir: 'libs', include: ['*.jar'])
}

感谢您的帮助!

3 个答案:

答案 0 :(得分:2)

按如下所示在gradle中设置此版本

minSdkVersion 19

这将使您可以在kitkat中运行应用程序。

让我知道更多的惊喜

答案 1 :(得分:1)

要支持Android 4.4,您必须将minSdkVersion设置为19。请参见platform release notes

答案 2 :(得分:1)

这样做很简单:

Check this link out

只需将您的minimumsdk更改为19。