forked from bepass-org/oblivion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Mark Pashmfouroush <[email protected]>
- Loading branch information
Showing
45 changed files
with
1,360 additions
and
1,391 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,86 +1,86 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools"> | ||
xmlns:tools="http://schemas.android.com/tools"> | ||
|
||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> | ||
|
||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
<uses-permission | ||
android:name="android.permission.FOREGROUND_SERVICE_SYSTEM_EXEMPTED" | ||
android:minSdkVersion="34" /> | ||
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" /> | ||
<uses-permission android:name="android.permission.USE_EXACT_ALARM" /> | ||
<application | ||
android:allowBackup="true" | ||
android:dataExtractionRules="@xml/data_extraction_rules" | ||
android:fullBackupContent="@xml/backup_rules" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:roundIcon="@mipmap/ic_launcher_round" | ||
android:supportsRtl="false" | ||
tools:replace="android:supportsRtl" | ||
android:screenOrientation="portrait" | ||
android:theme="@style/Theme.OblivionUI" | ||
tools:targetApi="31"> | ||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
<uses-permission | ||
android:name="android.permission.FOREGROUND_SERVICE_SYSTEM_EXEMPTED" | ||
android:minSdkVersion="34" /> | ||
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" /> | ||
<uses-permission android:name="android.permission.USE_EXACT_ALARM" /> | ||
<application | ||
android:allowBackup="true" | ||
android:dataExtractionRules="@xml/data_extraction_rules" | ||
android:fullBackupContent="@xml/backup_rules" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:roundIcon="@mipmap/ic_launcher_round" | ||
android:supportsRtl="false" | ||
tools:replace="android:supportsRtl" | ||
android:screenOrientation="portrait" | ||
android:theme="@style/Theme.OblivionUI" | ||
tools:targetApi="31"> | ||
|
||
<service | ||
android:name=".OblivionVpnService" | ||
android:enabled="true" | ||
android:exported="false" | ||
android:permission="android.permission.BIND_VPN_SERVICE" | ||
android:foregroundServiceType="systemExempted" | ||
android:process=":vpn_background"> | ||
<intent-filter> | ||
<action android:name="android.net.VpnService" /> | ||
</intent-filter> | ||
<service | ||
android:name=".OblivionVpnService" | ||
android:enabled="true" | ||
android:exported="false" | ||
android:permission="android.permission.BIND_VPN_SERVICE" | ||
android:foregroundServiceType="systemExempted" | ||
android:process=":vpn_background"> | ||
<intent-filter> | ||
<action android:name="android.net.VpnService" /> | ||
</intent-filter> | ||
|
||
<meta-data | ||
android:name="android.net.VpnService.SUPPORTS_ALWAYS_ON" | ||
android:value="true" /> | ||
</service> | ||
<meta-data | ||
android:name="android.net.VpnService.SUPPORTS_ALWAYS_ON" | ||
android:value="true" /> | ||
</service> | ||
|
||
<service | ||
android:name=".QuickStartService" | ||
android:exported="true" | ||
android:label="Oblivion" | ||
android:icon="@drawable/vpn_off" | ||
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"> | ||
<meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE" | ||
android:value="true" /> | ||
<intent-filter> | ||
<action android:name="android.service.quicksettings.action.QS_TILE" /> | ||
</intent-filter> | ||
<service | ||
android:name=".QuickStartService" | ||
android:exported="true" | ||
android:label="Oblivion" | ||
android:icon="@drawable/vpn_off" | ||
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"> | ||
<meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE" | ||
android:value="true" /> | ||
<intent-filter> | ||
<action android:name="android.service.quicksettings.action.QS_TILE" /> | ||
</intent-filter> | ||
|
||
</service> | ||
|
||
<activity | ||
android:name="org.bepass.oblivion.MainActivity" | ||
android:exported="true" | ||
android:label="@string/app_name" | ||
android:theme="@style/Theme.OblivionUI"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<activity | ||
android:name="org.bepass.oblivion.MainActivity" | ||
android:exported="true" | ||
android:label="@string/app_name" | ||
android:theme="@style/Theme.OblivionUI"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<activity | ||
android:name="org.bepass.oblivion.InfoActivity" | ||
android:exported="false" /> | ||
<activity | ||
android:name="org.bepass.oblivion.InfoActivity" | ||
android:exported="false" /> | ||
|
||
<activity | ||
android:name="org.bepass.oblivion.BugActivity" | ||
android:exported="false" /> | ||
<activity | ||
android:name="org.bepass.oblivion.BugActivity" | ||
android:exported="false" /> | ||
|
||
<activity | ||
android:name="org.bepass.oblivion.SettingsActivity" | ||
android:exported="false" | ||
android:windowSoftInputMode="stateAlwaysHidden" /> | ||
<activity | ||
android:name="org.bepass.oblivion.SettingsActivity" | ||
android:exported="false" | ||
android:windowSoftInputMode="stateAlwaysHidden" /> | ||
|
||
</application> | ||
</application> | ||
|
||
</manifest> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
package org.bepass.oblivion; | ||
|
||
public enum ConnectionState { | ||
CONNECTING, | ||
CONNECTED, | ||
DISCONNECTED | ||
CONNECTING, CONNECTED, DISCONNECTED | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.