From 02fb8812741e386df6e12356c05f06ad7505b410 Mon Sep 17 00:00:00 2001 From: Azerothwav Date: Mon, 20 Jan 2025 16:15:20 +0100 Subject: [PATCH] feat: seconde partie faite --- app/build.gradle.kts | 2 +- app/src/main/AndroidManifest.xml | 7 +- .../main/java/com/example/depanntout/Home.kt | 30 +++++++ .../com/example/depanntout/Importation.kt | 86 +++++++++++++++++++ .../com/example/depanntout/ListeClients.kt | 19 +++- .../example/depanntout/ListeInterventions.kt | 19 +++- .../example/depanntout/bdd/InterventionDAO.kt | 2 + .../com/example/depanntout/createClient.kt | 29 +++++++ .../example/depanntout/createIntervention.kt | 29 +++++++ app/src/main/res/layout/activity_home.xml | 10 +++ .../res/layout/activity_liste_clients.xml | 12 ++- .../layout/activity_liste_interventions.xml | 12 ++- 12 files changed, 247 insertions(+), 10 deletions(-) create mode 100644 app/src/main/java/com/example/depanntout/Importation.kt diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 28af404..ede1191 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -36,7 +36,6 @@ android { } dependencies { - implementation(libs.androidx.core.ktx) implementation(libs.androidx.appcompat) implementation(libs.material) @@ -45,4 +44,5 @@ dependencies { testImplementation(libs.junit) androidTestImplementation(libs.androidx.junit) androidTestImplementation(libs.androidx.espresso.core) + implementation("com.android.volley:volley:1.2.1") } \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 15cbb63..edd4bfe 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -2,6 +2,9 @@ + + + + tools:targetApi="31" + android:usesCleartextTraffic="true" + > diff --git a/app/src/main/java/com/example/depanntout/Home.kt b/app/src/main/java/com/example/depanntout/Home.kt index 583fecf..27ade39 100644 --- a/app/src/main/java/com/example/depanntout/Home.kt +++ b/app/src/main/java/com/example/depanntout/Home.kt @@ -7,6 +7,9 @@ import androidx.activity.enableEdgeToEdge import androidx.appcompat.app.AppCompatActivity import androidx.core.view.ViewCompat import androidx.core.view.WindowInsetsCompat +import com.android.volley.toolbox.JsonObjectRequest +import com.android.volley.toolbox.Volley +import org.json.JSONObject class Home : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { @@ -30,5 +33,32 @@ class Home : AppCompatActivity() { val intent = Intent(this, ListeInterventions::class.java) startActivity(intent) } + + val buttonImport = findViewById