├── .gitignore ├── .gitmodules ├── PREBUILD.sh ├── README.md ├── app ├── .gitignore ├── build.gradle ├── build.gradle.orig ├── google-services.json ├── jna-5.9.0.aar ├── jni │ ├── Android.mk │ └── Application.mk ├── proguard-rules.pro ├── release │ └── output.json ├── releaseAPK │ └── output-metadata.json ├── releasePlay │ └── output-metadata.json └── src │ └── main │ ├── AndroidManifest.xml │ ├── AndroidManifest.xml.orig │ ├── assets │ ├── htmlbuild │ └── init.js │ ├── ic_launcher-web.png │ ├── java │ └── io │ │ └── geph │ │ └── android │ │ ├── AccountUtils.java │ │ ├── ConnectionUtils.java │ │ ├── Constants.java │ │ ├── FileUtils.java │ │ ├── MainActivity.java.orig │ │ ├── MainActivity.kt │ │ ├── MainActivityInterface.java │ │ ├── api │ │ ├── GephService.java │ │ ├── GephServiceAsyncTask.java │ │ ├── GephServiceFactory.java │ │ ├── GephServiceHelper.java │ │ ├── GephServiceTask.java │ │ ├── SimpleTask.java │ │ ├── models │ │ │ ├── AccountInfo.java │ │ │ ├── Captcha.java │ │ │ ├── DeriveKeys.java │ │ │ ├── NetInfo.java │ │ │ ├── RegisterAccountRequest.java │ │ │ └── Summary.java │ │ └── tasks │ │ │ ├── GetAccountInfoTask.java │ │ │ ├── GetNetInfoTask.java │ │ │ └── GetSummaryTask.java │ │ ├── proxbinder │ │ ├── Proxbinder.java │ │ └── ProxbinderFactory.java │ │ ├── tun2socks │ │ ├── Tun2SocksJni.java │ │ ├── TunnelManager.java.orig │ │ ├── TunnelManager.kt │ │ ├── TunnelState.java │ │ └── TunnelVpnService.java │ │ └── ui │ │ ├── AboutDialogFragment.java │ │ ├── InvalidCredentialDialogFragment.java │ │ ├── SettingsListener.java │ │ ├── SimpleDialogFragment.java │ │ ├── SimpleUiControl.java │ │ ├── StatusInterface.java │ │ └── StatusItem.java │ └── res │ ├── drawable-hdpi-v11 │ └── ic_stat_g.png │ ├── drawable-hdpi │ ├── ic_autorenew_black_24dp.png │ ├── ic_autorenew_black_48dp.png │ ├── ic_highlight_off_black_24dp.png │ ├── ic_list_black_36dp.png │ ├── ic_list_white_36dp.png │ ├── ic_stat_g.png │ └── ic_stat_notification_icon.png │ ├── drawable-mdpi-v11 │ └── ic_stat_g.png │ ├── drawable-mdpi │ ├── ic_autorenew_black_24dp.png │ ├── ic_autorenew_black_48dp.png │ ├── ic_highlight_off_black_24dp.png │ ├── ic_list_black_36dp.png │ ├── ic_list_white_36dp.png │ ├── ic_stat_g.png │ └── ic_stat_notification_icon.png │ ├── drawable-xhdpi-v11 │ └── ic_stat_g.png │ ├── drawable-xhdpi │ ├── connected.png │ ├── ic_autorenew_black_24dp.png │ ├── ic_autorenew_black_48dp.png │ ├── ic_autorenew_black_light_default.png │ ├── ic_autorenew_black_light_pressed.png │ ├── ic_highlight_off_black_24dp.png │ ├── ic_list_black_36dp.png │ ├── ic_list_white_36dp.png │ ├── ic_stat_g.png │ ├── ic_stat_notification_icon.png │ ├── ic_toggle_off.png │ └── ic_toggle_on.png │ ├── drawable-xxhdpi-v11 │ └── ic_stat_g.png │ ├── drawable-xxhdpi │ ├── ic_autorenew_black_24dp.png │ ├── ic_autorenew_black_48dp.png │ ├── ic_highlight_off_black_24dp.png │ ├── ic_list_black_36dp.png │ ├── ic_list_white_36dp.png │ ├── ic_stat_g.png │ └── ic_stat_notification_icon.png │ ├── drawable-xxxhdpi-v11 │ └── ic_stat_g.png │ ├── drawable-xxxhdpi │ ├── ic_autorenew_black_24dp.png │ ├── ic_autorenew_black_48dp.png │ ├── ic_highlight_off_black_24dp.png │ ├── ic_list_black_36dp.png │ ├── ic_list_white_36dp.png │ ├── ic_stat_g.png │ └── ic_stat_notification_icon.png │ ├── drawable │ ├── blue_button.xml │ ├── blue_button_default.xml │ ├── blue_button_focused.xml │ ├── blue_button_pressed.xml │ ├── grey_button.xml │ ├── grey_button_default.xml │ ├── grey_button_focused.xml │ ├── grey_button_pressed.xml │ ├── ic_info_black_24dp.xml │ ├── ic_notifications_black_24dp.xml │ ├── ic_sync_black_24dp.xml │ ├── message.png │ ├── orange_button.xml │ ├── orange_button_default.xml │ ├── orange_button_focused.xml │ ├── orange_button_pressed.xml │ ├── refresh_button.xml │ ├── toggle_button.xml │ ├── transparent_border_box.xml │ ├── white_bordered_button.xml │ ├── white_bordered_button_default.xml │ ├── white_bordered_button_focused.xml │ └── white_bordered_button_pressed.xml │ ├── layout │ ├── activity_main.xml │ └── status_item.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-ko │ └── strings.xml │ ├── values-v21 │ └── styles.xml │ ├── values-w820dp │ └── dimens.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rHK │ ├── values-zh-rTW │ └── strings.xml │ ├── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ └── preferences.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ ├── gradle-wrapper.properties │ └── gradle-wrapper.properties.orig ├── gradlew ├── gradlew.bat ├── releaseAPK └── output.json ├── releasePlay └── output.json └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/.gitmodules -------------------------------------------------------------------------------- /PREBUILD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/PREBUILD.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | _Geph Android_ 2 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/build.gradle.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/build.gradle.orig -------------------------------------------------------------------------------- /app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/google-services.json -------------------------------------------------------------------------------- /app/jna-5.9.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/jna-5.9.0.aar -------------------------------------------------------------------------------- /app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/jni/Application.mk -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/release/output.json -------------------------------------------------------------------------------- /app/releaseAPK/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/releaseAPK/output-metadata.json -------------------------------------------------------------------------------- /app/releasePlay/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/releasePlay/output-metadata.json -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/AndroidManifest.xml.orig -------------------------------------------------------------------------------- /app/src/main/assets/htmlbuild: -------------------------------------------------------------------------------- 1 | ../../../../gephgui/dist -------------------------------------------------------------------------------- /app/src/main/assets/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/assets/init.js -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/AccountUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/AccountUtils.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/ConnectionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/ConnectionUtils.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/Constants.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/FileUtils.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/MainActivity.java.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/MainActivity.java.orig -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/MainActivityInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/MainActivityInterface.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/GephService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/GephService.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/GephServiceAsyncTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/GephServiceAsyncTask.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/GephServiceFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/GephServiceFactory.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/GephServiceHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/GephServiceHelper.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/GephServiceTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/GephServiceTask.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/SimpleTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/SimpleTask.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/models/AccountInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/models/AccountInfo.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/models/Captcha.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/models/Captcha.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/models/DeriveKeys.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/models/DeriveKeys.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/models/NetInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/models/NetInfo.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/models/RegisterAccountRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/models/RegisterAccountRequest.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/models/Summary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/models/Summary.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/tasks/GetAccountInfoTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/tasks/GetAccountInfoTask.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/tasks/GetNetInfoTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/tasks/GetNetInfoTask.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/api/tasks/GetSummaryTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/api/tasks/GetSummaryTask.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/proxbinder/Proxbinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/proxbinder/Proxbinder.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/proxbinder/ProxbinderFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/proxbinder/ProxbinderFactory.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/tun2socks/Tun2SocksJni.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/tun2socks/Tun2SocksJni.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/tun2socks/TunnelManager.java.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/tun2socks/TunnelManager.java.orig -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/tun2socks/TunnelManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/tun2socks/TunnelManager.kt -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/tun2socks/TunnelState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/tun2socks/TunnelState.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/tun2socks/TunnelVpnService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/tun2socks/TunnelVpnService.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/ui/AboutDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/ui/AboutDialogFragment.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/ui/InvalidCredentialDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/ui/InvalidCredentialDialogFragment.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/ui/SettingsListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/ui/SettingsListener.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/ui/SimpleDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/ui/SimpleDialogFragment.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/ui/SimpleUiControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/ui/SimpleUiControl.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/ui/StatusInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/ui/StatusInterface.java -------------------------------------------------------------------------------- /app/src/main/java/io/geph/android/ui/StatusItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/java/io/geph/android/ui/StatusItem.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi-v11/ic_stat_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-hdpi-v11/ic_stat_g.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_autorenew_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-hdpi/ic_autorenew_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_autorenew_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-hdpi/ic_autorenew_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_highlight_off_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-hdpi/ic_highlight_off_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_list_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-hdpi/ic_list_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_list_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-hdpi/ic_list_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_stat_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-hdpi/ic_stat_g.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_stat_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-hdpi/ic_stat_notification_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi-v11/ic_stat_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-mdpi-v11/ic_stat_g.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_autorenew_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-mdpi/ic_autorenew_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_autorenew_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-mdpi/ic_autorenew_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_highlight_off_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-mdpi/ic_highlight_off_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_list_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-mdpi/ic_list_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_list_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-mdpi/ic_list_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_stat_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-mdpi/ic_stat_g.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_stat_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-mdpi/ic_stat_notification_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi-v11/ic_stat_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xhdpi-v11/ic_stat_g.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xhdpi/connected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_black_light_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_black_light_default.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_black_light_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_black_light_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_highlight_off_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xhdpi/ic_highlight_off_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_list_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xhdpi/ic_list_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_list_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xhdpi/ic_list_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_stat_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xhdpi/ic_stat_g.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_stat_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xhdpi/ic_stat_notification_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_toggle_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xhdpi/ic_toggle_off.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_toggle_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xhdpi/ic_toggle_on.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi-v11/ic_stat_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxhdpi-v11/ic_stat_g.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_autorenew_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxhdpi/ic_autorenew_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_autorenew_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxhdpi/ic_autorenew_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_highlight_off_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxhdpi/ic_highlight_off_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_list_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxhdpi/ic_list_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_list_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxhdpi/ic_list_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_stat_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxhdpi/ic_stat_g.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_stat_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxhdpi/ic_stat_notification_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi-v11/ic_stat_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxxhdpi-v11/ic_stat_g.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_autorenew_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxxhdpi/ic_autorenew_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_autorenew_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxxhdpi/ic_autorenew_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_highlight_off_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxxhdpi/ic_highlight_off_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_list_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxxhdpi/ic_list_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_list_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxxhdpi/ic_list_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_stat_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxxhdpi/ic_stat_g.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_stat_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable-xxxhdpi/ic_stat_notification_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/blue_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/blue_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/blue_button_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/blue_button_default.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/blue_button_focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/blue_button_focused.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/blue_button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/blue_button_pressed.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/grey_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/grey_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/grey_button_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/grey_button_default.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/grey_button_focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/grey_button_focused.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/grey_button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/grey_button_pressed.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_info_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/ic_info_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notifications_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/ic_notifications_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sync_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/ic_sync_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/message.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/orange_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/orange_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/orange_button_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/orange_button_default.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/orange_button_focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/orange_button_focused.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/orange_button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/orange_button_pressed.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/refresh_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/refresh_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/toggle_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/toggle_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/transparent_border_box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/transparent_border_box.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/white_bordered_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/white_bordered_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/white_bordered_button_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/white_bordered_button_default.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/white_bordered_button_focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/white_bordered_button_focused.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/white_bordered_button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/drawable/white_bordered_button_pressed.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/status_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/layout/status_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rHK: -------------------------------------------------------------------------------- 1 | values-zh-rTW -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/app/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/gradle/wrapper/gradle-wrapper.properties.orig -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /releaseAPK/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/releaseAPK/output.json -------------------------------------------------------------------------------- /releasePlay/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/geph-android/HEAD/releasePlay/output.json -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------