Compare commits
1 Commits
2.1.2-beta
...
2.1.0
Author | SHA1 | Date | |
---|---|---|---|
92d703ec7b |
@ -15,8 +15,8 @@ android {
|
||||
applicationId "fr.sanchezm.attestationsCovid19"
|
||||
minSdkVersion 23
|
||||
targetSdkVersion 30
|
||||
versionCode 1008
|
||||
versionName "2.1.2-beta1"
|
||||
versionCode 11
|
||||
versionName "2.1.0"
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
@ -76,13 +76,15 @@ dependencies {
|
||||
// Android X
|
||||
implementation 'androidx.appcompat:appcompat:1.2.0'
|
||||
implementation 'androidx.core:core-ktx:1.3.2'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
|
||||
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
||||
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
||||
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
|
||||
|
||||
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.1'
|
||||
implementation 'androidx.navigation:navigation-fragment:2.3.1'
|
||||
implementation 'androidx.navigation:navigation-ui-ktx:2.3.1'
|
||||
implementation 'androidx.navigation:navigation-ui:2.3.1'
|
||||
|
||||
// Design
|
||||
implementation 'com.google.android.material:material:1.2.1'
|
||||
|
@ -96,7 +96,7 @@ class AddViewModel(
|
||||
|
||||
val dpd = DatePickerDialog(
|
||||
app,
|
||||
{ _, yearPicked, monthOfYear, dayOfMonth ->
|
||||
DatePickerDialog.OnDateSetListener { _, yearPicked, monthOfYear, dayOfMonth ->
|
||||
birthday.value =
|
||||
"${getFormattedDayOrMonth(dayOfMonth)}/${getFormattedDayOrMonth(monthOfYear + 1)}/$yearPicked"
|
||||
},
|
||||
|
@ -34,7 +34,7 @@ class PdfUtils private constructor(
|
||||
|
||||
// Adding data
|
||||
if (setFieldsData(acroForm, attestation)) {
|
||||
setCheckboxFields(acroForm, attestation)
|
||||
// setCheckboxFields(acroForm, attestation)
|
||||
addPageWithQrCode(document, attestation)
|
||||
|
||||
Log.v("PdfUtils", "Save File to ${getPath(attestation.createAt)}")
|
||||
|
Reference in New Issue
Block a user