赞
踩
一、前言
开发时总会遇到这样那样的问题,每次都要重新上网查找解决的方法,实在是费时费力,索性统一记录起来以方便日后查看。
二、本期问题
如何在Android Studio中开启Java8并支持Lambda表达式。
三、解决之道
在app文件夹下的build.gradle中添加相应信息
apply plugin: 'com.android.application' android { compileSdkVersion 25 buildToolsVersion "25.0.2" defaultConfig { applicationId "com.example.xzd.demo1" minSdkVersion 23 targetSdkVersion 25 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" //第一步 jackOptions{ enabled true } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } //第二步 compileOptions{ sourceCompatibility org.gradle.api.JavaVersion.VERSION_1_8 targetCompatibility org.gradle.api.JavaVersion.VERSION_1_8 } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) compile 'com.android.support:appcompat-v7:25.2.0' testCompile 'junit:junit:4.12' }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。