Created
February 17, 2014 21:16
-
-
Save axsddlr/9059328 to your computer and use it in GitHub Desktop.
This file contains 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
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:0.7.+' | |
} | |
} | |
apply plugin: 'android' | |
repositories { | |
mavenCentral() | |
} | |
android { | |
compileSdkVersion 19 | |
buildToolsVersion "19.0.1" | |
defaultConfig { | |
minSdkVersion 18 | |
targetSdkVersion 19 | |
} | |
buildTypes | |
{ | |
release { | |
runProguard true | |
proguardFile getDefaultProguardFile('proguard-android.txt') | |
proguardFile 'proguard.txt' | |
} | |
} | |
} | |
dependencies { | |
compile project(':libsuperuser') | |
compile fileTree(dir: 'libs', include: '*.jar') | |
compile files('libs/android-support-v4.jar') | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment