2018-01-28 20:56:58 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 26
|
|
|
|
defaultConfig {
|
2018-01-30 23:50:12 +00:00
|
|
|
applicationId "com.nauk.coinfolio"
|
2018-02-28 11:31:14 +00:00
|
|
|
minSdkVersion 23
|
2018-01-28 20:56:58 +00:00
|
|
|
targetSdkVersion 26
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/binance/src'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
|
implementation 'com.android.support:appcompat-v7:26.1.0'
|
|
|
|
implementation 'com.android.support:design:26.1.0'
|
|
|
|
implementation 'com.android.support:cardview-v7:26.1.0'
|
|
|
|
implementation 'com.mcxiaoke.volley:library:1.0.19'
|
|
|
|
implementation 'com.diogobernardino:williamchart:2.5.0'
|
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
|
|
implementation 'com.android.support:support-v4:26.1.0'
|
|
|
|
implementation 'com.android.support:palette-v7:26.1.0'
|
2018-01-30 15:16:06 +00:00
|
|
|
implementation 'com.android.support:recyclerview-v7:26.1.0'
|
|
|
|
implementation 'com.daimajia.swipelayout:library:1.2.0@aar'
|
2018-02-12 18:43:17 +00:00
|
|
|
implementation 'com.github.armcha:SpaceNavigationView:1.6.0'
|
2018-02-15 13:55:48 +00:00
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.8.5'
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.8.5'
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.8.5'
|
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.2.0'
|
|
|
|
implementation 'com.squareup.retrofit2:converter-jackson:2.2.0'
|
|
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.6.0'
|
|
|
|
implementation 'org.apache.commons:commons-lang3:3.6'
|
2018-02-28 11:31:14 +00:00
|
|
|
implementation 'com.mattprecious.swirl:swirl:1.1.0'
|
2018-01-28 20:56:58 +00:00
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.1'
|
|
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
|
2018-02-16 08:01:39 +00:00
|
|
|
implementation files('../libs/binance-api.jar')
|
2018-01-28 20:56:58 +00:00
|
|
|
}
|