Created
July 10, 2016 18:38
-
-
Save Wendly/2acb625bd6732b1fcb620fd6956c3029 to your computer and use it in GitHub Desktop.
build.gradle
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() | |
mavenLocal() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:2.+' | |
} | |
} | |
apply plugin: 'android' | |
apply plugin: 'maven' | |
android { | |
compileSdkVersion 23 | |
buildToolsVersion "23.0.3" | |
defaultConfig { | |
minSdkVersion 14 | |
targetSdkVersion 23 | |
versionCode 10 | |
versionName "1.1.4" | |
} | |
sourceSets { | |
main { | |
manifest.srcFile 'AndroidManifest.xml' | |
java.srcDirs = ['src'] | |
resources.srcDirs = ['src'] | |
aidl.srcDirs = ['src'] | |
renderscript.srcDirs = ['src'] | |
res.srcDirs = ['res'] | |
assets.srcDirs = ['assets'] | |
} | |
} | |
compileOptions { | |
sourceCompatibility JavaVersion.VERSION_1_7 | |
targetCompatibility JavaVersion.VERSION_1_7 | |
} | |
buildTypes { | |
debug { | |
} | |
release { | |
minifyEnabled false | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.cfg' | |
signingConfig null | |
debuggable false | |
} | |
} | |
lintOptions { | |
abortOnError false | |
} | |
} | |
repositories { | |
mavenCentral() | |
maven { url "http://jzaccone.github.io/SlidingMenu-aar" } | |
} | |
dependencies { | |
compile project(':Android-NewPopupMenu') | |
compile project(':Android-Bootstrap') | |
compile project(':Vertical-SeekBar-Android') | |
compile project(':android-support-v4-preferencefragment') | |
compile 'io.reactivex:rxjava:1.1.6' | |
compile 'com.jeremyfeinstein.slidingmenu:library:1.3@aar' | |
compile 'com.android.support:appcompat-v7:23.3.0' | |
compile 'com.android.support:support-v4:23.3.0' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment