2018-01-28 20:56:58 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2018-03-01 23:22:26 +00:00
|
|
|
compileSdkVersion 27
|
2018-01-28 20:56:58 +00:00
|
|
|
defaultConfig {
|
2018-05-30 14:58:46 +00:00
|
|
|
applicationId "com.herbron.moodl"
|
2018-05-29 12:55:24 +00:00
|
|
|
minSdkVersion 19
|
2018-03-01 23:22:26 +00:00
|
|
|
targetSdkVersion 27
|
2018-08-28 23:12:47 +00:00
|
|
|
versionCode 7
|
|
|
|
versionName "0.1.7"
|
2018-01-28 20:56:58 +00:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
2018-07-15 19:20:26 +00:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2018-01-28 20:56:58 +00:00
|
|
|
}
|
2018-07-11 21:57:55 +00:00
|
|
|
|
2018-07-31 23:02:41 +00:00
|
|
|
aaptOptions {
|
|
|
|
additionalParameters "--no-version-vectors"
|
|
|
|
}
|
|
|
|
|
2018-07-11 21:57:55 +00:00
|
|
|
dataBinding {
|
|
|
|
enabled = true
|
|
|
|
}
|
|
|
|
|
2018-01-28 20:56:58 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2018-05-05 14:53:22 +00:00
|
|
|
lintOptions {
|
2018-08-04 03:05:12 +00:00
|
|
|
checkReleaseBuilds false
|
2018-07-09 21:47:30 +00:00
|
|
|
//disable 'MissingTranslation'
|
2018-05-05 14:53:22 +00:00
|
|
|
}
|
2018-01-28 20:56:58 +00:00
|
|
|
}
|
|
|
|
}
|
2018-05-14 00:01:28 +00:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
2018-01-28 20:56:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
2018-05-14 00:01:28 +00:00
|
|
|
implementation 'com.android.support:appcompat-v7:27.1.1'
|
2018-07-31 23:02:41 +00:00
|
|
|
implementation 'com.android.support:support-v4:27.1.1'
|
2018-05-14 00:01:28 +00:00
|
|
|
implementation 'com.android.support:design:27.1.1'
|
|
|
|
implementation 'com.android.support:cardview-v7:27.1.1'
|
2018-01-28 20:56:58 +00:00
|
|
|
implementation 'com.mcxiaoke.volley:library:1.0.19'
|
|
|
|
implementation 'com.diogobernardino:williamchart:2.5.0'
|
2018-07-11 21:57:55 +00:00
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
|
2018-05-14 00:01:28 +00:00
|
|
|
implementation 'com.android.support:palette-v7:27.1.1'
|
2018-01-30 15:16:06 +00:00
|
|
|
implementation 'com.daimajia.swipelayout:library:1.2.0@aar'
|
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'
|
2018-03-01 18:57:19 +00:00
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
|
2018-05-14 00:01:28 +00:00
|
|
|
implementation 'com.squareup.retrofit2:converter-jackson:2.3.0'
|
2018-02-15 13:55:48 +00:00
|
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.6.0'
|
|
|
|
implementation 'org.apache.commons:commons-lang3:3.6'
|
2018-03-04 17:24:46 +00:00
|
|
|
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'
|
2018-03-01 23:22:26 +00:00
|
|
|
implementation 'com.mattprecious.swirl:swirl:1.1.0'
|
2018-08-14 02:14:18 +00:00
|
|
|
implementation 'com.wdullaer:materialdatetimepicker:3.6.3'
|
2018-06-03 23:48:53 +00:00
|
|
|
implementation 'com.jmedeisis:draglinearlayout:1.1.0'
|
2018-07-11 21:57:55 +00:00
|
|
|
implementation 'com.applandeo:material-file-picker:1.0.0'
|
2018-07-14 22:32:51 +00:00
|
|
|
implementation 'com.daasuu:EasingInterpolator:1.0.0'
|
2018-07-15 19:20:26 +00:00
|
|
|
implementation 'com.android.support:support-vector-drawable:27.1.1'
|
2018-01-28 20:56:58 +00:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2018-05-14 00:01:28 +00:00
|
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
|
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
|
|
|
|
2018-08-01 13:57:30 +00:00
|
|
|
implementation files('../libs/binance-api-forked.jar')
|
2018-07-31 23:02:41 +00:00
|
|
|
implementation files('../libs/commons-codec-1.11.jar')
|
2018-01-28 20:56:58 +00:00
|
|
|
}
|