Skip to content

Instantly share code, notes, and snippets.

@falkorichter
Created July 1, 2014 20:37
Show Gist options
  • Save falkorichter/ae9605c07d49cc4fdb12 to your computer and use it in GitHub Desktop.
Save falkorichter/ae9605c07d49cc4fdb12 to your computer and use it in GitHub Desktop.
Android-L gradle file
apply plugin: 'com.android.application'
android {
compileSdkVersion "android-L"
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "sensorbeacon.android.sensorberg"
minSdkVersion 'L'
targetSdkVersion 'L'
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}
@MiguelRipoll23
Copy link

Thank you, man.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment