Skip to content

Instantly share code, notes, and snippets.

@yukihane
Last active August 29, 2015 14:24
Show Gist options
  • Save yukihane/e1649be1006d06f3f1d1 to your computer and use it in GitHub Desktop.
Save yukihane/e1649be1006d06f3f1d1 to your computer and use it in GitHub Desktop.
/app/build.gradle
apply plugin: 'com.android.application'
apply plugin: 'me.tatarka.retrolambda'
android {
compileSdkVersion 21
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "yukihane.helloretrolambda"
minSdkVersion 9
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment