crystal-wallet-android/app/build.gradle

73 lines
2.8 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
android {
compileSdkVersion 26
2017-11-14 00:18:40 +00:00
buildToolsVersion '26.0.2'
defaultConfig {
2017-09-08 00:31:38 +00:00
applicationId "cy.agorise.crystalwallet"
minSdkVersion 19
targetSdkVersion 26
versionCode 1
2018-05-25 18:54:07 +00:00
versionName "0.1t.alpha"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
2017-09-10 23:13:32 +00:00
javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
}
}
vectorDrawables {
useSupportLibrary true
}
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
//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'
})
//testCompile 'com.android.support.test:runner:1.0.1'
2018-05-25 18:54:07 +00:00
compile 'com.android.support:appcompat-v7:26.0.2'
compile 'com.android.support:support-v4:26.0.2'
compile 'com.android.support:design:26.0.2'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
2017-11-14 00:18:40 +00:00
compile 'android.arch.lifecycle:runtime:1.0.3'
compile 'android.arch.lifecycle:extensions:1.0.0'
compile 'android.arch.persistence.room:runtime:1.0.0'
compile 'android.arch.paging:runtime:1.0.0-alpha3'
compile 'com.idescout.sql:sqlscout-server:2.0'
2017-11-14 00:18:40 +00:00
compile 'com.google.code.gson:gson:2.8.0'
compile 'com.squareup.retrofit2:retrofit:2.2.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'
compile 'com.jakewharton:butterknife:8.8.1'
compile 'com.github.bilthon:graphenej:0.4.6'
compile 'com.google.zxing:core:3.3.1'
compile 'me.dm7.barcodescanner:zxing:1.9.8'
2018-01-10 02:00:46 +00:00
compile 'com.squareup.okhttp3:logging-interceptor:3.5.0'
compile 'de.hdodenhof:circleimageview:2.2.0'
2018-01-10 02:00:46 +00:00
//testCompile 'junit:junit: 4.12'
testCompile 'org.mockito:mockito-core:1.10.19'
2017-11-14 00:18:40 +00:00
annotationProcessor 'android.arch.lifecycle:compiler:1.0.0'
annotationProcessor 'android.arch.persistence.room:compiler:1.0.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
compile 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.github.esafirm.android-image-picker:imagepicker:1.11.1'
compile 'id.zelory:compressor:2.1.0'
2018-04-26 02:43:34 +00:00
compile 'com.vincent.filepicker:MultiTypeFilePicker:1.0.7'
2018-05-09 02:07:12 +00:00
compile 'com.andrognito.patternlockview:patternlockview:1.0.0'
}