├── .circleci └── config.yml ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── detekt.yml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── mobile ├── .gitignore ├── build.gradle.kts ├── google-services.json ├── lint.xml ├── proguard-rules.pro ├── schemas │ └── be.mygod.vpnhotspot.room.AppDatabase │ │ ├── 1.json │ │ └── 2.json └── src │ ├── androidTest │ └── java │ │ └── be │ │ └── mygod │ │ └── vpnhotspot │ │ └── room │ │ └── MigrationTest.kt │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── CMakeLists.txt │ └── root.cpp │ ├── ic_launcher-web.png │ ├── java │ └── be │ │ └── mygod │ │ └── vpnhotspot │ │ ├── AboutLibrariesActivity.kt │ │ ├── AlertDialogFragment.kt │ │ ├── App.kt │ │ ├── BootReceiver.kt │ │ ├── IpNeighbourMonitoringService.kt │ │ ├── LocalOnlyHotspotService.kt │ │ ├── MainActivity.kt │ │ ├── RepeaterService.kt │ │ ├── RoutingManager.kt │ │ ├── ServiceNotification.kt │ │ ├── SettingsPreferenceFragment.kt │ │ ├── StaticIpSetter.kt │ │ ├── TetheringService.kt │ │ ├── client │ │ ├── Client.kt │ │ ├── ClientAddressInfo.kt │ │ ├── ClientViewModel.kt │ │ ├── ClientsFragment.kt │ │ └── MacLookup.kt │ │ ├── manage │ │ ├── BluetoothTethering.kt │ │ ├── Data.kt │ │ ├── InterfaceManager.kt │ │ ├── IpNeighbourMonitoringTileService.kt │ │ ├── LocalOnlyHotspotManager.kt │ │ ├── LocalOnlyHotspotTileService.kt │ │ ├── ManageBar.kt │ │ ├── Manager.kt │ │ ├── RepeaterManager.kt │ │ ├── RepeaterTileService.kt │ │ ├── StaticIpManager.kt │ │ ├── TetherManager.kt │ │ ├── TetheringFragment.kt │ │ └── TetheringTileService.kt │ │ ├── net │ │ ├── DhcpWorkaround.kt │ │ ├── InetAddressComparator.kt │ │ ├── IpNeighbour.kt │ │ ├── MacAddressCompat.kt │ │ ├── RemoveUidInterfaceRuleCommand.kt │ │ ├── Routing.kt │ │ ├── TetherOffloadManager.kt │ │ ├── TetherType.kt │ │ ├── TetheringManagerCompat.kt │ │ ├── VpnFirewallManager.kt │ │ ├── dns │ │ │ ├── DnsForwarder.kt │ │ │ ├── DnsResolverCompat.kt │ │ │ └── VpnProtectedSelectorManager.kt │ │ ├── monitor │ │ │ ├── DefaultNetworkMonitor.kt │ │ │ ├── FallbackUpstreamMonitor.kt │ │ │ ├── InterfaceMonitor.kt │ │ │ ├── IpMonitor.kt │ │ │ ├── IpNeighbourMonitor.kt │ │ │ ├── TetherTimeoutMonitor.kt │ │ │ ├── TrafficRecorder.kt │ │ │ ├── UpstreamMonitor.kt │ │ │ └── VpnMonitor.kt │ │ └── wifi │ │ │ ├── P2pSupplicantConfiguration.kt │ │ │ ├── SoftApCapability.kt │ │ │ ├── SoftApConfigurationCompat.kt │ │ │ ├── SoftApInfo.kt │ │ │ ├── VendorElements.kt │ │ │ ├── WifiApDialogFragment.kt │ │ │ ├── WifiApManager.kt │ │ │ ├── WifiClient.kt │ │ │ ├── WifiDoubleLock.kt │ │ │ ├── WifiP2pManagerHelper.kt │ │ │ └── WifiSsidCompat.kt │ │ ├── preference │ │ ├── AutoCompleteNetworkPreferenceDialogFragment.kt │ │ ├── SharedPreferenceDataStore.kt │ │ ├── SummaryFallbackProvider.kt │ │ └── UpstreamsPreference.kt │ │ ├── room │ │ ├── AppDatabase.kt │ │ ├── ClientRecord.kt │ │ ├── Converters.kt │ │ └── TrafficRecord.kt │ │ ├── root │ │ ├── Jni.kt │ │ ├── LocalOnlyHotspotCallbacks.kt │ │ ├── MiscCommands.kt │ │ ├── RepeaterCommands.kt │ │ ├── RootManager.kt │ │ ├── RoutingCommands.kt │ │ ├── TetheringCommands.kt │ │ └── WifiApCommands.kt │ │ ├── tasker │ │ ├── StateAction.kt │ │ ├── TaskerEvents.kt │ │ ├── TaskerPermissionManager.kt │ │ ├── TetheringActions.kt │ │ └── TetheringState.kt │ │ ├── util │ │ ├── ConstantLookup.kt │ │ ├── CustomTabsUrlSpan.kt │ │ ├── DeviceStorageApp.kt │ │ ├── Events.kt │ │ ├── KillableTileService.kt │ │ ├── QRCodeDialog.kt │ │ ├── RangeInput.kt │ │ ├── RootSession.kt │ │ ├── SelfDismissActivity.kt │ │ ├── ServiceForegroundConnector.kt │ │ ├── Services.kt │ │ ├── UnblockCentral.kt │ │ └── Utils.kt │ │ └── widget │ │ ├── AlwaysAutoCompleteEditText.kt │ │ ├── AutoCollapseTextView.kt │ │ ├── LinkTextView.kt │ │ └── SmartSnackbar.kt │ └── res │ ├── drawable │ ├── ic_action_autorenew.xml │ ├── ic_action_bug_report.xml │ ├── ic_action_build.xml │ ├── ic_action_card_giftcard.xml │ ├── ic_action_code.xml │ ├── ic_action_perm_scan_wifi.xml │ ├── ic_action_settings.xml │ ├── ic_action_settings_backup_restore.xml │ ├── ic_action_settings_ethernet.xml │ ├── ic_action_settings_input_antenna.xml │ ├── ic_action_settings_input_component.xml │ ├── ic_action_wifi_protected_setup.xml │ ├── ic_alert_warning.xml │ ├── ic_av_closed_caption.xml │ ├── ic_av_closed_caption_off.xml │ ├── ic_content_add.xml │ ├── ic_content_file_copy.xml │ ├── ic_content_inbox.xml │ ├── ic_content_push_pin.xml │ ├── ic_deployed_code.xml │ ├── ic_device_battery_charging_full.xml │ ├── ic_device_bluetooth.xml │ ├── ic_device_devices.xml │ ├── ic_device_network_wifi.xml │ ├── ic_device_usb.xml │ ├── ic_device_wifi_lock.xml │ ├── ic_device_wifi_tethering.xml │ ├── ic_hardware_device_hub.xml │ ├── ic_image_flash_on.xml │ ├── ic_image_looks_6.xml │ ├── ic_image_remove_red_eye.xml │ ├── ic_launcher_background.xml │ ├── ic_launcher_foreground.xml │ ├── ic_launcher_monochrome.xml │ ├── ic_quick_settings_tile_on.xml │ ├── ic_settings_qrcode.xml │ ├── ic_social_people.xml │ ├── ic_toggle_star.xml │ └── toggle_hex.xml │ ├── layout │ ├── activity_main.xml │ ├── dialog_nickname.xml │ ├── dialog_static_ip.xml │ ├── dialog_wifi_ap.xml │ ├── dialog_wps.xml │ ├── fragment_clients.xml │ ├── fragment_tethering.xml │ ├── listitem_client.xml │ ├── listitem_interface.xml │ ├── listitem_manage.xml │ ├── listitem_repeater.xml │ ├── listitem_static_ip.xml │ ├── preference_material.xml │ ├── preference_widget_edittext_autocomplete.xml │ └── preference_widget_material_switch.xml │ ├── menu │ ├── navigation.xml │ ├── popup_client.xml │ ├── toolbar_configuration.xml │ └── toolbar_tethering.xml │ ├── mipmap │ ├── banner.xml │ └── ic_launcher.xml │ ├── values-es │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-night │ ├── bools.xml │ └── colors.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-v29 │ ├── arrays.xml │ └── colors.xml │ ├── values-v30 │ └── bools.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values │ ├── arrays.xml │ ├── bools.xml │ ├── colors.xml │ ├── dimen.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ ├── data_extraction_rules.xml │ ├── full_backup_content.xml │ ├── locales_config.xml │ ├── log_paths.xml │ └── pref_settings.xml └── settings.gradle.kts /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Mygod] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/README.md -------------------------------------------------------------------------------- /detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/detekt.yml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/gradlew.bat -------------------------------------------------------------------------------- /mobile/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /debug 3 | release/ 4 | -------------------------------------------------------------------------------- /mobile/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/build.gradle.kts -------------------------------------------------------------------------------- /mobile/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/google-services.json -------------------------------------------------------------------------------- /mobile/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/lint.xml -------------------------------------------------------------------------------- /mobile/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/proguard-rules.pro -------------------------------------------------------------------------------- /mobile/schemas/be.mygod.vpnhotspot.room.AppDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/schemas/be.mygod.vpnhotspot.room.AppDatabase/1.json -------------------------------------------------------------------------------- /mobile/schemas/be.mygod.vpnhotspot.room.AppDatabase/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/schemas/be.mygod.vpnhotspot.room.AppDatabase/2.json -------------------------------------------------------------------------------- /mobile/src/androidTest/java/be/mygod/vpnhotspot/room/MigrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/androidTest/java/be/mygod/vpnhotspot/room/MigrationTest.kt -------------------------------------------------------------------------------- /mobile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mobile/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /mobile/src/main/cpp/root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/cpp/root.cpp -------------------------------------------------------------------------------- /mobile/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/AboutLibrariesActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/AboutLibrariesActivity.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/AlertDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/AlertDialogFragment.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/App.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/BootReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/BootReceiver.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/IpNeighbourMonitoringService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/IpNeighbourMonitoringService.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/LocalOnlyHotspotService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/LocalOnlyHotspotService.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/MainActivity.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/RepeaterService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/RepeaterService.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/RoutingManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/RoutingManager.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/ServiceNotification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/ServiceNotification.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/SettingsPreferenceFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/SettingsPreferenceFragment.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/StaticIpSetter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/StaticIpSetter.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/TetheringService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/TetheringService.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/client/Client.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/client/Client.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/client/ClientAddressInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/client/ClientAddressInfo.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/client/ClientViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/client/ClientViewModel.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/client/ClientsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/client/ClientsFragment.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/client/MacLookup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/client/MacLookup.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/manage/BluetoothTethering.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/manage/BluetoothTethering.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/manage/Data.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/manage/Data.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/manage/InterfaceManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/manage/InterfaceManager.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/manage/IpNeighbourMonitoringTileService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/manage/IpNeighbourMonitoringTileService.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/manage/LocalOnlyHotspotManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/manage/LocalOnlyHotspotManager.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/manage/LocalOnlyHotspotTileService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/manage/LocalOnlyHotspotTileService.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/manage/ManageBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/manage/ManageBar.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/manage/Manager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/manage/Manager.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/manage/RepeaterManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/manage/RepeaterManager.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/manage/RepeaterTileService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/manage/RepeaterTileService.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/manage/StaticIpManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/manage/StaticIpManager.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/manage/TetherManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/manage/TetherManager.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/manage/TetheringFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/manage/TetheringFragment.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/manage/TetheringTileService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/manage/TetheringTileService.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/DhcpWorkaround.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/DhcpWorkaround.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/InetAddressComparator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/InetAddressComparator.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/IpNeighbour.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/IpNeighbour.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/MacAddressCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/MacAddressCompat.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/RemoveUidInterfaceRuleCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/RemoveUidInterfaceRuleCommand.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/Routing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/Routing.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/TetherOffloadManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/TetherOffloadManager.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/TetherType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/TetherType.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/TetheringManagerCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/TetheringManagerCompat.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/VpnFirewallManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/VpnFirewallManager.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/dns/DnsForwarder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/dns/DnsForwarder.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/dns/DnsResolverCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/dns/DnsResolverCompat.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/dns/VpnProtectedSelectorManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/dns/VpnProtectedSelectorManager.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/DefaultNetworkMonitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/DefaultNetworkMonitor.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/FallbackUpstreamMonitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/FallbackUpstreamMonitor.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/InterfaceMonitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/InterfaceMonitor.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/IpMonitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/IpMonitor.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/IpNeighbourMonitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/IpNeighbourMonitor.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/TetherTimeoutMonitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/TetherTimeoutMonitor.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/TrafficRecorder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/TrafficRecorder.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/UpstreamMonitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/UpstreamMonitor.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/VpnMonitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/monitor/VpnMonitor.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/P2pSupplicantConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/P2pSupplicantConfiguration.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/SoftApCapability.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/SoftApCapability.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/SoftApConfigurationCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/SoftApConfigurationCompat.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/SoftApInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/SoftApInfo.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/VendorElements.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/VendorElements.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/WifiApDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/WifiApDialogFragment.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/WifiApManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/WifiApManager.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/WifiClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/WifiClient.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/WifiDoubleLock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/WifiDoubleLock.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/WifiP2pManagerHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/WifiP2pManagerHelper.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/WifiSsidCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/net/wifi/WifiSsidCompat.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/preference/AutoCompleteNetworkPreferenceDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/preference/AutoCompleteNetworkPreferenceDialogFragment.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/preference/SharedPreferenceDataStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/preference/SharedPreferenceDataStore.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/preference/SummaryFallbackProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/preference/SummaryFallbackProvider.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/preference/UpstreamsPreference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/preference/UpstreamsPreference.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/room/AppDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/room/AppDatabase.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/room/ClientRecord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/room/ClientRecord.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/room/Converters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/room/Converters.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/room/TrafficRecord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/room/TrafficRecord.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/root/Jni.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/root/Jni.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/root/LocalOnlyHotspotCallbacks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/root/LocalOnlyHotspotCallbacks.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/root/MiscCommands.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/root/MiscCommands.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/root/RepeaterCommands.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/root/RepeaterCommands.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/root/RootManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/root/RootManager.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/root/RoutingCommands.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/root/RoutingCommands.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/root/TetheringCommands.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/root/TetheringCommands.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/root/WifiApCommands.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/root/WifiApCommands.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/tasker/StateAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/tasker/StateAction.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/tasker/TaskerEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/tasker/TaskerEvents.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/tasker/TaskerPermissionManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/tasker/TaskerPermissionManager.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/tasker/TetheringActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/tasker/TetheringActions.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/tasker/TetheringState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/tasker/TetheringState.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/util/ConstantLookup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/util/ConstantLookup.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/util/CustomTabsUrlSpan.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/util/CustomTabsUrlSpan.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/util/DeviceStorageApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/util/DeviceStorageApp.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/util/Events.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/util/Events.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/util/KillableTileService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/util/KillableTileService.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/util/QRCodeDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/util/QRCodeDialog.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/util/RangeInput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/util/RangeInput.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/util/RootSession.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/util/RootSession.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/util/SelfDismissActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/util/SelfDismissActivity.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/util/ServiceForegroundConnector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/util/ServiceForegroundConnector.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/util/Services.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/util/Services.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/util/UnblockCentral.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/util/UnblockCentral.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/util/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/util/Utils.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/widget/AlwaysAutoCompleteEditText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/widget/AlwaysAutoCompleteEditText.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/widget/AutoCollapseTextView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/widget/AutoCollapseTextView.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/widget/LinkTextView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/widget/LinkTextView.kt -------------------------------------------------------------------------------- /mobile/src/main/java/be/mygod/vpnhotspot/widget/SmartSnackbar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/java/be/mygod/vpnhotspot/widget/SmartSnackbar.kt -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_action_autorenew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_action_autorenew.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_action_bug_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_action_bug_report.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_action_build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_action_build.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_action_card_giftcard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_action_card_giftcard.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_action_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_action_code.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_action_perm_scan_wifi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_action_perm_scan_wifi.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_action_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_action_settings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_action_settings_backup_restore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_action_settings_backup_restore.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_action_settings_ethernet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_action_settings_ethernet.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_action_settings_input_antenna.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_action_settings_input_antenna.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_action_settings_input_component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_action_settings_input_component.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_action_wifi_protected_setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_action_wifi_protected_setup.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_alert_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_alert_warning.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_av_closed_caption.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_av_closed_caption.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_av_closed_caption_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_av_closed_caption_off.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_content_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_content_add.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_content_file_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_content_file_copy.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_content_inbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_content_inbox.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_content_push_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_content_push_pin.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_deployed_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_deployed_code.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_device_battery_charging_full.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_device_battery_charging_full.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_device_bluetooth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_device_bluetooth.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_device_devices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_device_devices.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_device_network_wifi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_device_network_wifi.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_device_usb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_device_usb.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_device_wifi_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_device_wifi_lock.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_device_wifi_tethering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_device_wifi_tethering.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_hardware_device_hub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_hardware_device_hub.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_image_flash_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_image_flash_on.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_image_looks_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_image_looks_6.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_image_remove_red_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_image_remove_red_eye.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_quick_settings_tile_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_quick_settings_tile_on.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_settings_qrcode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_settings_qrcode.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_social_people.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_social_people.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_toggle_star.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/ic_toggle_star.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/toggle_hex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/drawable/toggle_hex.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/dialog_nickname.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/dialog_nickname.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/dialog_static_ip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/dialog_static_ip.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/dialog_wifi_ap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/dialog_wifi_ap.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/dialog_wps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/dialog_wps.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_clients.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/fragment_clients.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_tethering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/fragment_tethering.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/listitem_client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/listitem_client.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/listitem_interface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/listitem_interface.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/listitem_manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/listitem_manage.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/listitem_repeater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/listitem_repeater.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/listitem_static_ip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/listitem_static_ip.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/preference_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/preference_material.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/preference_widget_edittext_autocomplete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/preference_widget_edittext_autocomplete.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/preference_widget_material_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/layout/preference_widget_material_switch.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/menu/navigation.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/popup_client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/menu/popup_client.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/toolbar_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/menu/toolbar_configuration.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/toolbar_tethering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/menu/toolbar_tethering.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap/banner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/mipmap/banner.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/mipmap/ic_launcher.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-night/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values-night/bools.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-v29/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values-v29/arrays.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-v29/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values-v29/colors.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-v30/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values-v30/bools.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values/bools.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/dimen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values/dimen.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /mobile/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /mobile/src/main/res/xml/full_backup_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/xml/full_backup_content.xml -------------------------------------------------------------------------------- /mobile/src/main/res/xml/locales_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/xml/locales_config.xml -------------------------------------------------------------------------------- /mobile/src/main/res/xml/log_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/xml/log_paths.xml -------------------------------------------------------------------------------- /mobile/src/main/res/xml/pref_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/mobile/src/main/res/xml/pref_settings.xml -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mygod/VPNHotspot/HEAD/settings.gradle.kts --------------------------------------------------------------------------------