diff --git a/app/.idea/.gitignore b/app/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/app/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/app/.idea/gradle.xml b/app/.idea/gradle.xml new file mode 100644 index 0000000..b4ab341 --- /dev/null +++ b/app/.idea/gradle.xml @@ -0,0 +1,13 @@ + + + + + + \ No newline at end of file diff --git a/app/.idea/misc.xml b/app/.idea/misc.xml new file mode 100644 index 0000000..2671b80 --- /dev/null +++ b/app/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/app/.idea/modules.xml b/app/.idea/modules.xml new file mode 100644 index 0000000..e1f9e1c --- /dev/null +++ b/app/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/app/.idea/modules/app.iml b/app/.idea/modules/app.iml new file mode 100644 index 0000000..5b2d407 --- /dev/null +++ b/app/.idea/modules/app.iml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/.idea/vcs.xml b/app/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/app/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/local.properties b/app/local.properties new file mode 100644 index 0000000..986bf72 --- /dev/null +++ b/app/local.properties @@ -0,0 +1,8 @@ +## This file must *NOT* be checked into Version Control Systems, +# as it contains information specific to your local configuration. +# +# Location of the SDK. This is only used by Gradle. +# For customization when using a Version Control System, please read the +# header note. +#Mon Mar 20 10:22:46 CET 2023 +sdk.dir=/opt/android-sdk diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 3b848c9..f2ee054 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -11,6 +11,9 @@ android:supportsRtl="true" android:theme="@style/Theme.MasterMind" tools:targetApi="31"> + diff --git a/app/src/main/java/com/example/mastermind/vue/mastermind/setting/SettingActivity.java b/app/src/main/java/com/example/mastermind/vue/mastermind/setting/SettingActivity.java new file mode 100644 index 0000000..71bf33a --- /dev/null +++ b/app/src/main/java/com/example/mastermind/vue/mastermind/setting/SettingActivity.java @@ -0,0 +1,14 @@ +package com.example.mastermind.vue.mastermind.setting; + +import androidx.appcompat.app.AppCompatActivity; + +import android.os.Bundle; + +public class SettingActivity extends AppCompatActivity { + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_setting); + } +} \ No newline at end of file diff --git a/app/src/main/res/layout/activity_menu.xml b/app/src/main/res/layout/activity_menu.xml index 0c7a6d4..0a7853e 100644 --- a/app/src/main/res/layout/activity_menu.xml +++ b/app/src/main/res/layout/activity_menu.xml @@ -21,7 +21,7 @@ android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:textAlignment="center" - android:layout_above="@+id/unJoeur" + android:layout_above="@+id/unJoueur" android:layout_alignParentTop="true" android:gravity="center" android:editable="false" @@ -29,30 +29,30 @@