syng-client/app/build.gradle

67 lines
2.1 KiB
Groovy
Raw Normal View History

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"
minSdkVersion 15
2015-05-29 15:52:09 +00:00
targetSdkVersion 22
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 15:52:09 +00: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'
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'
// compile 'com.android.support:support-v4:22.2.1'
compile 'com.android.support:design:22.2.1'
compile 'co.dift.ui.swipetoaction:library:1.1'
// compile 'de.hdodenhof:circleimageview:1.3.0'
compile 'com.getbase:floatingactionbutton:1.9.0'
// compile 'com.github.ksoichiro:android-observablescrollview:1.5.2'
compile 'com.afollestad:material-dialogs:0.7.7.0'
compile 'com.github.bumptech.glide:glide:3.6.1'
compile(project(':cordova-android')) {
}
2015-08-08 07:45:19 +00:00
// compile 'com.netflix.rxjava:rxjava-android:0.20.7'
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
}