COVIDSafe code from version 1.11.0 (#26)

This commit is contained in:
COVIDSafe Support 2020-09-23 08:46:31 +10:00 committed by GitHub
parent 12c06add12
commit ae18438d17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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"
}

View file

@ -20,6 +20,6 @@
<string name="feedback_found_an_issue_in_the_covidsafe_app">Found an issue in the COVIDSafe app?</string>
<string name="feedback_please_describe_an_issue">Please describe an issue</string>
<string name="feedback_email_address_required">Email address (Required)</string>
<string name="feedback_we_may_reach_out_to_you_for_further_details_about_your_feedback">We may reach out to you for further details about your feedback.\nYour email address won`t be used for any other purpose.</string>
<string name="feedback_we_may_reach_out_to_you_for_further_details_about_your_feedback">We may reach out to you for further details about your feedback.\nYour email address won\'t be used for any other purpose.</string>
</resources>