22 Commits

Author SHA1 Message Date
97c1712181 Version 2.2.0 versionCode 13 2020-12-15 18:45:34 +01:00
9febdc9c35 Merge branch 'ms/issue-19/new_curfew_attestation'
# Conflicts:
#	app/build.gradle
2020-12-15 18:26:22 +01:00
1d0c53ebc5 Issue-19: Use the new curfew attestation 2020-12-15 18:25:37 +01:00
a5de6ae137 Version 2.1.2-beta1 versionCode 1008 2020-11-28 10:57:51 +01:00
b0fb52ea79 Merge branch 'ms/issue-18/change_new_attestation' into beta 2020-11-28 10:56:28 +01:00
4ba6e0ea58 Version 2.1.1 versionCode 12 2020-11-28 10:38:34 +01:00
65c7d46379 Merge branch 'ms/issue-18/change_new_attestation' 2020-11-28 10:35:43 +01:00
1c7386e24b Correct not check boxes 2020-11-28 10:34:24 +01:00
747cae4d04 Version2.1.1-beta1 versionCode 1007 2020-11-28 03:54:34 +01:00
3811723df6 Merge branch 'ms/issue-18/change_new_attestation' into beta 2020-11-28 03:52:44 +01:00
92d703ec7b Version 2.1.0 versionCode 11 2020-11-28 03:51:20 +01:00
8e3e1dd615 Update with the new attestation 2020-11-28 03:43:42 +01:00
8d69694ec3 Add twitch on the thanks page 2020-11-27 23:24:54 +01:00
ba3956bd2f Merge branch 'ms/issues-17/add_buy_me_a_coffee' into beta 2020-11-27 22:33:00 +01:00
31f2bf15b1 Move buy me a coffee from bottom to explication 2020-11-27 22:31:15 +01:00
d5c140e9e5 Version 2.0.2-beta1 et versionCode 1006 2020-10-31 15:15:15 +01:00
b037788708 Merge branch 'ms/issues-17/add_buy_me_a_coffee' into beta
# Conflicts:
#	app/build.gradle
2020-10-31 15:07:24 +01:00
8909908baa Issues-17: Add buy me a coffee and some text correction 2020-10-31 15:07:06 +01:00
eea7a7b27c Version 2.0.1 and versionCode 10 2020-10-31 10:00:53 +01:00
dd12a6a91e Merge remote-tracking branch 'origin/ms/issue-16/update_new_attestation' 2020-10-31 09:56:39 +01:00
ae62c2ab7e Merge remote-tracking branch 'origin/ms/issue-16/update_new_attestation' 2020-10-31 09:33:23 +01:00
22732c42a3 Merge remote-tracking branch 'origin/ms/issue-14/adding-pickers'
# Conflicts:
#	app/src/main/java/fr/sanchezm/attestationsCovid19/utilities/PdfUtils.kt
2020-10-31 09:32:51 +01:00
12 changed files with 46 additions and 67 deletions

View File

