美文网首页Java相关技术
在Android Studio项目工程中设置所使用的JDK版本

在Android Studio项目工程中设置所使用的JDK版本

作者: zenny_chen | 来源:发表于2018-09-16 17:43 被阅读130次

我们只需要在当前的Build.gradle(Module: app)中添加:

    compileOptions {
        targetCompatibility 1.8
        sourceCompatibility 1.8
    }

这段代码即可。其中,1.8表示使用JDK1.8版本。

下面给出一个完整的gradle代码示例:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.test.zenny_chen.test"
        minSdkVersion 17
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    sourceSets {
        main {
            jniLibs.srcDirs = ['libs']
        }
    }
    compileOptions {
        targetCompatibility 1.8
        sourceCompatibility 1.8
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0-rc02'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.android.support:design:28.0.0-rc02'
    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'
}

当然,我们这里只需关注android部分即可。

相关文章

网友评论

    本文标题:在Android Studio项目工程中设置所使用的JDK版本

    本文链接:https://www.haomeiwen.com/subject/nwjfnftx.html