Skip to content

Instantly share code, notes, and snippets.

@asanand3
Created September 19, 2015 15:31
Show Gist options
  • Save asanand3/4e3e691ee0e0450c58a1 to your computer and use it in GitHub Desktop.
Save asanand3/4e3e691ee0e0450c58a1 to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.application'
apply plugin: 'me.tatarka.retrolambda'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'me.tatarka:gradle-retrolambda:3.2.2'
}
}
repositories {
mavenCentral()
}
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "net.anandsingh.lambdaandroid.lambdaandroid"
minSdkVersion 15
targetSdkVersion 22
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.1'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment