Last active
December 29, 2015 14:39
-
-
Save skyisle/7685821 to your computer and use it in GitHub Desktop.
Default build.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
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:0.6.+' | |
} | |
} | |
apply plugin: 'android' | |
repositories { | |
mavenCentral() | |
} | |
android { | |
compileSdkVersion 19 | |
buildToolsVersion "19.0.0" | |
defaultConfig { | |
minSdkVersion 7 | |
targetSdkVersion 19 | |
} | |
buildTypes { | |
release { | |
runProguard false | |
proguardFile getDefaultProguardFile('proguard-android-optimize.txt') | |
} | |
} | |
productFlavors { | |
defaultFlavor { | |
proguardFile 'proguard-rules.txt' | |
} | |
} | |
} | |
dependencies { | |
compile 'com.android.support:appcompat-v7:+' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment