diff options
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/app/build.gradle b/app/build.gradle index 624c04ac..920b9fd1 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -21,13 +21,13 @@ android { buildToolsVersion project.BUILD_TOOLS androidGitVersion { - codeFormat = 'MMNNPPBB' + codeFormat = 'MMNNPPXX' format = '%tag%%.count%%-commit%' prefix 'v' } defaultConfig { - applicationId "${project.APP_GROUP}." + project.APP_ID.toLowerCase() + applicationId "${project.APP_GROUP}." + project.APP_ID.toLowerCase(Locale.CANADA) minSdkVersion Integer.parseInt(project.MIN_SDK) targetSdkVersion Integer.parseInt(project.TARGET_SDK) versionCode androidGitVersion.code() @@ -45,8 +45,7 @@ android { lintOptions { warningsAsErrors true - disable 'LogNotTimber', - 'TrustAllX509TrustManager', + disable 'TrustAllX509TrustManager', 'UnusedResources', 'ContentDescription', 'RtlSymmetry' @@ -139,6 +138,8 @@ dependencies { //noinspection GradleDependency implementation "ca.allanwang.kau:searchview:$KAU" //noinspection GradleDependency + implementation "ca.allanwang.kau:core:$KAU" + //noinspection GradleDependency implementation "ca.allanwang.kau:core-ui:$KAU" testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN}" @@ -177,4 +178,9 @@ dependencies { implementation "com.sothree.slidinguppanel:library:${SLIDING_PANEL}" + //Reactive Libs + implementation "io.reactivex.rxjava2:rxkotlin:${RX_KOTLIN}" + implementation "io.reactivex.rxjava2:rxandroid:${RX_ANDROID}" + implementation "com.github.pwittchen:reactivenetwork-rx2:${RX_NETWORK}" + }
\ No newline at end of file |