Tanguy Herbron
380716f7ea
- Fix crash when binance sync error - New exchange list UI - New exchange configuration UI - Fix gradient background for Settings activity The new exchange configuration interface allows you to add (it should work) multiple accounts for each exchange If an account's keys are incorrect, the account and disabled and it's notified in the exchange list You can edit the exchange account later from the exchange list activity
70 lines
2.7 KiB
Groovy
70 lines
2.7 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
defaultConfig {
|
|
applicationId "com.herbron.moodl"
|
|
minSdkVersion 19
|
|
targetSdkVersion 27
|
|
versionCode 6
|
|
versionName "0.0.6"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
|
|
aaptOptions {
|
|
additionalParameters "--no-version-vectors"
|
|
}
|
|
|
|
dataBinding {
|
|
enabled = true
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
lintOptions {
|
|
//disable 'MissingTranslation'
|
|
}
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'com.android.support:appcompat-v7:27.1.1'
|
|
implementation 'com.android.support:support-v4:27.1.1'
|
|
implementation 'com.android.support:design:27.1.1'
|
|
implementation 'com.android.support:cardview-v7:27.1.1'
|
|
implementation 'com.mcxiaoke.volley:library:1.0.19'
|
|
implementation 'com.diogobernardino:williamchart:2.5.0'
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
|
|
implementation 'com.android.support:palette-v7:27.1.1'
|
|
implementation 'com.daimajia.swipelayout:library:1.2.0@aar'
|
|
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.3.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.jmedeisis:draglinearlayout:1.1.0'
|
|
implementation 'com.applandeo:material-file-picker:1.0.0'
|
|
implementation 'com.daasuu:EasingInterpolator:1.0.0'
|
|
implementation 'com.android.support:support-vector-drawable:27.1.1'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
|
|
|
implementation files('../libs/binance-api.jar')
|
|
implementation files('../libs/commons-codec-1.11.jar')
|
|
}
|