2025-05-12 19:18:26 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.READ_EXTERNAL_STORAGE"
|
|
|
|
|
android:maxSdkVersion="32" />
|
|
|
|
|
|
|
|
|
|
<application
|
|
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
|
|
|
android:fullBackupContent="@xml/backup_rules"
|
2025-05-20 22:31:16 +00:00
|
|
|
android:icon="@drawable/logo_location"
|
2025-05-12 19:18:26 +00:00
|
|
|
android:label="@string/app_name"
|
2025-05-20 22:31:16 +00:00
|
|
|
android:roundIcon="@drawable/logo_location"
|
2025-05-12 19:18:26 +00:00
|
|
|
android:supportsRtl="true"
|
|
|
|
|
android:theme="@style/Theme.AcLoc"
|
|
|
|
|
android:usesCleartextTraffic="true"
|
|
|
|
|
tools:targetApi="31">
|
|
|
|
|
<activity
|
2025-05-15 19:07:43 +00:00
|
|
|
android:name="com.example.acloc.activity.ManageRolesActivity"
|
2025-05-12 19:18:26 +00:00
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
2025-05-15 19:07:43 +00:00
|
|
|
android:name="com.example.acloc.activity.AddNewPlaceActivity"
|
2025-05-12 19:18:26 +00:00
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
2025-05-15 19:07:43 +00:00
|
|
|
android:name="com.example.acloc.activity.PlaceDetailActivity"
|
2025-05-12 19:18:26 +00:00
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
2025-05-15 19:07:43 +00:00
|
|
|
android:name="com.example.acloc.activity.AddReportActivity"
|
2025-05-12 19:18:26 +00:00
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
2025-05-15 19:07:43 +00:00
|
|
|
android:name="com.example.acloc.activity.LoginActivity"
|
2025-05-12 19:18:26 +00:00
|
|
|
android:exported="true"
|
|
|
|
|
android:screenOrientation="portrait" >
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
<activity
|
2025-05-15 19:07:43 +00:00
|
|
|
android:name="com.example.acloc.activity.RegisterActivity"
|
2025-05-12 19:18:26 +00:00
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
2025-05-15 19:07:43 +00:00
|
|
|
android:name="com.example.acloc.MainActivity"
|
2025-05-12 19:18:26 +00:00
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.google.android.geo.API_KEY"
|
|
|
|
|
android:value="@string/google_maps_api_key" />
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|