Skip to content

Instantly share code, notes, and snippets.

@iheanyi
Forked from ishmaelthedestroyer/build.gradle
Last active August 29, 2015 14:08
Show Gist options
  • Save iheanyi/2735e7febf57dbd21723 to your computer and use it in GitHub Desktop.
Save iheanyi/2735e7febf57dbd21723 to your computer and use it in GitHub Desktop.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
}
}
apply plugin: 'android'
repositories {
maven { url "http://dl.bintray.com/populov/maven" }
mavenCentral()
}
android {
compileSdkVersion 20
buildToolsVersion "20.0.0"
defaultConfig {
minSdkVersion 11
targetSdkVersion 20
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.viewpagerindicator:library:2.4.1@aar'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:19.+'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment