2018-02-20 22:13:21 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2018-06-27 21:48:20 +00:00
|
|
|
compileSdkVersion 27
|
2018-02-20 22:13:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
2018-06-08 23:42:30 +00:00
|
|
|
applicationId "cy.agorise.labs.sample"
|
2018-02-20 22:13:21 +00:00
|
|
|
minSdkVersion 14
|
2018-06-27 21:48:20 +00:00
|
|
|
targetSdkVersion 27
|
2018-02-20 22:13:21 +00:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
multiDexEnabled true
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2018-06-05 03:08:40 +00:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2018-02-20 22:13:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-05-03 17:27:12 +00:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2018-12-07 00:17:32 +00:00
|
|
|
implementation project(':graphenej')
|
|
|
|
implementation 'org.bitcoinj:bitcoinj-core:0.14.3'
|
2018-06-27 21:48:20 +00:00
|
|
|
implementation 'com.android.support:appcompat-v7:27.1.1'
|
|
|
|
implementation 'com.android.support:recyclerview-v7:27.1.1'
|
2018-06-29 04:40:59 +00:00
|
|
|
implementation 'com.android.support:design:27.1.1'
|
2019-09-13 00:30:40 +00:00
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
2018-05-03 17:27:12 +00:00
|
|
|
implementation 'com.jakewharton.rxbinding2:rxbinding:2.1.1'
|
|
|
|
implementation 'com.jakewharton:butterknife:8.8.1'
|
2019-09-13 00:30:40 +00:00
|
|
|
implementation 'com.google.code.gson:gson:2.8.5'
|
2018-05-03 17:27:12 +00:00
|
|
|
implementation 'com.google.guava:guava:25.0-jre'
|
2018-02-20 22:13:21 +00:00
|
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
|
2018-05-03 17:27:12 +00:00
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.1', {
|
2018-02-20 22:13:21 +00:00
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
2019-09-13 00:30:40 +00:00
|
|
|
implementation 'com.android.support:multidex:1.0.3'
|
2018-02-20 22:13:21 +00:00
|
|
|
}
|