syng-client/app/build.gradle

64 lines
2.0 KiB
Groovy
Raw Normal View History

2015-05-29 15:52:09 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23"
2015-05-29 15:52:09 +00:00
defaultConfig {
2015-08-02 17:17:00 +00:00
applicationId "io.syng"
minSdkVersion 15
targetSdkVersion 23
2015-10-21 16:30:24 +00:00
versionCode 3
2015-05-29 15:52:09 +00:00
versionName "1.0"
multiDexEnabled true
}
packagingOptions {
exclude 'META-INF/INDEX.LIST'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'LICENSE'
exclude 'NOTICE'
exclude 'META-INF/ASL2.0'
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
exclude 'META-INF/services/javax.annotation.processing.Processor'
}
dexOptions {
javaMaxHeapSize "4g"
}
lintOptions {
abortOnError false
2015-05-29 15:52:09 +00:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
zipAlignEnabled true
2015-05-29 15:52:09 +00:00
}
}
}
repositories {
maven { url "https://jitpack.io" }
}
2015-05-29 15:52:09 +00:00
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile(project(':ethereumj-core-android')) {
exclude group: "org.hibernate", module: "hibernate-core"
exclude group: "com.h2database", module: "h2"
exclude group: "org.codehaus.jackson", module: "jackson-mapper-asl"
exclude group: "org.mapdb", module: "mapdb"
}
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'com.android.support:recyclerview-v7:23.0.0'
compile 'com.android.support:design:23.0.0'
compile 'com.android.support:cardview-v7:23.0.0'
compile 'com.getbase:floatingactionbutton:1.9.0'
compile 'com.afollestad:material-dialogs:0.7.7.0'
compile 'com.github.bumptech.glide:glide:3.6.1'
compile(project(':cordova-android')) {
}
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3.1'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1'
2015-05-29 15:52:09 +00:00
}