├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ └── validate-gradle-wrapper.yml ├── .gitignore ├── .idea ├── .gitignore ├── AndroidProjectSystem.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── kotlinc.xml ├── misc.xml ├── other.xml ├── runConfigurations.xml ├── uiDesigner.xml └── vcs.xml ├── LICENSE ├── app ├── .gitignore ├── build.gradle.kts ├── lint.xml ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ └── org │ │ └── grapheneos │ │ └── tls │ │ └── ModernTLSSocketFactory.java │ ├── kotlin │ └── app │ │ └── grapheneos │ │ └── info │ │ ├── Application.kt │ │ ├── InfoApp.kt │ │ ├── MainActivity.kt │ │ ├── preferences │ │ ├── PreferencesUiState.kt │ │ └── PreferencesViewModel.kt │ │ └── ui │ │ ├── community │ │ └── CommunityScreen.kt │ │ ├── donate │ │ ├── DonateStartScreen.kt │ │ ├── GithubSponsorsScreen.kt │ │ ├── PaypalScreen.kt │ │ ├── banktransfers │ │ │ ├── AccountInfoItem.kt │ │ │ └── BankTransfersScreen.kt │ │ └── cryptocurrency │ │ │ ├── AddressInfoItem.kt │ │ │ ├── BitcoinScreen.kt │ │ │ ├── CardanoScreen.kt │ │ │ ├── DonateCryptoCurrencyStartScreen.kt │ │ │ ├── EthereumScreen.kt │ │ │ ├── LitecoinScreen.kt │ │ │ ├── MoneroScreen.kt │ │ │ └── ZcashScreen.kt │ │ ├── releases │ │ ├── Changelog.kt │ │ ├── ReleasesScreen.kt │ │ ├── ReleasesUiState.kt │ │ └── ReleasesViewModel.kt │ │ ├── reusablecomposables │ │ ├── CardItem.kt │ │ ├── ClickableText.kt │ │ └── ScreenLazyColumn.kt │ │ └── theme │ │ ├── Color.kt │ │ ├── Theme.kt │ │ └── Type.kt │ └── res │ ├── drawable │ ├── bank.xml │ ├── bitcoin.xml │ ├── bluesky_logo.xml │ ├── cardano.xml │ ├── crypto.xml │ ├── discord_logo.xml │ ├── donate_bitcoin_bip47_qr_code.xml │ ├── donate_bitcoin_qr_code.xml │ ├── donate_bitcoin_taproot_qr_code.xml │ ├── donate_cardano_qr_code.xml │ ├── donate_ethereum_qr_code.xml │ ├── donate_litecoin_qr_code.xml │ ├── donate_monero_qr_code.xml │ ├── donate_zcash_transparent_qr_code.xml │ ├── ethereum.xml │ ├── github.xml │ ├── grapheneos_logo.xml │ ├── ic_launcher_foreground.xml │ ├── litecoin.xml │ ├── mastodon_logo.xml │ ├── matrix_logo.xml │ ├── monero.xml │ ├── outline_newsmode.xml │ ├── paypal.xml │ ├── telegram_logo.xml │ ├── x_logo.xml │ └── zcash.xml │ ├── mipmap-anydpi │ └── ic_launcher.xml │ ├── resources.properties │ ├── values-night │ └── themes.xml │ ├── values │ ├── ic_launcher_background.xml │ ├── strings.xml │ └── themes.xml │ └── xml │ ├── backup_rules.xml │ ├── data_extraction_rules.xml │ └── network_security_config.xml ├── gradle.properties ├── gradle ├── verification-metadata.xml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/validate-gradle-wrapper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.github/workflows/validate-gradle-wrapper.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/LICENSE -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/lint.xml -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/org/grapheneos/tls/ModernTLSSocketFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/java/org/grapheneos/tls/ModernTLSSocketFactory.java -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/Application.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/InfoApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/InfoApp.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/preferences/PreferencesUiState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/preferences/PreferencesUiState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/preferences/PreferencesViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/preferences/PreferencesViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/community/CommunityScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/community/CommunityScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/donate/DonateStartScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/donate/DonateStartScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/donate/GithubSponsorsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/donate/GithubSponsorsScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/donate/PaypalScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/donate/PaypalScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/donate/banktransfers/AccountInfoItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/donate/banktransfers/AccountInfoItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/donate/banktransfers/BankTransfersScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/donate/banktransfers/BankTransfersScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/AddressInfoItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/AddressInfoItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/BitcoinScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/BitcoinScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/CardanoScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/CardanoScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/DonateCryptoCurrencyStartScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/DonateCryptoCurrencyStartScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/EthereumScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/EthereumScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/LitecoinScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/LitecoinScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/MoneroScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/MoneroScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/ZcashScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/donate/cryptocurrency/ZcashScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/releases/Changelog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/releases/Changelog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/releases/ReleasesScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/releases/ReleasesScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/releases/ReleasesUiState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/releases/ReleasesUiState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/releases/ReleasesViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/releases/ReleasesViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/reusablecomposables/CardItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/reusablecomposables/CardItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/reusablecomposables/ClickableText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/reusablecomposables/ClickableText.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/reusablecomposables/ScreenLazyColumn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/reusablecomposables/ScreenLazyColumn.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/app/grapheneos/info/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/kotlin/app/grapheneos/info/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/bank.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/bank.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bitcoin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/bitcoin.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bluesky_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/bluesky_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/cardano.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/cardano.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/crypto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/crypto.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/discord_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/discord_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/donate_bitcoin_bip47_qr_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/donate_bitcoin_bip47_qr_code.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/donate_bitcoin_qr_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/donate_bitcoin_qr_code.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/donate_bitcoin_taproot_qr_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/donate_bitcoin_taproot_qr_code.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/donate_cardano_qr_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/donate_cardano_qr_code.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/donate_ethereum_qr_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/donate_ethereum_qr_code.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/donate_litecoin_qr_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/donate_litecoin_qr_code.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/donate_monero_qr_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/donate_monero_qr_code.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/donate_zcash_transparent_qr_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/donate_zcash_transparent_qr_code.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ethereum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/ethereum.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/github.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/github.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/grapheneos_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/grapheneos_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/litecoin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/litecoin.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/mastodon_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/mastodon_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/matrix_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/matrix_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/monero.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/monero.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_newsmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/outline_newsmode.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/paypal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/paypal.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/telegram_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/telegram_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/x_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/x_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/zcash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/drawable/zcash.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/mipmap-anydpi/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/resources.properties: -------------------------------------------------------------------------------- 1 | unqualifiedResLocale=en-US -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/verification-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/gradle/verification-metadata.xml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapheneOS/Info/HEAD/settings.gradle.kts --------------------------------------------------------------------------------