Skip to content

Instantly share code, notes, and snippets.

@nightbear1009
Created October 22, 2014 10:11
Show Gist options
  • Save nightbear1009/468858b3638c2a2ff006 to your computer and use it in GitHub Desktop.
Save nightbear1009/468858b3638c2a2ff006 to your computer and use it in GitHub Desktop.
build.gradle for retrolamda
apply plugin: 'com.android.application'
apply plugin: 'retrolambda'
android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
compileSdkVersion 21
buildToolsVersion '21.0.0'
defaultConfig {
applicationId "com.example.retro"
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment