2023-08-19 22:27:23 +03:30
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2023-07-06 17:18:41 +03:30
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2023-08-19 22:27:23 +03:30
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
|
|
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2023-07-06 17:18:41 +03:30
|
|
|
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
2023-08-19 22:27:23 +03:30
|
|
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
|
|
|
|
|
|
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.QUERY_ALL_PACKAGES"
|
|
|
|
|
tools:ignore="QueryAllPackagesPermission" />
|
|
|
|
|
|
2023-07-06 17:18:41 +03:30
|
|
|
<application
|
2023-08-19 22:27:23 +03:30
|
|
|
android:name=".Application"
|
2023-08-21 11:30:01 +00:00
|
|
|
android:label="Hiddify Next"
|
2023-07-06 17:18:41 +03:30
|
|
|
android:icon="@mipmap/ic_launcher"
|
2023-08-21 14:18:08 +00:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_rounded"
|
2023-08-19 22:27:23 +03:30
|
|
|
tools:targetApi="31">
|
2023-07-06 17:18:41 +03:30
|
|
|
<activity
|
|
|
|
|
android:name=".MainActivity"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:theme="@style/LaunchTheme"
|
|
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
|
<!-- Specifies an Android theme to apply to this Activity as soon as
|
|
|
|
|
the Android process has started. This theme is visible to the user
|
|
|
|
|
while the Flutter UI initializes. After that, this theme continues
|
|
|
|
|
to determine the Window background behind the Flutter UI. -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="io.flutter.embedding.android.NormalTheme"
|
|
|
|
|
android:resource="@style/NormalTheme"
|
|
|
|
|
/>
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2023-08-27 10:49:34 +03:30
|
|
|
<data android:scheme="sing-box"/>
|
|
|
|
|
<data android:host="import-remote-profile"/>
|
|
|
|
|
<data android:scheme="clash"/>
|
|
|
|
|
<data android:host="install-config"/>
|
|
|
|
|
<data android:scheme="clashmeta"/>
|
|
|
|
|
<data android:scheme="hiddify"/>
|
|
|
|
|
<data android:host="install-sub"/>
|
2023-07-06 17:18:41 +03:30
|
|
|
</intent-filter>
|
2023-09-05 19:03:11 +03:30
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES" />
|
|
|
|
|
</intent-filter>
|
2023-07-06 17:18:41 +03:30
|
|
|
</activity>
|
2023-09-05 19:03:11 +03:30
|
|
|
<service
|
|
|
|
|
android:name=".bg.TileService"
|
|
|
|
|
android:directBootAware="true"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:icon="@drawable/ic_stat_logo"
|
|
|
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
|
|
|
|
|
tools:targetApi="n">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.service.quicksettings.TOGGLEABLE_TILE"
|
|
|
|
|
android:value="true" />
|
|
|
|
|
</service>
|
2023-08-19 22:27:23 +03:30
|
|
|
<service
|
|
|
|
|
android:name=".bg.VPNService"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:permission="android.permission.BIND_VPN_SERVICE">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.net.VpnService" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</service>
|
2023-07-06 17:18:41 +03:30
|
|
|
<!-- Don't delete the meta-data below.
|
|
|
|
|
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="flutterEmbedding"
|
|
|
|
|
android:value="2" />
|
|
|
|
|
</application>
|
|
|
|
|
</manifest>
|