syng-client/app/build.gradle

61 lines
1.8 KiB
Groovy
Raw Normal View History

2015-05-29 17:52:09 +02:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23"
2015-05-29 17:52:09 +02:00
defaultConfig {
2015-08-02 19:17:00 +02:00
applicationId "io.syng"
minSdkVersion 15
targetSdkVersion 23
2015-05-29 17:52:09 +02:00
versionCode 1
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 17:52:09 +02:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
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'
2015-05-29 17:52:09 +02:00
}