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
|
|
|
|
|
|
|
|
<!-- Main Activity -->
|
2024-10-07 22:47:30 -04:00
|
|
|
<activity
|
2025-04-14 22:37:20 -04:00
|
|
|
android:name=".view.MainActivity"
|
2024-10-07 22:47:30 -04:00
|
|
|
android:exported="true">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
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>
|
|
|
|
|
|
|
|
|
|
<!-- 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>
|
|
|
|
|
|
|
|
|
|
<!-- Upload History Activity -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".view.UploadHistoryActivity"
|
|
|
|
|
android:label="Upload History"
|
|
|
|
|
android:parentActivityName=".view.MainActivity"
|
|
|
|
|
android:exported="false">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
|
android:value=".view.MainActivity" />
|
2024-10-07 22:47:30 -04:00
|
|
|
</activity>
|
2025-04-15 09:52:20 -04:00
|
|
|
|
|
|
|
|
<!-- Settings Activity -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".view.SettingsActivity"
|
|
|
|
|
android:label="Settings"
|
|
|
|
|
android:parentActivityName=".view.MainActivity"
|
|
|
|
|
android:exported="false">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
|
android:value=".view.MainActivity" />
|
|
|
|
|
</activity>
|
2025-04-15 09:57:51 -04:00
|
|
|
|
|
|
|
|
<!-- Welcome Activity -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".view.WelcomeActivity"
|
|
|
|
|
android:label="Welcome"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
|
|
|
|
|
|
|
|
|
|
<!-- Server Setup Activity -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".view.ServerSetupActivity"
|
|
|
|
|
android:label="Server Setup"
|
|
|
|
|
android:exported="false">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
|
android:value=".view.WelcomeActivity" />
|
|
|
|
|
</activity>
|
2024-10-07 22:47:30 -04: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>
|