Created
July 1, 2014 20:37
-
-
Save falkorichter/ae9605c07d49cc4fdb12 to your computer and use it in GitHub Desktop.
Android-L gradle file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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']) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you, man.