2024-10-07 22:47:30 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
package="com.mattintech.simplelogupload">
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2025-04-16 21:41:07 -04:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2024-10-07 22:47:30 -04:00
|
|
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
2025-04-14 22:37:20 -04:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
|
2025-12-27 14:49:01 -05:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
2024-10-07 22:47:30 -04:00
|
|
|
|
|
|
|
|
<application
|
2025-04-15 20:58:51 -04:00
|
|
|
android:allowBackup="false"
|
2025-04-15 12:36:18 -04:00
|
|
|
android:icon="@drawable/ic_app_icon"
|
2024-10-07 22:47:30 -04:00
|
|
|
android:label="SimpleLogUpload"
|
|
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
|
|
|
android:supportsRtl="true"
|
2025-04-14 21:37:18 -04:00
|
|
|
android:largeHeap="true"
|
|
|
|
|
android:requestLegacyExternalStorage="true"
|
2025-04-15 20:58:51 -04:00
|
|
|
android:usesCleartextTraffic="false"
|
2025-04-14 21:37:18 -04:00
|
|
|
android:theme="@style/Theme.AppCompat.DayNight.DarkActionBar">
|
2025-04-14 22:37:20 -04:00
|
|
|
|
2025-12-27 18:47:29 -05:00
|
|
|
<!-- NEW: Compose Main Activity (LAUNCHER) -->
|
2024-10-07 22:47:30 -04:00
|
|
|
<activity
|
2025-12-27 18:47:29 -05:00
|
|
|
android:name=".ComposeMainActivity"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
|
|
|
|
|
|
|
|
|
|
<!-- LAUNCHER - App starts here -->
|
2024-10-07 22:47:30 -04:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
2025-12-27 18:47:29 -05:00
|
|
|
|
2025-04-14 22:37:20 -04:00
|
|
|
<!-- Share intent filter for files -->
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
|
</intent-filter>
|
2025-12-27 18:47:29 -05:00
|
|
|
|
2025-04-14 22:37:20 -04:00
|
|
|
<!-- Share intent filter for multiple files -->
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2025-12-27 18:47:29 -05:00
|
|
|
|
2025-04-14 22:37:20 -04:00
|
|
|
<!-- File Upload Foreground Service -->
|
2024-10-07 22:47:30 -04:00
|
|
|
<service
|
2025-04-14 22:37:20 -04:00
|
|
|
android:name=".service.FileUploadForegroundService"
|
|
|
|
|
android:enabled="true"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:foregroundServiceType="dataSync" />
|
2024-10-07 22:47:30 -04:00
|
|
|
</application>
|
|
|
|
|
</manifest>
|