├── .github ├── dependabot.yml └── workflows │ ├── android.yml │ ├── codesee-arch-diagram.yml │ └── gradle-publish.yml ├── .gitignore ├── .idea ├── .name ├── androidTestResultsUserPreferences.xml ├── codeStyles │ └── Project.xml ├── compiler.xml ├── deploymentTargetDropDown.xml ├── deploymentTargetSelector.xml ├── dictionaries │ └── project.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jarRepositories.xml ├── migrations.xml ├── misc.xml └── vcs.xml ├── .well-known └── assetlinks.json ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── release │ ├── app-release.apk │ └── output-metadata.json ├── screenshots │ ├── diskstation.png │ ├── github.png │ ├── html5test.png │ ├── index.png │ ├── local_site.png │ ├── settings.png │ ├── site_bundle.png │ ├── update.png │ └── update_assets.png ├── src │ ├── androidTest │ │ └── java │ │ │ └── net │ │ │ └── mikespub │ │ │ └── mywebview │ │ │ ├── AppJavaScriptProxyTest.java │ │ │ ├── ExampleInstrumentedTest.java │ │ │ ├── MainActivityTest.java │ │ │ ├── MyAppWebViewClientTest.java │ │ │ ├── MyJsonUtilityTest.java │ │ │ ├── MySavedStateModelTest.java │ │ │ └── MySettingsRepositoryTest.java │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── demo │ │ │ │ ├── css │ │ │ │ │ └── style.css │ │ │ │ ├── img │ │ │ │ │ └── image.png │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ └── script.js │ │ │ │ └── test.html │ │ │ ├── local │ │ │ │ ├── config.json │ │ │ │ ├── index.html │ │ │ │ ├── result.html │ │ │ │ └── sites.html │ │ │ ├── settings.json │ │ │ └── web │ │ │ │ ├── about.html │ │ │ │ ├── deeplinks.html │ │ │ │ ├── index.html │ │ │ │ ├── privacy.html │ │ │ │ ├── result.html │ │ │ │ └── update.html │ │ ├── ic_launcher-playstore.png │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── net │ │ │ │ └── mikespub │ │ │ │ └── mywebview │ │ │ │ ├── AppJavaScriptProxy.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MyAppWebViewClient.java │ │ │ │ ├── MyJsonFileRepository.java │ │ │ │ ├── MyLocalConfigRepository.java │ │ │ │ ├── MyRequestHandler.java │ │ │ │ ├── MySavedStateModel.java │ │ │ │ └── MySettingsRepository.java │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ ├── backup_descriptor.xml │ │ │ └── filepaths.xml │ └── test │ │ └── java │ │ └── net │ │ └── mikespub │ │ └── mywebview │ │ └── ExampleUnitTest.java └── test_link.cmd ├── docs ├── .well-known │ └── assetlinks.json ├── _config.yml ├── about.html ├── deeplinks.html ├── index.html ├── local │ ├── config.json │ ├── index.html │ └── sites.html ├── privacy.html ├── settings.json └── update.html ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── myutils ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── net │ │ └── mikespub │ │ └── myutils │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── net │ │ │ └── mikespub │ │ │ └── myutils │ │ │ ├── MyAssetUtility.java │ │ │ ├── MyContentUtility.java │ │ │ ├── MyDocsProvider.java │ │ │ ├── MyDocumentUtility.java │ │ │ ├── MyDownloadUtility.java │ │ │ ├── MyFileProvider.java │ │ │ ├── MyJsonUtility.java │ │ │ └── MyReflectUtility.java │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── net │ └── mikespub │ └── myutils │ └── ExampleUnitTest.java ├── pom.xml └── settings.gradle /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/codesee-arch-diagram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.github/workflows/codesee-arch-diagram.yml -------------------------------------------------------------------------------- /.github/workflows/gradle-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.github/workflows/gradle-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | My WebView -------------------------------------------------------------------------------- /.idea/androidTestResultsUserPreferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.idea/androidTestResultsUserPreferences.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/dictionaries/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.idea/dictionaries/project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.well-known/assetlinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/.well-known/assetlinks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/release/app-release.apk -------------------------------------------------------------------------------- /app/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/release/output-metadata.json -------------------------------------------------------------------------------- /app/screenshots/diskstation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/screenshots/diskstation.png -------------------------------------------------------------------------------- /app/screenshots/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/screenshots/github.png -------------------------------------------------------------------------------- /app/screenshots/html5test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/screenshots/html5test.png -------------------------------------------------------------------------------- /app/screenshots/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/screenshots/index.png -------------------------------------------------------------------------------- /app/screenshots/local_site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/screenshots/local_site.png -------------------------------------------------------------------------------- /app/screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/screenshots/settings.png -------------------------------------------------------------------------------- /app/screenshots/site_bundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/screenshots/site_bundle.png -------------------------------------------------------------------------------- /app/screenshots/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/screenshots/update.png -------------------------------------------------------------------------------- /app/screenshots/update_assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/screenshots/update_assets.png -------------------------------------------------------------------------------- /app/src/androidTest/java/net/mikespub/mywebview/AppJavaScriptProxyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/androidTest/java/net/mikespub/mywebview/AppJavaScriptProxyTest.java -------------------------------------------------------------------------------- /app/src/androidTest/java/net/mikespub/mywebview/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/androidTest/java/net/mikespub/mywebview/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/androidTest/java/net/mikespub/mywebview/MainActivityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/androidTest/java/net/mikespub/mywebview/MainActivityTest.java -------------------------------------------------------------------------------- /app/src/androidTest/java/net/mikespub/mywebview/MyAppWebViewClientTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/androidTest/java/net/mikespub/mywebview/MyAppWebViewClientTest.java -------------------------------------------------------------------------------- /app/src/androidTest/java/net/mikespub/mywebview/MyJsonUtilityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/androidTest/java/net/mikespub/mywebview/MyJsonUtilityTest.java -------------------------------------------------------------------------------- /app/src/androidTest/java/net/mikespub/mywebview/MySavedStateModelTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/androidTest/java/net/mikespub/mywebview/MySavedStateModelTest.java -------------------------------------------------------------------------------- /app/src/androidTest/java/net/mikespub/mywebview/MySettingsRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/androidTest/java/net/mikespub/mywebview/MySettingsRepositoryTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/demo/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/demo/css/style.css -------------------------------------------------------------------------------- /app/src/main/assets/demo/img/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/demo/img/image.png -------------------------------------------------------------------------------- /app/src/main/assets/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/demo/index.html -------------------------------------------------------------------------------- /app/src/main/assets/demo/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/demo/js/script.js -------------------------------------------------------------------------------- /app/src/main/assets/demo/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/demo/test.html -------------------------------------------------------------------------------- /app/src/main/assets/local/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/local/config.json -------------------------------------------------------------------------------- /app/src/main/assets/local/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/local/index.html -------------------------------------------------------------------------------- /app/src/main/assets/local/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/local/result.html -------------------------------------------------------------------------------- /app/src/main/assets/local/sites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/local/sites.html -------------------------------------------------------------------------------- /app/src/main/assets/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/settings.json -------------------------------------------------------------------------------- /app/src/main/assets/web/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/web/about.html -------------------------------------------------------------------------------- /app/src/main/assets/web/deeplinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/web/deeplinks.html -------------------------------------------------------------------------------- /app/src/main/assets/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/web/index.html -------------------------------------------------------------------------------- /app/src/main/assets/web/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/web/privacy.html -------------------------------------------------------------------------------- /app/src/main/assets/web/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/web/result.html -------------------------------------------------------------------------------- /app/src/main/assets/web/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/assets/web/update.html -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/net/mikespub/mywebview/AppJavaScriptProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/java/net/mikespub/mywebview/AppJavaScriptProxy.java -------------------------------------------------------------------------------- /app/src/main/java/net/mikespub/mywebview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/java/net/mikespub/mywebview/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/net/mikespub/mywebview/MyAppWebViewClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/java/net/mikespub/mywebview/MyAppWebViewClient.java -------------------------------------------------------------------------------- /app/src/main/java/net/mikespub/mywebview/MyJsonFileRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/java/net/mikespub/mywebview/MyJsonFileRepository.java -------------------------------------------------------------------------------- /app/src/main/java/net/mikespub/mywebview/MyLocalConfigRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/java/net/mikespub/mywebview/MyLocalConfigRepository.java -------------------------------------------------------------------------------- /app/src/main/java/net/mikespub/mywebview/MyRequestHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/java/net/mikespub/mywebview/MyRequestHandler.java -------------------------------------------------------------------------------- /app/src/main/java/net/mikespub/mywebview/MySavedStateModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/java/net/mikespub/mywebview/MySavedStateModel.java -------------------------------------------------------------------------------- /app/src/main/java/net/mikespub/mywebview/MySettingsRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/java/net/mikespub/mywebview/MySettingsRepository.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_descriptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/res/xml/backup_descriptor.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/filepaths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/main/res/xml/filepaths.xml -------------------------------------------------------------------------------- /app/src/test/java/net/mikespub/mywebview/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/src/test/java/net/mikespub/mywebview/ExampleUnitTest.java -------------------------------------------------------------------------------- /app/test_link.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/app/test_link.cmd -------------------------------------------------------------------------------- /docs/.well-known/assetlinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/docs/.well-known/assetlinks.json -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | include: [".well-known"] 2 | -------------------------------------------------------------------------------- /docs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/docs/about.html -------------------------------------------------------------------------------- /docs/deeplinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/docs/deeplinks.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/local/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/docs/local/config.json -------------------------------------------------------------------------------- /docs/local/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/docs/local/index.html -------------------------------------------------------------------------------- /docs/local/sites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/docs/local/sites.html -------------------------------------------------------------------------------- /docs/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/docs/privacy.html -------------------------------------------------------------------------------- /docs/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/docs/settings.json -------------------------------------------------------------------------------- /docs/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/docs/update.html -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/gradlew.bat -------------------------------------------------------------------------------- /myutils/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /myutils/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/myutils/build.gradle -------------------------------------------------------------------------------- /myutils/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myutils/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/myutils/proguard-rules.pro -------------------------------------------------------------------------------- /myutils/src/androidTest/java/net/mikespub/myutils/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/myutils/src/androidTest/java/net/mikespub/myutils/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /myutils/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/myutils/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /myutils/src/main/java/net/mikespub/myutils/MyAssetUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/myutils/src/main/java/net/mikespub/myutils/MyAssetUtility.java -------------------------------------------------------------------------------- /myutils/src/main/java/net/mikespub/myutils/MyContentUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/myutils/src/main/java/net/mikespub/myutils/MyContentUtility.java -------------------------------------------------------------------------------- /myutils/src/main/java/net/mikespub/myutils/MyDocsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/myutils/src/main/java/net/mikespub/myutils/MyDocsProvider.java -------------------------------------------------------------------------------- /myutils/src/main/java/net/mikespub/myutils/MyDocumentUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/myutils/src/main/java/net/mikespub/myutils/MyDocumentUtility.java -------------------------------------------------------------------------------- /myutils/src/main/java/net/mikespub/myutils/MyDownloadUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/myutils/src/main/java/net/mikespub/myutils/MyDownloadUtility.java -------------------------------------------------------------------------------- /myutils/src/main/java/net/mikespub/myutils/MyFileProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/myutils/src/main/java/net/mikespub/myutils/MyFileProvider.java -------------------------------------------------------------------------------- /myutils/src/main/java/net/mikespub/myutils/MyJsonUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/myutils/src/main/java/net/mikespub/myutils/MyJsonUtility.java -------------------------------------------------------------------------------- /myutils/src/main/java/net/mikespub/myutils/MyReflectUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/myutils/src/main/java/net/mikespub/myutils/MyReflectUtility.java -------------------------------------------------------------------------------- /myutils/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/myutils/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /myutils/src/test/java/net/mikespub/myutils/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/myutils/src/test/java/net/mikespub/myutils/ExampleUnitTest.java -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikespub/android-webview/HEAD/pom.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':myutils' 2 | rootProject.name='My WebView' 3 | --------------------------------------------------------------------------------