Tanguy Herbron
c83385080c
- Add time/date pickers - Add time for manual transactions recording - Add time for manual transactions listing - Add volume hightlight with price highlight - Cleaning up of CurrencyDetailsActivity code
52 lines
2.2 KiB
Groovy
52 lines
2.2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
defaultConfig {
|
|
applicationId "com.nauk.coinfolio"
|
|
minSdkVersion 23
|
|
targetSdkVersion 27
|
|
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:27.1.0'
|
|
implementation 'com.android.support:design:27.1.0'
|
|
implementation 'com.android.support:cardview-v7:27.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:27.1.0'
|
|
implementation 'com.android.support:palette-v7:27.1.0'
|
|
implementation 'com.daimajia.swipelayout:library:1.2.0@aar'
|
|
implementation 'com.github.armcha:SpaceNavigationView:1.6.0'
|
|
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.3.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'
|
|
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'
|
|
implementation 'com.mattprecious.swirl:swirl:1.1.0'
|
|
implementation 'com.wdullaer:materialdatetimepicker:3.5.2'
|
|
//implementation 'com.github.lecho:hellocharts-library:1.5.8@aar'
|
|
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'
|
|
implementation files('../libs/binance-api.jar')
|
|
}
|