2017-08-17 21:38:05 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2017-09-10 23:13:32 +00:00
|
|
|
apply plugin: 'com.neenbedankt.android-apt'
|
2017-08-17 21:38:05 +00:00
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 26
|
2017-09-08 00:31:38 +00:00
|
|
|
buildToolsVersion "26.0.1"
|
2017-08-17 21:38:05 +00:00
|
|
|
defaultConfig {
|
2017-09-08 00:31:38 +00:00
|
|
|
applicationId "cy.agorise.crystalwallet"
|
|
|
|
minSdkVersion 19
|
2017-08-17 21:38:05 +00:00
|
|
|
targetSdkVersion 26
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
2017-09-10 23:13:32 +00:00
|
|
|
javaCompileOptions {
|
|
|
|
annotationProcessorOptions {
|
|
|
|
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
|
|
|
|
}
|
|
|
|
}
|
2017-09-30 19:37:36 +00:00
|
|
|
multiDexEnabled true
|
2017-08-17 21:38:05 +00:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
2017-09-20 01:59:14 +00:00
|
|
|
//androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:3.0.1', {
|
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
2017-08-17 21:38:05 +00:00
|
|
|
})
|
2017-09-20 01:59:14 +00:00
|
|
|
compile 'com.android.support:appcompat-v7:26.1.0'
|
2017-10-05 02:46:55 +00:00
|
|
|
compile 'com.android.support:support-v4:26.1.0'
|
|
|
|
compile 'com.android.support:design:26.1.0'
|
2017-08-17 21:38:05 +00:00
|
|
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
|
|
testCompile 'junit:junit:4.12'
|
2017-09-20 01:59:14 +00:00
|
|
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
|
|
|
//testCompile 'com.android.support.test:runner:1.0.1'
|
2017-09-08 00:31:38 +00:00
|
|
|
|
2017-09-18 02:38:05 +00:00
|
|
|
compile "android.arch.lifecycle:runtime:1.0.0-alpha9-1"
|
|
|
|
compile "android.arch.lifecycle:extensions:1.0.0-alpha9-1"
|
|
|
|
annotationProcessor "android.arch.lifecycle:compiler:1.0.0-alpha9-1"
|
|
|
|
compile 'android.arch.persistence.room:runtime:1.0.0-alpha9-1';
|
|
|
|
apt "android.arch.persistence.room:compiler:1.0.0-alpha9-1";
|
|
|
|
compile "android.arch.paging:runtime:1.0.0-alpha1";
|
2017-09-17 00:41:10 +00:00
|
|
|
|
|
|
|
compile 'com.idescout.sql:sqlscout-server:2.0';
|
2017-09-27 02:48:34 +00:00
|
|
|
|
|
|
|
compile 'com.google.code.gson:gson:2.2.4'
|
|
|
|
compile 'com.squareup.retrofit2:retrofit:2.1.0'
|
|
|
|
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
|
|
|
|
compile 'org.bitcoinj:bitcoinj-core:0.14.3'
|
|
|
|
compile 'com.neovisionaries:nv-websocket-client:1.30'
|
|
|
|
compile 'org.tukaani:xz:1.6'
|
2017-10-01 01:52:34 +00:00
|
|
|
compile 'com.jakewharton:butterknife:8.8.1'
|
|
|
|
apt 'com.jakewharton:butterknife-compiler:8.8.1'
|
2017-10-03 20:10:03 +00:00
|
|
|
compile 'com.github.bilthon:graphenej:0.4.5'
|
2017-10-01 01:52:34 +00:00
|
|
|
|
2017-08-17 21:38:05 +00:00
|
|
|
}
|