diff --git a/app/build.gradle b/app/build.gradle
index bdaba4b..7822f06 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -5,12 +5,12 @@ plugins {
android {
namespace 'iut.android.pierrepierre'
- compileSdk 32
+ compileSdk 33
defaultConfig {
applicationId "iut.android.pierrepierre"
minSdk 19
- targetSdk 32
+ targetSdk 33
versionCode 1
versionName "1.0"
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index f812661..7d66e7f 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -11,6 +11,13 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.PierrePierre"
- tools:targetApi="31" />
-
+ tools:targetApi="31">
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/java/iut/android/pierrepierre/MainActivity.kt b/app/src/main/java/iut/android/pierrepierre/MainActivity.kt
new file mode 100644
index 0000000..741fb65
--- /dev/null
+++ b/app/src/main/java/iut/android/pierrepierre/MainActivity.kt
@@ -0,0 +1,13 @@
+package iut.android.pierrepierre
+
+import android.os.Bundle
+import android.os.PersistableBundle
+import androidx.appcompat.app.AppCompatActivity
+
+class MainActivity : AppCompatActivity() {
+
+ override fun onCreate(savedInstanceState: Bundle?, persistentState: PersistableBundle?) {
+ super.onCreate(savedInstanceState, persistentState)
+ setContentView(R.layout.main_activity)
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/res/layout/main_activity.xml b/app/src/main/res/layout/main_activity.xml
new file mode 100644
index 0000000..77d9ef6
--- /dev/null
+++ b/app/src/main/res/layout/main_activity.xml
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file