@ -8,15 +8,15 @@ android {
buildToolsVersion "29.0.3" buildToolsVersion "29.0.3"
buildFeatures { buildFeatures {
dataBinding = true dataBinding true
} }
defaultConfig { defaultConfig {
applicationId "fr.sanchezm.attestationsCovid19" applicationId "fr.sanchezm.attestationsCovid19"
minSdkVersion 23 minSdkVersion 23
targetSdkVersion 30 targetSdkVersion 30
versionCode 1005 versionCode 13
versionName "2.0.1-beta2" versionName "2.2.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
@ -76,13 +76,13 @@ dependencies {
// Android X // Android X
implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.core:core-ktx:1.3.2' implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.constraintlayout:constraintlayout:2.0.2' implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx: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-ktx:2.3.2'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.1' implementation 'androidx.navigation:navigation-ui-ktx:2.3.2'
// Design // Design
implementation 'com.google.android.material:material:1.2.1' implementation 'com.google.android.material:material:1.2.1'

Binary file not shown.

View File

@ -14,7 +14,7 @@ data class Attestation(
val reasons: List<Int> val reasons: List<Int>
) { ) {
override fun toString(): String { override fun toString(): String {
return "Cree le: ${getDate(createAt)}; $profile; Sortie: ${getExitDateFormatted()}; Motifs: ${getMotifsText()}" return "Cree le: ${getDate(createAt)};\n$profile;\nSortie: ${getExitDateFormatted()};\nMotifs: ${getMotifsText()}"
} }
fun getNameFormatted(): String = "${profile.firstName} ${profile.lastName}" fun getNameFormatted(): String = "${profile.firstName} ${profile.lastName}"
@ -28,8 +28,8 @@ data class Attestation(
private fun getMotifsText(): String { private fun getMotifsText(): String {
val motifs = StringBuilder() val motifs = StringBuilder()
reasons.forEach { motifs.append(getMotifText(it), "-") } reasons.forEach { motifs.append(getMotifText(it), ", ") }
return motifs.toString().dropLast(1) return motifs.toString().dropLast(2)
} }
private fun getDate(dateTime: Long): String = SimpleDateFormat(PATTERN, Locale.FRANCE).format(Date(dateTime)) private fun getDate(dateTime: Long): String = SimpleDateFormat(PATTERN, Locale.FRANCE).format(Date(dateTime))
@ -37,14 +37,13 @@ data class Attestation(
fun getMotifText(i: Int): String { fun getMotifText(i: Int): String {
return when (i) { return when (i) {
1 -> "travail" 1 -> "travail"
2 -> "achats" 2 -> "sante"
3 -> "sante" 3 -> "famille"
4 -> "famille" 4 -> "handicap"
5 -> "handicap" 5 -> "convocation"
6 -> "sport_animaux" 6 -> "missions"
7 -> "convocation" 7 -> "transits"
8 -> "missions" 8 -> "animaux"
9 -> "enfants"
else -> "Error $i not found" else -> "Error $i not found"
} }
} }

View File

@ -14,6 +14,6 @@ data class Profile(
// var id: Int = CURRENT_PROFILE_ID // var id: Int = CURRENT_PROFILE_ID
override fun toString(): String { override fun toString(): String {
return "Nom: $lastName; Prenom: $firstName; Naissance: $birthday a $birthPlace; Adresse: $address $postalCode $city" return "Nom: $lastName;\nPrenom: $firstName;\nNaissance: $birthday a $birthPlace;\nAdresse: $address $postalCode $city"
} }
} }

View File

@ -61,7 +61,6 @@ class AddViewModel(
val reason6 = MutableLiveData(false) val reason6 = MutableLiveData(false)
val reason7 = MutableLiveData(false) val reason7 = MutableLiveData(false)
val reason8 = MutableLiveData(false) val reason8 = MutableLiveData(false)
val reason9 = MutableLiveData(false)
// endregion // endregion
private val datePattern = "dd/MM/yyyy" private val datePattern = "dd/MM/yyyy"
@ -207,7 +206,6 @@ class AddViewModel(
if (reason6.value!!) reasons.add(6) if (reason6.value!!) reasons.add(6)
if (reason7.value!!) reasons.add(7) if (reason7.value!!) reasons.add(7)
if (reason8.value!!) reasons.add(8) if (reason8.value!!) reasons.add(8)
if (reason9.value!!) reasons.add(9)
return reasons return reasons
} }
@ -234,7 +232,6 @@ class AddViewModel(
|| reason6.value!! || reason6.value!!
|| reason7.value!! || reason7.value!!
|| reason8.value!! || reason8.value!!
|| reason9.value!!
} }
private fun getFormattedDayOrMonth(date: Int): String { private fun getFormattedDayOrMonth(date: Int): String {

View File

@ -20,6 +20,7 @@ class InfoFragment : Fragment() {
): View? { ): View? {
val root = inflater.inflate(R.layout.fragment_info, container, false) val root = inflater.inflate(R.layout.fragment_info, container, false)
root.explication_4.movementMethod = LinkMovementMethod.getInstance()
root.credits_1.movementMethod = LinkMovementMethod.getInstance() root.credits_1.movementMethod = LinkMovementMethod.getInstance()
root.credits_2.movementMethod = LinkMovementMethod.getInstance() root.credits_2.movementMethod = LinkMovementMethod.getInstance()
root.credits_3.movementMethod = LinkMovementMethod.getInstance() root.credits_3.movementMethod = LinkMovementMethod.getInstance()

View File

@ -54,7 +54,7 @@ class PdfUtils private constructor(
private fun addPageWithQrCode(document: PDDocument, attestation: Attestation) { private fun addPageWithQrCode(document: PDDocument, attestation: Attestation) {
val size = 360 val size = 360
val margin = 40f val margin = 25f
// Add QRCode on the first page // Add QRCode on the first page
val page1: PDPage = document.pages.first() val page1: PDPage = document.pages.first()
@ -64,8 +64,8 @@ class PdfUtils private constructor(
page1, page1,
attestation, attestation,
size / 3, size / 3,
page1.mediaBox.upperRightX - margin - size / 3 - 30, page1.mediaBox.upperRightX - margin - size / 3,
99f 25f
) )
// Add QRCode on a new page // Add QRCode on a new page
@ -122,7 +122,7 @@ class PdfUtils private constructor(
private fun setCheckboxFields(acroForm: PDAcroForm, attestation: Attestation) { private fun setCheckboxFields(acroForm: PDAcroForm, attestation: Attestation) {
attestation.reasons.forEach { attestation.reasons.forEach {
(acroForm.getField(attestation.getMotifText(it)) as PDCheckbox).check() (acroForm.getField("distinction Motif $it") as PDCheckbox).check()
} }
} }

View File

@ -264,14 +264,6 @@
android:checked="@={viewModel.reason8}" android:checked="@={viewModel.reason8}"
android:text="@string/reason_8" /> android:text="@string/reason_8" />
<com.google.android.material.checkbox.MaterialCheckBox
android:id="@+id/reason_9"
style="@style/MaterialCheckBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="@={viewModel.reason9}"
android:text="@string/reason_9" />
<com.google.android.material.button.MaterialButton <com.google.android.material.button.MaterialButton
android:id="@+id/generate_attestation" android:id="@+id/generate_attestation"
android:layout_width="match_parent" android:layout_width="match_parent"

View File

@ -22,7 +22,7 @@
<TextView <TextView
android:id="@+id/explication_1" android:id="@+id/explication_1"
android:text="@string/explication_1" android:text="@string/explication_1"
android:layout_marginTop="40dp" android:layout_marginTop="20dp"
style="@style/TextView" style="@style/TextView"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
@ -52,14 +52,6 @@
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/explication_3" /> app:layout_constraintTop_toBottomOf="@+id/explication_3" />
<TextView
android:id="@+id/explication_5"
android:text="@string/explication_5"
style="@style/TextView"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/explication_4" />
<TextView <TextView
android:layout_marginTop="20dp" android:layout_marginTop="20dp"
android:id="@+id/credits_title" android:id="@+id/credits_title"
@ -69,7 +61,7 @@
style="@style/TextViewCredits" style="@style/TextViewCredits"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/explication_5" /> app:layout_constraintTop_toBottomOf="@+id/explication_4" />
<TextView <TextView
android:layout_marginTop="10dp" android:layout_marginTop="10dp"

View File

@ -20,32 +20,30 @@
<string name="postal_code">Code Postal</string> <string name="postal_code">Code Postal</string>
<string name="exit_date">Date de sortie</string> <string name="exit_date">Date de sortie</string>
<string name="exit_hour">Heure de sortie</string> <string name="exit_hour">Heure de sortie</string>
<string name="generate_attestation_button">Générer l\'attestation</string> <string name="generate_attestation_button">Générer lattestation</string>
<!-- Reasons for leaving house --> <!-- Reasons for leaving house -->
<string name="reason">Je certifie que mon déplacement est lié au motif suivant (cocher la case) autorisé en application des mesures générales nécessaires pour faire face à l\'épidémie de Covid19 dans le cadre de l\'état d\'urgence sanitaire :</string> <string name="reason">Je certifie que mon déplacement est lié au(x) motif(s) suivant (cocher la case) autorisé en application des mesures générales nécessaires pour faire face à lépidémie de Covid19 dans le cadre de létat durgence sanitaire :</string>
<string name="reason_1">Déplacements entre le domicile et le lieu d\'exercice de l\'activité professionnelle ou les déplacements professionnels ne pouvant être différés.</string> <string name="reason_1">1. Déplacements entre le domicile et le lieu dexercice de lactivité professionnelle ou le lieu denseignement et de formation, déplacements professionnels ne pouvant être différés.</string>
<string name="reason_2">Déplacements pour effectuer des achats de fournitures nécessaires à l\'activité professionnelle, des achats de première nécessité dans des établissements dont les activités demeurent autorisées (liste sur gouvernement.fr) et les livraisons à domicile.</string> <string name="reason_2">2. Déplacements pour des consultations et soins ne pouvant être assurés à distance et ne pouvant être différés ou pour lachat de produits de santé.</string>
<string name="reason_3">Consultations et soins ne pouvant être assurés à distance et ne pouvant être différés et lachat de médicaments.</string> <string name="reason_3">3. Déplacements pour motif familial impérieux, pour lassistance aux personnes vulnérables ou précaires ou pour la garde denfants.</string>
<string name="reason_4">Déplacements pour motif familial impérieux, pour l\'assistance aux personnes vulnérables et précaires ou la garde d\'enfants.</string> <string name="reason_4">4. Déplacements des personnes en situation de handicap et de leur accompagnant.</string>
<string name="reason_5">Déplacements des personnes en situation de handicap et de leur accompagnant.</string> <string name="reason_5">5. Déplacements pour répondre à une convocation judiciaire ou administrative.</string>
<string name="reason_6">Déplacements brefs, dans la limite d\'une heure quotidienne et dans un rayon maximal d\'un kilomètre autour du domicile, liés soit à l\'activité physique individuelle des personnes, à l\'exclusion de toute pratique sportive collective et de toute proximité avec d\'autres personnes, soit à la promenade avec les seules personnes regroupées dans un même domicile, soit aux besoins des animaux de compagnie.</string> <string name="reason_6">6. Déplacements pour participer à des missions dintérêt général sur demande de lautorité administrative.</string>
<string name="reason_7">Convocation judiciaire ou administrative et rendez-vous dans un service public.</string> <string name="reason_7">7. Déplacements liés à des transits ferroviaires ou aériens pour des déplacements de longues distances.</string>
<string name="reason_8">Participation à des missions d\'intérêt général sur demande de l\'autorité administrative.</string> <string name="reason_8">8. Déplacements brefs, dans un rayon maximal dun kilomètre autour du domicile pour les besoins des animaux de compagnie.</string>
<string name="reason_9">Déplacement pour chercher les enfants à lécoles et à loccasion de leurs activités périscolaires.</string>
<!-- Info Fragment --> <!-- Info Fragment -->
<string name="explication_1">- Merci de n\'utiliser l\'application qu\'en cas de nécessité.</string> <string name="explication_1">- Cette application naura jamais de publicité.</string>
<string name="explication_2">- Cette application n\'aura jamais de publicité.</string> <string name="explication_2">- Toutes les données sont stockées uniquement sur votre téléphone, utilisable hors ligne.</string>
<string name="explication_3">- Toutes les données sont stockées uniquement sur votre téléphone, utilisable hors ligne.</string> <string name="explication_3">- Application non gouvernementale ni officielle, développée par un jeune diplômé.</string>
<string name="explication_4">- Application non gouvernementale ni officielle, développée par un étudiant.</string> <string name="explication_4">- Si vous souhaitez moffrir une bière ou un café, cest <a href="https://buymeacoff.ee/sanchezm/">ici</a> ou vous pouvez me suivre sur <a href="https://www.twitch.tv/mathdieu">twitch</a>.</string>
<string name="explication_5">- J\'ai, moi-même été touché par ce virus, même à 22 ans il m\'a mis KO 2\-3 jours, faites attention à vous et à vos proches.</string> <string name="credits_title">Petit remerciement pour laide apportée au développement de lapplication :</string>
<string name="credits_title">Petit remerciement pour l\'aide apportée au développement de l\'application :</string>
<string name="credits_1">TomRoush: <a href="https://github.com/TomRoush/PdfBox-Android">PdfBox-Android</a></string> <string name="credits_1">TomRoush: <a href="https://github.com/TomRoush/PdfBox-Android">PdfBox-Android</a></string>
<string name="credits_2">Barteksc: <a href="https://github.com/barteksc/AndroidPdfViewer">AndroidPdfViewer</a></string> <string name="credits_2">Barteksc: <a href="https://github.com/barteksc/AndroidPdfViewer">AndroidPdfViewer</a></string>
<string name="credits_3">Journeyapps: <a href="https://github.com/journeyapps/zxing-android-embedded">zxing-android-embedded</a></string> <string name="credits_3">Journeyapps: <a href="https://github.com/journeyapps/zxing-android-embedded">zxing-android-embedded</a></string>
<string name="credits_4">Ainsi que toutes les libraries fourni par google</string> <string name="credits_4">Ainsi que toutes les libraries fourni par google</string>
<string name="credits_5">Merci à <a href="https://www.linkedin.com/in/julienfabbro/">Fabbro J.</a> pour l\'aide sur l\'orthographe</string> <string name="credits_5">Merci à <a href="https://www.linkedin.com/in/julienfabbro/">Fabbro J.</a> pour laide sur lorthographe</string>
<string name="develop_by">"Développée avec ❤ par <string name="develop_by">"Développée avec ❤ par
<a href="https://www.sanchezm.fr/">Mathieu Sanchez</a>"</string> <a href="https://www.sanchezm.fr/">Mathieu Sanchez</a>"</string>
<string name="version_number">Version :</string> <string name="version_number">Version :</string>
@ -58,6 +56,6 @@
<!-- QR Fragment --> <!-- QR Fragment -->
<string name="generating_attestation">Création de votre attesation</string> <string name="generating_attestation">Création de votre attesation</string>
<string name="qrcode_attestation">QrCode Attestation</string> <string name="qrcode_attestation">QrCode Attestation</string>
<string name="display_attestation">Afficher l\'attestation</string> <string name="display_attestation">Afficher lattestation</string>
<string name="delete_attestation">Supprimer l\'attestation</string> <string name="delete_attestation">Supprimer lattestation</string>
</resources> </resources>

View File

@ -37,9 +37,9 @@
<style name="TextView" parent="Widget.MaterialComponents.TextView"> <style name="TextView" parent="Widget.MaterialComponents.TextView">
<item name="android:layout_width">match_parent</item> <item name="android:layout_width">match_parent</item>
<item name="android:layout_height">wrap_content</item> <item name="android:layout_height">wrap_content</item>
<item name="android:layout_marginTop">@dimen/margin15dp</item> <item name="android:layout_marginTop">@dimen/margin5dp</item>
<item name="android:textColor">@color/colorPrimary</item> <item name="android:textColor">@color/colorPrimary</item>
<item name="android:textSize">@dimen/textSize18sp</item> <item name="android:textSize">@dimen/textSize14sp</item>
</style> </style>
<style name="TextViewCredits" parent="TextView"> <style name="TextViewCredits" parent="TextView">

View File

@ -2,7 +2,7 @@
buildscript { buildscript {
ext { ext {
kotlin_version = '1.4.10' kotlin_version = '1.4.21'
db_version = '1' db_version = '1'
} }
@ -13,7 +13,7 @@ buildscript {
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:4.1.0' classpath 'com.android.tools.build:gradle:4.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong