Skip to content

Instantly share code, notes, and snippets.

@edBaev
Created November 25, 2014 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edBaev/bb017cfff0a18a158111 to your computer and use it in GitHub Desktop.
Save edBaev/bb017cfff0a18a158111 to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.application'
apply from: '../gradle.properties'
android {
compileSdkVersion 21
buildToolsVersion '21.1.1'
defaultConfig {
applicationId "com.blacksquared.changers"
minSdkVersion 15
targetSdkVersion 21
versionCode 4
versionName "1.0.2"
}
signingConfigs {
release {
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
buildTypes {
release {
signingConfig signingConfigs.release
proguardFile 'proguard.cfg'
minifyEnabled true
}
debug {
signingConfig signingConfigs.release
minifyEnabled false
}
}
repositories {
maven { url "http://mente.github.io/facebook-api-android-aar" }
maven {
url "http://dl.bintray.com/populov/maven"
}
mavenCentral()
mavenLocal()
}
lintOptions {
abortOnError false
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/notice.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/dependencies.txt'
exclude 'META-INF/LGPL2.1'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':seek_bar_rotate')
compile project(':seekarc')
compile project(':library')
compile project(':circleprogress')
compile 'se.emilsjolander:stickylistheaders:2.5.0'
compile 'commons-codec:commons-codec:1.5'
compile 'com.readystatesoftware.systembartint:systembartint:1.0.3'
compile 'com.google.android.gms:play-services:5.0.89'
compile 'com.android.support:support-v4:21.0.0'
compile 'com.mobsandgeeks:android-saripaar:1.0.2'
compile 'com.squareup.retrofit:retrofit:1.6.1'
compile 'de.greenrobot:eventbus:2.2.1'
compile 'com.squareup.picasso:picasso:2.3.4'
compile 'com.makeramen:roundedimageview:1.3.0'
compile 'com.google.guava:guava:17.0'
compile 'com.soundcloud.android:android-crop:0.9.10@aar'
compile 'com.jakewharton.timber:timber:2.2.+'
compile 'com.facebook:facebook-android-sdk:3.8.+@aar'
compile 'com.viewpagerindicator:library:2.4.1@aar'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment