2015-05-29 15:52:09 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 22
|
|
|
|
buildToolsVersion "22.0.1"
|
|
|
|
|
|
|
|
defaultConfig {
|
2015-08-02 17:17:00 +00:00
|
|
|
applicationId "io.syng"
|
2015-08-05 11:07:30 +00:00
|
|
|
minSdkVersion 15
|
2015-05-29 15:52:09 +00:00
|
|
|
targetSdkVersion 22
|
|
|
|
versionCode 1
|
|
|
|
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'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
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-07-28 11:29:41 +00:00
|
|
|
compile 'com.android.support:appcompat-v7:22.2.1'
|
|
|
|
compile 'com.android.support:recyclerview-v7:22.2.1'
|
2015-08-05 11:07:30 +00:00
|
|
|
// compile 'com.android.support:support-v4:22.2.1'
|
|
|
|
compile 'com.android.support:design:22.2.1'
|
2015-07-27 18:13:49 +00:00
|
|
|
compile 'co.dift.ui.swipetoaction:library:1.1'
|
2015-08-05 11:07:30 +00:00
|
|
|
// compile 'de.hdodenhof:circleimageview:1.3.0'
|
2015-06-23 01:25:14 +00:00
|
|
|
compile 'com.getbase:floatingactionbutton:1.9.0'
|
2015-08-05 14:36:45 +00:00
|
|
|
// compile 'com.github.ksoichiro:android-observablescrollview:1.5.2'
|
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
|
|
|
|
2015-08-08 07:45:19 +00:00
|
|
|
// compile 'com.netflix.rxjava:rxjava-android:0.20.7'
|
2015-08-05 11:07:30 +00:00
|
|
|
|
|
|
|
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3.1'
|
2015-08-08 07:45:19 +00:00
|
|
|
compile 'com.android.support:cardview-v7:22.2.1'
|
2015-05-29 15:52:09 +00:00
|
|
|
}
|