├── .github └── workflows │ ├── triage_issue.yml │ └── triage_pr.yml ├── .gitignore ├── README.md ├── app ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── chat │ │ └── revolt │ │ └── app │ │ └── twa │ │ ├── Application.java │ │ ├── DelegationService.java │ │ └── LauncherActivity.java │ └── res │ ├── drawable-anydpi │ └── shortcut_legacy_background.xml │ ├── drawable-hdpi │ ├── ic_notification_icon.png │ └── splash.png │ ├── drawable-mdpi │ ├── ic_notification_icon.png │ └── splash.png │ ├── drawable-xhdpi │ ├── ic_notification_icon.png │ └── splash.png │ ├── drawable-xxhdpi │ ├── ic_notification_icon.png │ └── splash.png │ ├── drawable-xxxhdpi │ ├── ic_notification_icon.png │ └── splash.png │ ├── mipmap-anydpi-v26 │ └── ic_launcher.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_maskable.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_maskable.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_maskable.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_maskable.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_maskable.png │ ├── raw │ └── web_app_manifest.json │ ├── values │ ├── colors.xml │ └── strings.xml │ └── xml │ ├── filepaths.xml │ └── shortcuts.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── manifest-checksum.txt ├── package.json ├── settings.gradle ├── store_icon.png ├── twa-manifest.json └── yarn.lock /.github/workflows/triage_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/.github/workflows/triage_issue.yml -------------------------------------------------------------------------------- /.github/workflows/triage_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/.github/workflows/triage_pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/chat/revolt/app/twa/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/java/chat/revolt/app/twa/Application.java -------------------------------------------------------------------------------- /app/src/main/java/chat/revolt/app/twa/DelegationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/java/chat/revolt/app/twa/DelegationService.java -------------------------------------------------------------------------------- /app/src/main/java/chat/revolt/app/twa/LauncherActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/java/chat/revolt/app/twa/LauncherActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/shortcut_legacy_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/drawable-anydpi/shortcut_legacy_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/drawable-hdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/drawable-hdpi/splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/drawable-mdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/drawable-mdpi/splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/drawable-xhdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/drawable-xhdpi/splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/drawable-xxhdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/drawable-xxhdpi/splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/drawable-xxxhdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/drawable-xxxhdpi/splash.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/mipmap-hdpi/ic_maskable.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/mipmap-mdpi/ic_maskable.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/mipmap-xhdpi/ic_maskable.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/mipmap-xxhdpi/ic_maskable.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_maskable.png -------------------------------------------------------------------------------- /app/src/main/res/raw/web_app_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/raw/web_app_manifest.json -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/filepaths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/xml/filepaths.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/app/src/main/res/xml/shortcuts.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/gradlew.bat -------------------------------------------------------------------------------- /manifest-checksum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/manifest-checksum.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/package.json -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /store_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/store_icon.png -------------------------------------------------------------------------------- /twa-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/twa-manifest.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/android-twa/HEAD/yarn.lock --------------------------------------------------------------------------------