2026-01-31 15:23:18 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
package="com.sicherhaven.eventify">
|
|
|
|
|
|
|
|
|
|
<!-- Storage / media read permissions -->
|
|
|
|
|
<!-- Legacy permission for Android <= 12 -->
|
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2026-03-11 20:13:13 +05:30
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
2026-01-31 15:23:18 +05:30
|
|
|
|
|
|
|
|
<application
|
|
|
|
|
android:label="Eventify"
|
|
|
|
|
android:name="${applicationName}"
|
|
|
|
|
android:icon="@mipmap/ic_launcher">
|
|
|
|
|
|
2026-03-11 20:13:13 +05:30
|
|
|
<!-- Google Maps API Key (replace placeholder with your real key) -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.google.android.geo.API_KEY"
|
|
|
|
|
android:value="YOUR_GOOGLE_MAPS_API_KEY"/>
|
|
|
|
|
|
2026-04-19 21:44:57 +05:30
|
|
|
<!-- Splash video plays first, then launches MainActivity -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".SplashActivity"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
|
|
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2026-01-31 15:23:18 +05:30
|
|
|
<activity
|
|
|
|
|
android:name=".MainActivity"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:taskAffinity=""
|
|
|
|
|
android:theme="@style/LaunchTheme"
|
|
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="io.flutter.embedding.android.NormalTheme"
|
|
|
|
|
android:resource="@style/NormalTheme" />
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<!-- Don't delete the meta-data below. Used by Flutter tool. -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="flutterEmbedding"
|
|
|
|
|
android:value="2" />
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
<queries>
|
|
|
|
|
<intent>
|
|
|
|
|
<action android:name="android.intent.action.PROCESS_TEXT" />
|
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
|
</intent>
|
2026-03-11 20:13:13 +05:30
|
|
|
<intent>
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<data android:scheme="https" />
|
|
|
|
|
</intent>
|
2026-01-31 15:23:18 +05:30
|
|
|
</queries>
|
|
|
|
|
</manifest>
|