ajout d'une version test

This commit is contained in:
Maxime
2025-03-26 00:45:12 +01:00
parent ae19f6045b
commit 8fe0120e9c
44 changed files with 1698 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.flow_free">
<application
android:allowBackup="true">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".GameActivity"/>
<activity android:name=".SettingsActivity"/>
</application>
</manifest>