COVIDSafe code from version 1.11.0

This commit is contained in:
covidsafe-support 2020-09-23 08:45:00 +10:00
parent 12c06add12
commit a21e934cf9
139 changed files with 8039 additions and 6010 deletions

View file

@ -10,12 +10,13 @@ project.ext {
}
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion 21
targetSdkVersion 28
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
multiDexEnabled = true
@ -46,15 +47,18 @@ dependencies {
//Dependencies are listed in alphabetical order.
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation "androidx.core:core-ktx:1.2.0"
implementation "androidx.cardview:cardview:1.0.0"
implementation "androidx.core:core-ktx:1.3.1"
implementation "androidx.lifecycle:lifecycle-viewmodel:2.2.0"
implementation "com.squareup.okhttp3:okhttp:$okhttp_version"
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
implementation "com.squareup.retrofit2:converter-gson:$retrofit_version"
implementation "com.google.android.material:material:1.1.0"
implementation "com.google.android.material:material:1.2.0"
implementation "io.reactivex:rxjava:1.3.8"
implementation "io.reactivex:rxjava-reactive-streams:1.2.1"
api 'androidx.constraintlayout:constraintlayout:2.0.1'
api "androidx.cardview:cardview:1.0.0"
api "com.squareup.okhttp3:okhttp:$okhttp_version"
api "com.squareup.retrofit2:retrofit:$retrofit_version"
api "com.squareup.retrofit2:converter-gson:$retrofit_version"
}