├── .github ├── FUNDING.yaml └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── 1.webp ├── 2.webp ├── 3.webp ├── 4.webp ├── 5.webp ├── 6.webp ├── cover.webp └── icon.webp ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── modconf ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── jni │ ├── CMakeLists.txt │ └── native-lib.cpp │ └── kotlin │ └── com │ └── dergoogler │ └── wpd │ ├── Main.kt │ ├── component │ ├── Toolbar.kt │ └── WifiItem.kt │ ├── ext │ └── StringExt.kt │ ├── model │ └── WifiNetwork.kt │ ├── navigation │ ├── MainRoute.kt │ └── graphs │ │ ├── PasswordsGraph.kt │ │ └── SettingsGraph.kt │ └── screen │ ├── MainScreen.kt │ ├── PasswordsScreen.kt │ └── SettingsScreen.kt ├── module ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script ├── action.sh ├── common │ ├── functions.sh │ └── repo.yaml ├── config.json ├── customize.sh ├── modconf │ └── modconf.json ├── module.prop └── system │ └── bin │ └── wpd └── settings.gradle.kts /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: DerGoogler -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/README.md -------------------------------------------------------------------------------- /assets/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/assets/1.webp -------------------------------------------------------------------------------- /assets/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/assets/2.webp -------------------------------------------------------------------------------- /assets/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/assets/3.webp -------------------------------------------------------------------------------- /assets/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/assets/4.webp -------------------------------------------------------------------------------- /assets/5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/assets/5.webp -------------------------------------------------------------------------------- /assets/6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/assets/6.webp -------------------------------------------------------------------------------- /assets/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/assets/cover.webp -------------------------------------------------------------------------------- /assets/icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/assets/icon.webp -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/gradlew.bat -------------------------------------------------------------------------------- /modconf/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/build.gradle.kts -------------------------------------------------------------------------------- /modconf/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/proguard-rules.pro -------------------------------------------------------------------------------- /modconf/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modconf/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /modconf/src/main/jni/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/src/main/jni/native-lib.cpp -------------------------------------------------------------------------------- /modconf/src/main/kotlin/com/dergoogler/wpd/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/src/main/kotlin/com/dergoogler/wpd/Main.kt -------------------------------------------------------------------------------- /modconf/src/main/kotlin/com/dergoogler/wpd/component/Toolbar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/src/main/kotlin/com/dergoogler/wpd/component/Toolbar.kt -------------------------------------------------------------------------------- /modconf/src/main/kotlin/com/dergoogler/wpd/component/WifiItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/src/main/kotlin/com/dergoogler/wpd/component/WifiItem.kt -------------------------------------------------------------------------------- /modconf/src/main/kotlin/com/dergoogler/wpd/ext/StringExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/src/main/kotlin/com/dergoogler/wpd/ext/StringExt.kt -------------------------------------------------------------------------------- /modconf/src/main/kotlin/com/dergoogler/wpd/model/WifiNetwork.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/src/main/kotlin/com/dergoogler/wpd/model/WifiNetwork.kt -------------------------------------------------------------------------------- /modconf/src/main/kotlin/com/dergoogler/wpd/navigation/MainRoute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/src/main/kotlin/com/dergoogler/wpd/navigation/MainRoute.kt -------------------------------------------------------------------------------- /modconf/src/main/kotlin/com/dergoogler/wpd/navigation/graphs/PasswordsGraph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/src/main/kotlin/com/dergoogler/wpd/navigation/graphs/PasswordsGraph.kt -------------------------------------------------------------------------------- /modconf/src/main/kotlin/com/dergoogler/wpd/navigation/graphs/SettingsGraph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/src/main/kotlin/com/dergoogler/wpd/navigation/graphs/SettingsGraph.kt -------------------------------------------------------------------------------- /modconf/src/main/kotlin/com/dergoogler/wpd/screen/MainScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/src/main/kotlin/com/dergoogler/wpd/screen/MainScreen.kt -------------------------------------------------------------------------------- /modconf/src/main/kotlin/com/dergoogler/wpd/screen/PasswordsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/src/main/kotlin/com/dergoogler/wpd/screen/PasswordsScreen.kt -------------------------------------------------------------------------------- /modconf/src/main/kotlin/com/dergoogler/wpd/screen/SettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/modconf/src/main/kotlin/com/dergoogler/wpd/screen/SettingsScreen.kt -------------------------------------------------------------------------------- /module/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/module/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /module/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /module/action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/module/action.sh -------------------------------------------------------------------------------- /module/common/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/module/common/functions.sh -------------------------------------------------------------------------------- /module/common/repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/module/common/repo.yaml -------------------------------------------------------------------------------- /module/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/module/config.json -------------------------------------------------------------------------------- /module/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/module/customize.sh -------------------------------------------------------------------------------- /module/modconf/modconf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/module/modconf/modconf.json -------------------------------------------------------------------------------- /module/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/module/module.prop -------------------------------------------------------------------------------- /module/system/bin/wpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/module/system/bin/wpd -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Googlers-Repo/wpd/HEAD/settings.gradle.kts --------------------------------------------------------------------------------