2015-05-29 15:52:09 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2015-08-19 14:47:01 +00:00
|
|
|
compileSdkVersion 23
|
|
|
|
buildToolsVersion "23"
|
2015-05-29 15:52:09 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2015-08-02 17:17:00 +00:00
|
|
|
applicationId "io.syng"
|
2015-08-05 11:07:30 +00:00
|
|
|
minSdkVersion 15
|
2015-08-19 14:47:01 +00:00
|
|
|
targetSdkVersion 23
|
2015-10-21 16:30:24 +00:00
|
|
|
versionCode 3
|
2015-05-29 15:52:09 +00:00
|
|
|
versionName "1.0"
|
2015-06-23 01:25:14 +00:00
|
|
|
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'
|
2015-10-21 07:28:16 +00:00
|
|
|
zipAlignEnabled true
|
2015-05-29 15:52:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-10-21 15:31:59 +00:00
|
|
|
repositories {
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
}
|
2015-05-29 15:52:09 +00:00
|
|
|
dependencies {
|
2015-10-21 07:28:16 +00:00
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
2015-07-27 18:13:49 +00:00
|
|
|
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"
|
|
|
|
}
|
2015-08-05 11:07:30 +00:00
|
|
|
compile 'com.android.support:multidex:1.0.1'
|
2015-08-22 18:10:39 +00:00
|
|
|
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'
|
2015-06-23 01:25:14 +00:00
|
|
|
compile 'com.getbase:floatingactionbutton:1.9.0'
|
2015-07-27 18:13:49 +00:00
|
|
|
compile 'com.afollestad:material-dialogs:0.7.7.0'
|
2015-08-05 11:07:30 +00:00
|
|
|
compile 'com.github.bumptech.glide:glide:3.6.1'
|
2015-08-05 14:36:45 +00:00
|
|
|
compile(project(':cordova-android')) {
|
|
|
|
}
|
2015-08-05 11:07:30 +00:00
|
|
|
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3.1'
|
2015-09-22 16:55:02 +00:00
|
|
|
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1'
|
2015-05-29 15:52:09 +00:00
|
|
|
}
|