From d45e6b6be4606d546080b2cdd4cd45ea9ee78f78 Mon Sep 17 00:00:00 2001 From: Paul Cancel <paul.cancel.etu@univ-lille.fr> Date: Thu, 11 Apr 2024 13:44:55 +0200 Subject: [PATCH] Q1 : Affichage des taches dans le LogCat --- .idea/.name | 1 + .idea/deploymentTargetDropDown.xml | 0 .idea/gradle.xml | 1 + .idea/misc.xml | 1 - .idea/vcs.xml | 6 ++++++ app/src/main/java/fr/iutlille/ctp2024/TacheApplication.java | 3 +++ 6 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .idea/.name mode change 100755 => 100644 .idea/deploymentTargetDropDown.xml mode change 100755 => 100644 .idea/gradle.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..34e5a1a --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +CTP2024 \ No newline at end of file diff --git a/.idea/deploymentTargetDropDown.xml b/.idea/deploymentTargetDropDown.xml old mode 100755 new mode 100644 diff --git a/.idea/gradle.xml b/.idea/gradle.xml old mode 100755 new mode 100644 index 32522c1..0897082 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <project version="4"> + <component name="GradleMigrationSettings" migrationVersion="1" /> <component name="GradleSettings"> <option name="linkedExternalProjectsSettings"> <GradleProjectSettings> diff --git a/.idea/misc.xml b/.idea/misc.xml index 0ad17cb..8978d23 100755 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,4 +1,3 @@ -<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="ExternalStorageConfigurationManager" enabled="true" /> <component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="jbr-17" project-jdk-type="JavaSDK"> diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="VcsDirectoryMappings"> + <mapping directory="" vcs="Git" /> + </component> +</project> \ No newline at end of file diff --git a/app/src/main/java/fr/iutlille/ctp2024/TacheApplication.java b/app/src/main/java/fr/iutlille/ctp2024/TacheApplication.java index d73ac49..d0a4a4b 100755 --- a/app/src/main/java/fr/iutlille/ctp2024/TacheApplication.java +++ b/app/src/main/java/fr/iutlille/ctp2024/TacheApplication.java @@ -29,6 +29,9 @@ public class TacheApplication extends Application { super.onCreate(); try { initTaches(); + for(Tache t : this.lesTaches){ + Log.d("Tache", t.toString()); + } } catch (JSONException e) { Log.e(LOG_TAG, "Erreur de lecture du fichier des taches..."); e.printStackTrace(); -- GitLab