├── .github └── workflows │ └── workflow_build_release.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── kotlin │ └── me │ │ └── kartikarora │ │ └── android14 │ │ ├── activities │ │ ├── BackGestureActivity.kt │ │ ├── GrammaticalInflectionActivity.kt │ │ ├── HomeActivity.kt │ │ └── ScreenshotActivity.kt │ │ ├── nav │ │ └── Navigation.kt │ │ ├── screens │ │ ├── backgesture │ │ │ └── BackGestureScreen.kt │ │ ├── chooser │ │ │ └── IntentChoserScreen.kt │ │ ├── grammar │ │ │ └── GrammarScreen.kt │ │ ├── home │ │ │ └── HomeScreen.kt │ │ ├── mediapicker │ │ │ └── PickerScreen.kt │ │ ├── regionalprefs │ │ │ └── RegionalPrefsScreen.kt │ │ └── screenshot │ │ │ └── ScreenshotScreen.kt │ │ ├── ui │ │ ├── composables │ │ │ ├── ButtonForDemo.kt │ │ │ ├── MaterialScaffolds.kt │ │ │ ├── MultiToggleButton.kt │ │ │ └── QuantityString.kt │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Schemes.kt │ │ │ └── Theme.kt │ │ ├── utils │ │ └── Utils.kt │ │ └── viewmodels │ │ ├── GrammaticalInflictionViewModel.kt │ │ ├── HomeViewModel.kt │ │ └── ScreenshotActivityViewModel.kt │ └── res │ ├── drawable │ ├── baseline_open_in_browser.xml │ ├── baseline_search.xml │ ├── ic_launcher_foreground.xml │ ├── ic_launcher_monochrome.xml │ └── rma.jpeg │ ├── mipmap │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── resources.properties │ ├── values-en-feminine │ └── strings.xml │ ├── values-en-masculine │ └── strings.xml │ ├── values-en-neuter │ └── strings.xml │ ├── values-es-feminine │ └── strings.xml │ ├── values-es-masculine │ └── strings.xml │ ├── values-es-neuter │ └── strings.xml │ ├── values-fr-feminine │ └── strings.xml │ ├── values-fr-masculine │ └── strings.xml │ ├── values-fr-neuter │ └── strings.xml │ ├── values-vi-feminine │ └── strings.xml │ ├── values-vi-masculine │ └── strings.xml │ ├── values-vi-neuter │ └── strings.xml │ └── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml ├── benchmark.sh ├── build.gradle.kts ├── buildSrc ├── build.gradle.kts └── src │ └── main │ └── kotlin │ ├── AndroidConfig.kt │ ├── Libraries.kt │ └── Versions.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.github/workflows/workflow_build_release.yml: -------------------------------------------------------------------------------- 1 | name: Build & Release 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | workflow_dispatch: 8 | 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | permissions: 13 | contents: write 14 | steps: 15 | - name: Checkout 16 | uses: actions/checkout@v3 17 | 18 | - name: Setup Java 17 19 | uses: actions/setup-java@v3 20 | with: 21 | distribution: 'temurin' 22 | java-version: '17' 23 | 24 | - name: Setup Android 14 SDK 25 | uses: amyu/setup-android@v2 26 | with: 27 | sdk-version: '34' 28 | build-tools-version: '34.0.0' 29 | 30 | - name: Decode Keystore 31 | run: | 32 | mkdir -p ./keystore/ 33 | echo -n "${{ secrets.KEYSTORE }}" | base64 -d > ./keystore/a14.keystore 34 | echo -ne "SIGNING_KEYSTORE_PATH=${{ secrets.SIGNING_KEYSTORE_PATH }}" >> ./secret.properties 35 | echo -ne "\nSIGNING_STORE_PASSWORD=${{ secrets.SIGNING_STORE_PASSWORD }}" >> ./secret.properties 36 | echo -ne "\nSIGNING_KEY_ALIAS=${{ secrets.SIGNING_KEY_ALIAS }}" >> ./secret.properties 37 | echo -ne "\nSIGNING_KEY_PASSWORD=${{ secrets.SIGNING_KEY_PASSWORD }}" >> ./secret.properties 38 | 39 | - name: Set version code 40 | run: | 41 | echo -ne "\nVERSION_CODE=${{ github.run_number }}" >> ./version.properties 42 | 43 | - name: Make gradle executable 44 | run: | 45 | chmod +x ./gradlew 46 | 47 | - name: Set version name 48 | run: | 49 | echo "VERSION_NAME=$(./gradlew -q :app:getVersionName)" >> $GITHUB_ENV 50 | 51 | - name: Build Android 14 52 | run: | 53 | ./gradlew :app:assembleRelease 54 | 55 | - name: Create Release 56 | uses: softprops/action-gh-release@v1 57 | with: 58 | files: ./app/build/outputs/apk/release/*.apk 59 | tag_name: "${{ env.VERSION_NAME }}-${{ github.run_number }}" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | ### JetBrains template 3 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider 4 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 5 | .idea 6 | # User-specific stuff 7 | .idea/**/workspace.xml 8 | .idea/**/tasks.xml 9 | .idea/**/usage.statistics.xml 10 | .idea/**/dictionaries 11 | .idea/**/shelf 12 | 13 | # Generated files 14 | .idea/**/contentModel.xml 15 | 16 | # Sensitive or high-churn files 17 | .idea/**/dataSources/ 18 | .idea/**/dataSources.ids 19 | .idea/**/dataSources.local.xml 20 | .idea/**/sqlDataSources.xml 21 | .idea/**/dynamic.xml 22 | .idea/**/uiDesigner.xml 23 | .idea/**/dbnavigator.xml 24 | 25 | # Gradle 26 | .idea/**/gradle.xml 27 | .idea/**/libraries 28 | 29 | # Gradle and Maven with auto-import 30 | # When using Gradle or Maven with auto-import, you should exclude module files, 31 | # since they will be recreated, and may cause churn. Uncomment if using 32 | # auto-import. 33 | # .idea/artifacts 34 | # .idea/compiler.xml 35 | # .idea/jarRepositories.xml 36 | # .idea/modules.xml 37 | # .idea/*.iml 38 | # .idea/modules 39 | # *.iml 40 | # *.ipr 41 | 42 | # CMake 43 | cmake-build-*/ 44 | 45 | # Mongo Explorer plugin 46 | .idea/**/mongoSettings.xml 47 | 48 | # File-based project format 49 | *.iws 50 | 51 | # IntelliJ 52 | out/ 53 | 54 | # mpeltonen/sbt-idea plugin 55 | .idea_modules/ 56 | 57 | # JIRA plugin 58 | atlassian-ide-plugin.xml 59 | 60 | # Cursive Clojure plugin 61 | .idea/replstate.xml 62 | 63 | # Crashlytics plugin (for Android Studio and IntelliJ) 64 | com_crashlytics_export_strings.xml 65 | crashlytics.properties 66 | crashlytics-build.properties 67 | fabric.properties 68 | 69 | # Editor-based Rest Client 70 | .idea/httpRequests 71 | 72 | # Android studio 3.1+ serialized cache file 73 | .idea/caches/build_file_checksums.ser 74 | 75 | ### Gradle template 76 | .gradle 77 | **/build/ 78 | !src/**/build/ 79 | 80 | # Ignore Gradle GUI config 81 | gradle-app.setting 82 | 83 | # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) 84 | !gradle-wrapper.jar 85 | 86 | # Cache of project 87 | .gradletasknamecache 88 | 89 | # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 90 | # gradle/wrapper/gradle-wrapper.properties 91 | 92 | ### Android template 93 | # Built application files 94 | *.apk 95 | *.aar 96 | *.ap_ 97 | *.aab 98 | 99 | # Files for the ART/Dalvik VM 100 | *.dex 101 | 102 | # Java class files 103 | *.class 104 | 105 | # Generated files 106 | bin/ 107 | gen/ 108 | # Uncomment the following line in case you need and you don't have the release build type files in your app 109 | # release/ 110 | 111 | # Gradle files 112 | .gradle/ 113 | build/ 114 | 115 | # Local configuration file (sdk path, etc) 116 | local.properties 117 | 118 | # Proguard folder generated by Eclipse 119 | proguard/ 120 | 121 | # Log Files 122 | *.log 123 | 124 | # Android Studio Navigation editor temp files 125 | .navigation/ 126 | 127 | # Android Studio captures folder 128 | captures/ 129 | 130 | # IntelliJ 131 | *.iml 132 | .idea/workspace.xml 133 | .idea/tasks.xml 134 | .idea/gradle.xml 135 | .idea/assetWizardSettings.xml 136 | .idea/dictionaries 137 | .idea/libraries 138 | # Android Studio 3 in .gitignore file. 139 | .idea/caches 140 | .idea/modules.xml 141 | # Comment next line if keeping position of elements in Navigation Editor is relevant for you 142 | .idea/navEditor.xml 143 | 144 | # Keystore files 145 | # Uncomment the following lines if you do not want to check your keystore files in. 146 | #*.jks 147 | #*.keystore 148 | 149 | # External native build folder generated in Android Studio 2.2 and later 150 | .externalNativeBuild 151 | .cxx/ 152 | 153 | # Google Services (e.g. APIs or Firebase) 154 | # google-services.json 155 | 156 | # Freeline 157 | freeline.py 158 | freeline/ 159 | freeline_project_description.json 160 | 161 | # fastlane 162 | fastlane/report.xml 163 | fastlane/Preview.html 164 | fastlane/screenshots 165 | fastlane/test_output 166 | fastlane/readme.md 167 | 168 | # Version control 169 | vcs.xml 170 | 171 | # lint 172 | lint/intermediates/ 173 | lint/generated/ 174 | lint/outputs/ 175 | lint/tmp/ 176 | # lint/reports/ 177 | 178 | # Android Profiling 179 | *.hprof 180 | 181 | ### JetBrains template 182 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider 183 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 184 | 185 | # User-specific stuff 186 | 187 | # Generated files 188 | 189 | # Sensitive or high-churn files 190 | 191 | # Gradle 192 | 193 | # Gradle and Maven with auto-import 194 | # When using Gradle or Maven with auto-import, you should exclude module files, 195 | # since they will be recreated, and may cause churn. Uncomment if using 196 | # auto-import. 197 | # .idea/artifacts 198 | # .idea/compiler.xml 199 | # .idea/jarRepositories.xml 200 | # .idea/modules.xml 201 | # .idea/*.iml 202 | # .idea/modules 203 | # *.iml 204 | # *.ipr 205 | 206 | # CMake 207 | 208 | # Mongo Explorer plugin 209 | 210 | # File-based project format 211 | 212 | # IntelliJ 213 | 214 | # mpeltonen/sbt-idea plugin 215 | 216 | # JIRA plugin 217 | 218 | # Cursive Clojure plugin 219 | 220 | # Crashlytics plugin (for Android Studio and IntelliJ) 221 | 222 | # Editor-based Rest Client 223 | 224 | # Android studio 3.1+ serialized cache file 225 | 226 | ### Gradle template 227 | 228 | # Ignore Gradle GUI config 229 | 230 | # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) 231 | 232 | # Cache of project 233 | 234 | # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 235 | # gradle/wrapper/gradle-wrapper.properties 236 | 237 | ### Android template 238 | # Built application files 239 | 240 | # Files for the ART/Dalvik VM 241 | 242 | # Java class files 243 | 244 | # Generated files 245 | # Uncomment the following line in case you need and you don't have the release build type files in your app 246 | # release/ 247 | 248 | # Gradle files 249 | 250 | # Local configuration file (sdk path, etc) 251 | 252 | # Proguard folder generated by Eclipse 253 | 254 | # Log Files 255 | 256 | # Android Studio Navigation editor temp files 257 | 258 | # Android Studio captures folder 259 | 260 | # IntelliJ 261 | # Android Studio 3 in .gitignore file. 262 | # Comment next line if keeping position of elements in Navigation Editor is relevant for you 263 | 264 | # Keystore files 265 | # Uncomment the following lines if you do not want to check your keystore files in. 266 | #*.jks 267 | #*.keystore 268 | 269 | # External native build folder generated in Android Studio 2.2 and later 270 | 271 | # Google Services (e.g. APIs or Firebase) 272 | # google-services.json 273 | 274 | # Freeline 275 | 276 | # fastlane 277 | 278 | # Version control 279 | 280 | # lint 281 | # lint/reports/ 282 | 283 | # Android Profiling 284 | 285 | resources 286 | 287 | .DS_Store 288 | /keystore 289 | /version.properties 290 | /secret.properties 291 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [Android 14](https://developer.android.com/about/versions/14) 2 | 3 | Repository for an Android app built to demo the new developer centric features in Android 14. This project is in active development and contains beta and alpha features. 4 | Not everything is guaranteed to work. 5 | 6 | At the time of writing (15 April 2023) this app targets Android 14 Beta 1 and demonstrates usage of the following new APIs 7 | - [Screenshot Detection API](https://developer.android.com/about/versions/14/features/screenshot-detection) 8 | - [Selected Photo Access](https://developer.android.com/about/versions/14/changes/partial-photo-video-access) 9 | - [Back Gesture Preview](https://developer.android.com/guide/navigation/predictive-back-gesture) 10 | - [Grammatical Inflection API](https://developer.android.com/about/versions/14/features/grammatical-inflection) 11 | - [Intent Chooser with Custom Actions](https://developer.android.com/about/versions/14/features#sharesheet-improvements) 12 | - [Regional Preferences](https://developer.android.com/about/versions/14/features#regional-preferences) 13 | 14 | ## Building and Running 15 | 16 | The project was developed using 17 | - Android Studio Giraffe Canary 12. 18 | - AGP 8.2.0-alpha12 19 | - Kotlin 1.9.0 20 | - Java 17 VM 21 | - Kotlin DSL 22 | - Jetpack Compose 23 | 24 | To build the app, clone the repository and open it as project in Android Studio Giraffe. Once indexed and dependencies are resolved, use `./gradlw assemble` to build an apk. 25 | Spin up an emulator for Android UpsideDownCake Preview and install the app to check it out 26 | 27 | Alternatively, if you are feeling adventurous, [Android 14 Beta 4](https://developer.android.com/about/versions/14/get) is available for Pixel devices. You can install [the latest apk](https://github.com/kartikarora/android-14/releases/latest) on a physical device to check it out. 28 | 29 | ## Contribution 30 | 31 | Contributions are welcome. Project is under a GPT-3 license. Please open an issue before creating a pull request so that I have a chance to review the contribution to the best of my abilities. 32 | There are no contribution guidelines other than that (it is a very small project). 33 | 34 | ## Support 35 | 36 | If you want to support me with the work I do, feel free to [buy me a coffee](https://www.buymeacoffee.com/kartikarora) 37 | -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- 1 | import java.util.Properties 2 | 3 | plugins { 4 | id("com.android.application") 5 | id("org.jetbrains.kotlin.android") 6 | 7 | } 8 | 9 | kotlin { 10 | jvmToolchain(17) 11 | } 12 | 13 | java { 14 | toolchain { 15 | languageVersion.set(JavaLanguageVersion.of(17)) 16 | } 17 | } 18 | 19 | android { 20 | namespace = AndroidConfig.Namespace 21 | compileSdk = AndroidConfig.CompileSdk 22 | buildToolsVersion = AndroidConfig.BuildTools 23 | buildFeatures { 24 | compose = true 25 | } 26 | composeOptions { 27 | kotlinCompilerExtensionVersion = AndroidConfig.KotlinCompilerExtensionVersion 28 | } 29 | defaultConfig { 30 | val versionProperties = readProperties(file("../version.properties")) 31 | minSdk = AndroidConfig.MinSdk 32 | targetSdk = AndroidConfig.TargetSdk 33 | versionCode = 34 | versionProperties.getProperty("VERSION_CODE").toInt() 35 | versionName = AndroidConfig.VersionName 36 | testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" 37 | vectorDrawables { 38 | useSupportLibrary = true 39 | } 40 | 41 | } 42 | signingConfigs { 43 | create("release") { 44 | val secretProperties = readProperties(file("../secret.properties")) 45 | storeFile = file(secretProperties.getProperty("SIGNING_KEYSTORE_PATH")) 46 | storePassword = secretProperties.getProperty("SIGNING_STORE_PASSWORD") 47 | keyAlias = secretProperties.getProperty("SIGNING_KEY_ALIAS") 48 | keyPassword = secretProperties.getProperty("SIGNING_KEY_PASSWORD") 49 | } 50 | } 51 | buildTypes { 52 | release { 53 | isMinifyEnabled = false 54 | proguardFiles( 55 | getDefaultProguardFile("proguard-android-optimize.txt"), 56 | "proguard-rules.pro" 57 | ) 58 | signingConfig = signingConfigs.getByName("release") 59 | } 60 | } 61 | packaging { 62 | resources { 63 | excludes += "/META-INF/{AL2.0,LGPL2.1}" 64 | } 65 | } 66 | androidResources { 67 | generateLocaleConfig = true 68 | } 69 | } 70 | 71 | dependencies { 72 | implementation(Libraries.kotlinStdlib) 73 | implementation(Libraries.coreKtx) 74 | implementation(Libraries.appcompat) 75 | implementation(Libraries.lifecycle) 76 | implementation(Libraries.coil) 77 | implementation(Libraries.navigationCompose) 78 | implementation(platform(Libraries.composeBom)) 79 | implementation(Libraries.composeActivity) 80 | implementation(Libraries.composeRuntimeLiveData) 81 | implementation(Libraries.composeUi) 82 | implementation(Libraries.composeMaterial3) 83 | implementation(Libraries.composeUiToolingPreview) 84 | debugImplementation(Libraries.composeUiTooling) 85 | testImplementation(Libraries.junit) 86 | } 87 | 88 | fun readProperties(propertiesFile: File) = Properties().apply { 89 | propertiesFile.inputStream().use { load(it) } 90 | } 91 | 92 | task("getVersionName") { 93 | println(AndroidConfig.VersionName) 94 | } 95 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle.kts. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 26 | 29 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikarora/android-14/aeaff5747f7be18fdf88417c2b3b62f4d4333ddc/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/activities/BackGestureActivity.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.activities 2 | 3 | import android.content.Intent 4 | import android.os.Bundle 5 | import androidx.activity.ComponentActivity 6 | import androidx.activity.compose.setContent 7 | import androidx.compose.runtime.Composable 8 | import androidx.compose.ui.tooling.preview.Preview 9 | import me.kartikarora.android14.nav.Destination 10 | import me.kartikarora.android14.screens.backgesture.BackGestureScreen 11 | import me.kartikarora.android14.ui.composables.SetupM3Scaffold 12 | import me.kartikarora.android14.ui.theme.Android14Theme 13 | 14 | 15 | class BackGestureActivity : ComponentActivity() { 16 | override fun onCreate(savedInstanceState: Bundle?) { 17 | super.onCreate(savedInstanceState) 18 | setContent { 19 | Android14Theme { 20 | SetupM3Scaffold(Destination.BackGesture) { paddingValues -> 21 | BackGestureScreen(paddingValues) 22 | } 23 | } 24 | } 25 | } 26 | 27 | companion object { 28 | fun start(activity: ComponentActivity) { 29 | val intent = Intent(activity, BackGestureActivity::class.java) 30 | activity.startActivity(intent) 31 | } 32 | } 33 | } 34 | 35 | @Preview 36 | @Composable 37 | fun BackLightPreview() { 38 | Android14Theme { 39 | SetupM3Scaffold(Destination.BackGesture) { paddingValues -> 40 | BackGestureScreen(paddingValues) 41 | } 42 | } 43 | } 44 | 45 | 46 | @Preview 47 | @Composable 48 | fun BackDarkPreview() { 49 | Android14Theme(useDarkTheme = true) { 50 | SetupM3Scaffold(Destination.BackGesture) { paddingValues -> 51 | BackGestureScreen(paddingValues) 52 | } 53 | } 54 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/activities/GrammaticalInflectionActivity.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.activities 2 | 3 | import android.app.GrammaticalInflectionManager 4 | import android.content.Intent 5 | import android.os.Bundle 6 | import androidx.activity.ComponentActivity 7 | import androidx.activity.compose.setContent 8 | import androidx.activity.viewModels 9 | import androidx.appcompat.app.AppCompatActivity 10 | import androidx.appcompat.app.AppCompatDelegate 11 | import androidx.compose.runtime.Composable 12 | import androidx.compose.ui.res.stringResource 13 | import androidx.compose.ui.tooling.preview.Preview 14 | import me.kartikarora.android14.R 15 | import me.kartikarora.android14.nav.Destination 16 | import me.kartikarora.android14.screens.grammar.GrammarScreen 17 | import me.kartikarora.android14.ui.composables.SetupM3Scaffold 18 | import me.kartikarora.android14.ui.theme.Android14Theme 19 | import me.kartikarora.android14.viewmodels.GrammaticalInflectionViewModel 20 | 21 | class GrammaticalInflectionActivity : AppCompatActivity() { 22 | 23 | private val viewModel: GrammaticalInflectionViewModel by viewModels() 24 | 25 | private val grammaticalInflectionManager by lazy { 26 | getSystemService(GrammaticalInflectionManager::class.java) 27 | } 28 | 29 | 30 | override fun onCreate(savedInstanceState: Bundle?) { 31 | super.onCreate(savedInstanceState) 32 | setContent { 33 | Android14Theme { 34 | SetupM3Scaffold(Destination.GrammaticalInflection) { paddingValues -> 35 | GrammarScreen( 36 | paddingValues, 37 | viewModel, 38 | word = stringResource(id = R.string.word), 39 | sentence = stringResource(id = R.string.sentence), 40 | onLanguageChange = { 41 | AppCompatDelegate.setApplicationLocales(viewModel.currentLanguage.toLocaleList()) 42 | grammaticalInflectionManager.setRequestedApplicationGrammaticalGender( 43 | viewModel.currentGender.inflection 44 | ) 45 | }, 46 | onGenderChange = { 47 | grammaticalInflectionManager.setRequestedApplicationGrammaticalGender( 48 | viewModel.currentGender.inflection 49 | ) 50 | } 51 | ) 52 | } 53 | } 54 | } 55 | } 56 | 57 | companion object { 58 | fun start(activity: ComponentActivity) { 59 | val intent = Intent(activity, GrammaticalInflectionActivity::class.java) 60 | activity.startActivity(intent) 61 | } 62 | } 63 | } 64 | 65 | @Preview 66 | @Composable 67 | fun GrammarLightPreview() { 68 | Android14Theme { 69 | SetupM3Scaffold(Destination.GrammaticalInflection) { paddingValues -> 70 | GrammarScreen(paddingValues) 71 | } 72 | } 73 | } 74 | 75 | 76 | @Preview 77 | @Composable 78 | fun GrammarDarkPreview() { 79 | Android14Theme(useDarkTheme = true) { 80 | SetupM3Scaffold(Destination.GrammaticalInflection) { paddingValues -> 81 | GrammarScreen(paddingValues) 82 | } 83 | } 84 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/activities/HomeActivity.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.activities 2 | 3 | import android.content.ContentUris 4 | import android.database.Cursor 5 | import android.net.Uri 6 | import android.os.Bundle 7 | import android.provider.MediaStore 8 | import androidx.activity.ComponentActivity 9 | import androidx.activity.compose.BackHandler 10 | import androidx.activity.compose.setContent 11 | import androidx.activity.viewModels 12 | import androidx.compose.runtime.Composable 13 | import androidx.compose.ui.tooling.preview.Preview 14 | import androidx.core.view.WindowCompat 15 | import androidx.navigation.compose.rememberNavController 16 | import me.kartikarora.android14.nav.Destination 17 | import me.kartikarora.android14.nav.NavigationHost 18 | import me.kartikarora.android14.screens.home.HomeScreen 19 | import me.kartikarora.android14.ui.composables.SetupM3Scaffold 20 | import me.kartikarora.android14.ui.theme.Android14Theme 21 | import me.kartikarora.android14.viewmodels.HomeViewModel 22 | 23 | class HomeActivity : ComponentActivity() { 24 | 25 | private val viewModel: HomeViewModel by viewModels() 26 | 27 | override fun onCreate(savedInstanceState: Bundle?) { 28 | super.onCreate(savedInstanceState) 29 | WindowCompat.setDecorFitsSystemWindows(window, false) 30 | 31 | setContent { 32 | val navHostController = rememberNavController() 33 | Android14Theme { 34 | SetupM3Scaffold(viewModel.currentScreen) { paddingValues -> 35 | BackHandler { 36 | navHostController.popBackStack() 37 | viewModel.updateDestination(viewModel.prevScreen) 38 | } 39 | NavigationHost( 40 | navHostController = navHostController, 41 | paddingValues = paddingValues 42 | ) { destination -> 43 | when (destination) { 44 | Destination.CustomActionIntentChooser, 45 | Destination.RegionalPrefs, 46 | Destination.SelectedPhotoAccess -> { 47 | viewModel.updatePrevScreen(Destination.Home) 48 | viewModel.updateDestination(destination) 49 | navHostController.navigate(destination.title) 50 | } 51 | 52 | Destination.GrammaticalInflection -> GrammaticalInflectionActivity.start( 53 | this 54 | ) 55 | 56 | Destination.BackGesture -> BackGestureActivity.start(this) 57 | Destination.ScreenshotDetection -> ScreenshotActivity.start(this) 58 | else -> {/* no-op */ 59 | } 60 | } 61 | } 62 | } 63 | } 64 | } 65 | } 66 | 67 | fun getGrantedImageUris(): List { 68 | val imagesList = mutableListOf() 69 | 70 | val projection = arrayOf(MediaStore.Images.Media._ID) 71 | val selection = null 72 | val selectionArgs = null 73 | val sortOrder = null 74 | 75 | contentResolver.query( 76 | MediaStore.Images.Media.EXTERNAL_CONTENT_URI, 77 | projection, 78 | selection, 79 | selectionArgs, 80 | sortOrder 81 | )?.use { cursor: Cursor -> 82 | val idColumn = cursor.getColumnIndexOrThrow(MediaStore.Images.Media._ID) 83 | while (cursor.moveToNext()) { 84 | val id = cursor.getLong(idColumn) 85 | val contentUri = ContentUris.withAppendedId( 86 | MediaStore.Images.Media.EXTERNAL_CONTENT_URI, 87 | id 88 | ) 89 | imagesList.add(contentUri) 90 | } 91 | } 92 | return imagesList 93 | } 94 | } 95 | 96 | @Preview 97 | @Composable 98 | fun HomeLightPreview() { 99 | Android14Theme { 100 | SetupM3Scaffold(Destination.Home) { paddingValues -> 101 | HomeScreen(paddingValues) 102 | } 103 | } 104 | } 105 | 106 | 107 | @Preview 108 | @Composable 109 | fun HomeDarkPreview() { 110 | Android14Theme(useDarkTheme = true) { 111 | SetupM3Scaffold(Destination.Home) { paddingValues -> 112 | HomeScreen(paddingValues) 113 | } 114 | } 115 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/activities/ScreenshotActivity.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.activities 2 | 3 | import android.app.Activity 4 | import android.content.Intent 5 | import android.os.Bundle 6 | import androidx.activity.ComponentActivity 7 | import androidx.activity.compose.setContent 8 | import androidx.activity.viewModels 9 | import androidx.compose.runtime.Composable 10 | import androidx.compose.ui.tooling.preview.Preview 11 | import me.kartikarora.android14.nav.Destination 12 | import me.kartikarora.android14.screens.screenshot.ScreenshotScreen 13 | import me.kartikarora.android14.ui.composables.SetupM3Scaffold 14 | import me.kartikarora.android14.ui.theme.Android14Theme 15 | import me.kartikarora.android14.viewmodels.ScreenshotActivityViewModel 16 | 17 | class ScreenshotActivity : ComponentActivity(), Activity.ScreenCaptureCallback { 18 | 19 | private val viewModel: ScreenshotActivityViewModel by viewModels() 20 | 21 | override fun onCreate(savedInstanceState: Bundle?) { 22 | super.onCreate(savedInstanceState) 23 | setContent { 24 | Android14Theme { 25 | SetupM3Scaffold(Destination.ScreenshotDetection) { paddingValues -> 26 | ScreenshotScreen( 27 | paddingValues, 28 | viewModel 29 | ) 30 | } 31 | } 32 | } 33 | } 34 | 35 | override fun onStart() { 36 | super.onStart() 37 | registerScreenCaptureCallback(mainExecutor, this) 38 | } 39 | 40 | override fun onStop() { 41 | super.onStop() 42 | unregisterScreenCaptureCallback(this) 43 | } 44 | 45 | override fun onScreenCaptured() { 46 | viewModel.onScreensCaptured() 47 | } 48 | 49 | companion object { 50 | fun start(activity: ComponentActivity) { 51 | val intent = Intent(activity, ScreenshotActivity::class.java) 52 | activity.startActivity(intent) 53 | } 54 | } 55 | } 56 | 57 | @Preview 58 | @Composable 59 | fun ScreenshotLightPreview() { 60 | Android14Theme { 61 | SetupM3Scaffold(Destination.ScreenshotDetection) { paddingValues -> 62 | ScreenshotScreen(paddingValues) 63 | } 64 | } 65 | } 66 | 67 | 68 | @Preview 69 | @Composable 70 | fun ScreenshotDarkPreview() { 71 | Android14Theme(useDarkTheme = true) { 72 | SetupM3Scaffold(Destination.ScreenshotDetection) { paddingValues -> 73 | ScreenshotScreen(paddingValues) 74 | } 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/nav/Navigation.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.nav 2 | 3 | import androidx.compose.foundation.layout.PaddingValues 4 | import androidx.compose.runtime.Composable 5 | import androidx.navigation.NavHostController 6 | import androidx.navigation.compose.NavHost 7 | import androidx.navigation.compose.composable 8 | import me.kartikarora.android14.screens.chooser.IntentChooserScreen 9 | import me.kartikarora.android14.screens.home.HomeScreen 10 | import me.kartikarora.android14.screens.mediapicker.PickerScreen 11 | import me.kartikarora.android14.screens.regionalprefs.RegionalPrefsScreen 12 | import java.io.Serializable 13 | 14 | sealed class Destination(val title: String) : Serializable { 15 | data object GrammaticalInflection : Destination("Grammatical Inflection") 16 | data object ScreenshotDetection : Destination("Screenshot Detection") 17 | data object SelectedPhotoAccess : Destination("Selected Photo Access") 18 | data object BackGesture : Destination("Back Gesture Preview") 19 | data object CustomActionIntentChooser : Destination("Custom Action in Android Sharesheet") 20 | data object RegionalPrefs : Destination("Regional Preferences") 21 | data object Home : Destination("Android 14") 22 | } 23 | 24 | @Composable 25 | fun NavigationHost( 26 | navHostController: NavHostController, 27 | paddingValues: PaddingValues, 28 | navigateTo: (Destination) -> Unit 29 | ) { 30 | NavHost(navController = navHostController, startDestination = Destination.Home.title) { 31 | composable(Destination.Home.title) { HomeScreen(paddingValues) { navigateTo.invoke(it) } } 32 | composable(Destination.SelectedPhotoAccess.title) { PickerScreen(paddingValues) } 33 | composable(Destination.CustomActionIntentChooser.title) { IntentChooserScreen(paddingValues) } 34 | composable(Destination.RegionalPrefs.title) { RegionalPrefsScreen(paddingValues) } 35 | } 36 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/screens/backgesture/BackGestureScreen.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.screens.backgesture 2 | 3 | import androidx.compose.foundation.layout.PaddingValues 4 | import androidx.compose.foundation.layout.fillMaxSize 5 | import androidx.compose.foundation.layout.padding 6 | import androidx.compose.foundation.layout.wrapContentHeight 7 | import androidx.compose.foundation.lazy.LazyColumn 8 | import androidx.compose.material3.MaterialTheme 9 | import androidx.compose.material3.Text 10 | import androidx.compose.runtime.Composable 11 | import androidx.compose.ui.Modifier 12 | import androidx.compose.ui.res.stringResource 13 | import androidx.compose.ui.text.style.TextAlign 14 | import androidx.compose.ui.tooling.preview.PreviewLightDark 15 | import androidx.compose.ui.unit.dp 16 | import me.kartikarora.android14.R 17 | import me.kartikarora.android14.nav.Destination 18 | import me.kartikarora.android14.ui.composables.SetupM3Scaffold 19 | import me.kartikarora.android14.ui.theme.Android14Theme 20 | 21 | @Composable 22 | fun BackGestureScreen(paddingValues: PaddingValues) { 23 | LazyColumn( 24 | modifier = Modifier 25 | .fillMaxSize() 26 | .padding( 27 | top = paddingValues.calculateTopPadding(), 28 | start = 16.dp, 29 | end = 16.dp, 30 | bottom = paddingValues.calculateBottomPadding() 31 | ) 32 | ) { 33 | item { 34 | Text( 35 | modifier = Modifier 36 | .fillMaxSize() 37 | .wrapContentHeight(), 38 | textAlign = TextAlign.Center, 39 | text = stringResource(R.string.back_gesture_title), 40 | style = MaterialTheme.typography.titleLarge 41 | ) 42 | } 43 | } 44 | } 45 | 46 | @PreviewLightDark 47 | @Composable 48 | fun BackPreview() { 49 | Android14Theme { 50 | SetupM3Scaffold(Destination.BackGesture) { paddingValues -> 51 | BackGestureScreen(paddingValues) 52 | } 53 | } 54 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/screens/chooser/IntentChoserScreen.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.screens.chooser 2 | 3 | import android.app.PendingIntent 4 | import android.app.SearchManager 5 | import android.content.Intent 6 | import android.graphics.drawable.Icon 7 | import android.net.Uri 8 | import android.service.chooser.ChooserAction 9 | import androidx.compose.foundation.layout.Column 10 | import androidx.compose.foundation.layout.PaddingValues 11 | import androidx.compose.foundation.layout.fillMaxSize 12 | import androidx.compose.foundation.layout.padding 13 | import androidx.compose.material3.Button 14 | import androidx.compose.material3.Text 15 | import androidx.compose.runtime.Composable 16 | import androidx.compose.runtime.getValue 17 | import androidx.compose.runtime.mutableStateOf 18 | import androidx.compose.runtime.remember 19 | import androidx.compose.runtime.setValue 20 | import androidx.compose.ui.Modifier 21 | import androidx.compose.ui.platform.LocalContext 22 | import androidx.compose.ui.res.stringResource 23 | import androidx.compose.ui.tooling.preview.PreviewLightDark 24 | import androidx.compose.ui.unit.dp 25 | import me.kartikarora.android14.R 26 | import me.kartikarora.android14.nav.Destination 27 | import me.kartikarora.android14.ui.composables.SetupM3Scaffold 28 | import me.kartikarora.android14.ui.theme.Android14Theme 29 | 30 | @Composable 31 | fun IntentChooserScreen( 32 | paddingValues: PaddingValues 33 | ) { 34 | var openChooser by remember { mutableStateOf(false) } 35 | Column( 36 | modifier = Modifier 37 | .fillMaxSize() 38 | .padding( 39 | top = paddingValues.calculateTopPadding(), 40 | start = 16.dp, 41 | end = 16.dp, 42 | bottom = paddingValues.calculateBottomPadding() 43 | ) 44 | ) { 45 | if (openChooser) { 46 | with(LocalContext.current) { 47 | val chooserIntent = Intent.createChooser( 48 | Intent(Intent.ACTION_SEND) 49 | .setType(stringResource(R.string.image_mimetype)) 50 | .putExtra(Intent.EXTRA_TEXT, stringResource(R.string.intent_chooser_extra)), 51 | stringResource(R.string.intent_chooser_title) 52 | ).apply { 53 | val customActionOne = ChooserAction.Builder( 54 | Icon.createWithResource(this@with, R.drawable.baseline_search), 55 | stringResource(id = R.string.sharesheet_custom_action_label_one), 56 | PendingIntent.getActivity( 57 | this@with, 58 | 1234, 59 | Intent(Intent.ACTION_WEB_SEARCH).apply { 60 | putExtra( 61 | SearchManager.QUERY, 62 | stringResource(R.string.custom_action_intent_query) 63 | ) 64 | }, 65 | PendingIntent.FLAG_IMMUTABLE 66 | ) 67 | ).build() 68 | val customActionTwo = ChooserAction.Builder( 69 | Icon.createWithResource(this@with, R.drawable.baseline_open_in_browser), 70 | stringResource(id = R.string.sharesheet_custom_action_label_two), 71 | PendingIntent.getActivity( 72 | this@with, 73 | 5678, 74 | Intent(Intent.ACTION_VIEW, Uri.parse("https://www.google.com")), 75 | PendingIntent.FLAG_IMMUTABLE 76 | ) 77 | ).build() 78 | this.putExtra( 79 | Intent.EXTRA_CHOOSER_CUSTOM_ACTIONS, 80 | arrayOf(customActionOne, customActionTwo) 81 | ) 82 | } 83 | startActivity(chooserIntent) 84 | openChooser = false 85 | } 86 | } 87 | Button( 88 | onClick = { 89 | openChooser = true 90 | } 91 | ) { 92 | Text(text = stringResource(R.string.sharesheet_button_title)) 93 | } 94 | } 95 | } 96 | 97 | @PreviewLightDark 98 | @Composable 99 | fun ChooserPreview() { 100 | Android14Theme { 101 | SetupM3Scaffold(Destination.CustomActionIntentChooser) { paddingValues -> 102 | IntentChooserScreen(paddingValues) 103 | } 104 | } 105 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/screens/grammar/GrammarScreen.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.screens.grammar 2 | 3 | import androidx.compose.foundation.layout.Column 4 | import androidx.compose.foundation.layout.PaddingValues 5 | import androidx.compose.foundation.layout.Spacer 6 | import androidx.compose.foundation.layout.fillMaxSize 7 | import androidx.compose.foundation.layout.fillMaxWidth 8 | import androidx.compose.foundation.layout.height 9 | import androidx.compose.foundation.layout.padding 10 | import androidx.compose.foundation.lazy.LazyColumn 11 | import androidx.compose.material3.MaterialTheme 12 | import androidx.compose.material3.Text 13 | import androidx.compose.runtime.Composable 14 | import androidx.compose.ui.Modifier 15 | import androidx.compose.ui.res.stringResource 16 | import androidx.compose.ui.tooling.preview.PreviewLightDark 17 | import androidx.compose.ui.unit.dp 18 | import androidx.lifecycle.viewmodel.compose.viewModel 19 | import me.kartikarora.android14.R 20 | import me.kartikarora.android14.nav.Destination 21 | import me.kartikarora.android14.ui.composables.SetupM3Scaffold 22 | import me.kartikarora.android14.ui.composables.ToggleButton 23 | import me.kartikarora.android14.ui.theme.Android14Theme 24 | import me.kartikarora.android14.viewmodels.GrammaticalInflectionViewModel 25 | 26 | @Composable 27 | fun GrammarScreen( 28 | paddingValues: PaddingValues, 29 | viewModel: GrammaticalInflectionViewModel = viewModel(), 30 | word: String = "", 31 | sentence: String = "", 32 | onLanguageChange: () -> Unit = {}, 33 | onGenderChange: () -> Unit = {} 34 | ) { 35 | 36 | Column( 37 | modifier = Modifier 38 | .fillMaxSize() 39 | .padding( 40 | top = paddingValues.calculateTopPadding(), 41 | start = 16.dp, 42 | end = 16.dp, 43 | bottom = paddingValues.calculateBottomPadding() 44 | ) 45 | ) { 46 | ToggleButton( 47 | options = viewModel.languageOptions.map { 48 | val isSelected = it == viewModel.currentLanguage 49 | it.toToggleButtonOption(isSelected) 50 | } 51 | ) { options -> 52 | val selectedItem = options[0].text 53 | val selectedLanguage = viewModel.languageOptions.find { it.name == selectedItem } 54 | ?: viewModel.currentLanguage 55 | viewModel.updateLanguage(selectedLanguage) 56 | onLanguageChange.invoke() 57 | } 58 | Spacer(modifier = Modifier.height(8.dp)) 59 | ToggleButton( 60 | options = viewModel.genderOptions.map { 61 | it.toToggleButtonOption( 62 | it == viewModel.currentGender 63 | ) 64 | } 65 | ) { options -> 66 | val selectedItem = options[0].text 67 | val selectedGender = viewModel.genderOptions.find { it.item == selectedItem } 68 | ?: viewModel.currentGender 69 | viewModel.updateGender(selectedGender) 70 | onGenderChange.invoke() 71 | } 72 | 73 | Spacer(modifier = Modifier.height(32.dp)) 74 | 75 | LazyColumn { 76 | item { 77 | Text( 78 | style = MaterialTheme.typography.titleLarge, 79 | text = stringResource(R.string.grammar_api_word_title) 80 | ) 81 | Spacer(modifier = Modifier.height(8.dp)) 82 | Text( 83 | modifier = Modifier.fillMaxWidth(), 84 | style = MaterialTheme.typography.bodyLarge, 85 | text = word, 86 | ) 87 | Spacer(modifier = Modifier.height(32.dp)) 88 | Text( 89 | style = MaterialTheme.typography.titleLarge, 90 | text = stringResource(R.string.grammar_api_sentence_title) 91 | ) 92 | Spacer(modifier = Modifier.height(8.dp)) 93 | Text( 94 | modifier = Modifier.fillMaxWidth(), 95 | style = MaterialTheme.typography.bodyLarge, 96 | text = sentence 97 | ) 98 | } 99 | } 100 | 101 | } 102 | } 103 | 104 | @PreviewLightDark 105 | @Composable 106 | fun GrammarPreview() { 107 | Android14Theme { 108 | SetupM3Scaffold(Destination.GrammaticalInflection) { paddingValues -> 109 | GrammarScreen(paddingValues) 110 | } 111 | } 112 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/screens/home/HomeScreen.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.screens.home 2 | 3 | import androidx.compose.foundation.layout.PaddingValues 4 | import androidx.compose.foundation.layout.fillMaxSize 5 | import androidx.compose.foundation.layout.fillMaxWidth 6 | import androidx.compose.foundation.layout.padding 7 | import androidx.compose.foundation.lazy.LazyColumn 8 | import androidx.compose.material3.ExperimentalMaterial3Api 9 | import androidx.compose.material3.MaterialTheme 10 | import androidx.compose.material3.Text 11 | import androidx.compose.material3.TopAppBarDefaults 12 | import androidx.compose.runtime.Composable 13 | import androidx.compose.ui.Modifier 14 | import androidx.compose.ui.input.nestedscroll.nestedScroll 15 | import androidx.compose.ui.res.stringResource 16 | import androidx.compose.ui.tooling.preview.PreviewLightDark 17 | import androidx.compose.ui.unit.dp 18 | import me.kartikarora.android14.R 19 | import me.kartikarora.android14.nav.Destination 20 | import me.kartikarora.android14.ui.composables.ButtonForDemoOf 21 | import me.kartikarora.android14.ui.composables.SetupM3Scaffold 22 | import me.kartikarora.android14.ui.theme.Android14Theme 23 | 24 | @OptIn(ExperimentalMaterial3Api::class) 25 | @Composable 26 | fun HomeScreen( 27 | paddingValues: PaddingValues, 28 | onClick: (Destination) -> Unit = {} 29 | ) { 30 | LazyColumn( 31 | modifier = Modifier 32 | .nestedScroll(TopAppBarDefaults.pinnedScrollBehavior().nestedScrollConnection) 33 | .fillMaxSize() 34 | .padding( 35 | top = paddingValues.calculateTopPadding(), 36 | start = 16.dp, 37 | end = 16.dp, 38 | bottom = paddingValues.calculateBottomPadding() 39 | ) 40 | ) { 41 | item { 42 | Text( 43 | text = stringResource(id = R.string.core_theme_privacy_security), 44 | style = MaterialTheme.typography.labelMedium, 45 | modifier = Modifier 46 | .fillMaxWidth() 47 | .padding(top = 16.dp) 48 | ) 49 | ButtonForDemoOf(Destination.ScreenshotDetection, onClick) 50 | ButtonForDemoOf(Destination.SelectedPhotoAccess, onClick) 51 | Text( 52 | text = stringResource(id = R.string.core_theme_system_ui), 53 | style = MaterialTheme.typography.labelMedium, 54 | modifier = Modifier 55 | .fillMaxWidth() 56 | .padding(top = 16.dp) 57 | ) 58 | ButtonForDemoOf(Destination.BackGesture, onClick) 59 | ButtonForDemoOf(Destination.CustomActionIntentChooser, onClick) 60 | Text( 61 | text = stringResource(id = R.string.core_theme_personalisation), 62 | style = MaterialTheme.typography.labelMedium, 63 | modifier = Modifier 64 | .fillMaxWidth() 65 | .padding(top = 16.dp) 66 | ) 67 | ButtonForDemoOf(Destination.GrammaticalInflection, onClick) 68 | ButtonForDemoOf(Destination.RegionalPrefs, onClick) 69 | } 70 | } 71 | } 72 | 73 | @PreviewLightDark 74 | @Composable 75 | fun HomePreview() { 76 | Android14Theme { 77 | SetupM3Scaffold(Destination.Home) { paddingValues -> 78 | HomeScreen(paddingValues) 79 | } 80 | } 81 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/screens/mediapicker/PickerScreen.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.screens.mediapicker 2 | 3 | import android.Manifest 4 | import android.net.Uri 5 | import androidx.activity.compose.rememberLauncherForActivityResult 6 | import androidx.activity.result.PickVisualMediaRequest 7 | import androidx.activity.result.contract.ActivityResultContracts 8 | import androidx.compose.foundation.layout.Column 9 | import androidx.compose.foundation.layout.PaddingValues 10 | import androidx.compose.foundation.layout.Spacer 11 | import androidx.compose.foundation.layout.fillMaxSize 12 | import androidx.compose.foundation.layout.fillMaxWidth 13 | import androidx.compose.foundation.layout.height 14 | import androidx.compose.foundation.layout.padding 15 | import androidx.compose.foundation.layout.size 16 | import androidx.compose.foundation.lazy.LazyColumn 17 | import androidx.compose.material3.Button 18 | import androidx.compose.material3.Text 19 | import androidx.compose.runtime.Composable 20 | import androidx.compose.runtime.getValue 21 | import androidx.compose.runtime.mutableStateOf 22 | import androidx.compose.runtime.remember 23 | import androidx.compose.runtime.setValue 24 | import androidx.compose.ui.Modifier 25 | import androidx.compose.ui.layout.ContentScale 26 | import androidx.compose.ui.platform.LocalContext 27 | import androidx.compose.ui.res.stringResource 28 | import androidx.compose.ui.tooling.preview.PreviewLightDark 29 | import androidx.compose.ui.unit.dp 30 | import coil.compose.AsyncImage 31 | import me.kartikarora.android14.R 32 | import me.kartikarora.android14.activities.HomeActivity 33 | import me.kartikarora.android14.nav.Destination 34 | import me.kartikarora.android14.ui.composables.SetupM3Scaffold 35 | import me.kartikarora.android14.ui.theme.Android14Theme 36 | import me.kartikarora.android14.utils.findActivity 37 | 38 | @Composable 39 | fun PickerScreen( 40 | paddingValues: PaddingValues 41 | ) { 42 | var selectImages by remember { mutableStateOf(listOf()) } 43 | var showImagesFromContentResolver by remember { mutableStateOf(false) } 44 | val photoPickerLauncher = rememberLauncherForActivityResult( 45 | contract = ActivityResultContracts.PickMultipleVisualMedia(), 46 | onResult = { uris -> selectImages = uris } 47 | ) 48 | val partialAccessPermission = rememberLauncherForActivityResult( 49 | contract = ActivityResultContracts.RequestMultiplePermissions(), 50 | onResult = { 51 | val partialPermissionGranted = 52 | it[Manifest.permission.READ_MEDIA_VISUAL_USER_SELECTED] ?: false 53 | showImagesFromContentResolver = partialPermissionGranted 54 | } 55 | ) 56 | Column( 57 | modifier = Modifier 58 | .fillMaxSize() 59 | .padding( 60 | top = paddingValues.calculateTopPadding(), 61 | start = 16.dp, 62 | end = 16.dp, 63 | bottom = paddingValues.calculateBottomPadding() 64 | ) 65 | ) { 66 | Button( 67 | onClick = { 68 | showImagesFromContentResolver = false 69 | partialAccessPermission.launch( 70 | arrayOf( 71 | Manifest.permission.READ_MEDIA_IMAGES, 72 | Manifest.permission.READ_MEDIA_VISUAL_USER_SELECTED 73 | ) 74 | ) 75 | } 76 | ) { 77 | Text(text = stringResource(R.string.media_picker_permission_button_title)) 78 | } 79 | Spacer(modifier = Modifier.size(8.dp)) 80 | Button( 81 | onClick = { 82 | showImagesFromContentResolver = false 83 | photoPickerLauncher.launch( 84 | PickVisualMediaRequest( 85 | ActivityResultContracts.PickVisualMedia.ImageOnly 86 | ) 87 | ) 88 | } 89 | ) { 90 | Text(text = stringResource(R.string.media_picker_photo_picker_button_title)) 91 | } 92 | 93 | if (showImagesFromContentResolver) { 94 | selectImages = 95 | (LocalContext.current.findActivity() as HomeActivity).getGrantedImageUris() 96 | } 97 | 98 | if (selectImages.isNotEmpty()) { 99 | LazyColumn { 100 | items(selectImages.size) { index -> 101 | val imageUri = selectImages[index] 102 | if (imageUri != null) { 103 | Spacer(modifier = Modifier.height(16.dp)) 104 | AsyncImage( 105 | model = imageUri, 106 | contentDescription = null, 107 | modifier = Modifier.fillMaxWidth(), 108 | contentScale = ContentScale.FillWidth 109 | ) 110 | } 111 | } 112 | } 113 | } 114 | } 115 | } 116 | 117 | @PreviewLightDark 118 | @Composable 119 | fun PickerPreview() { 120 | Android14Theme { 121 | SetupM3Scaffold(Destination.SelectedPhotoAccess) { paddingValues -> 122 | PickerScreen(paddingValues) 123 | } 124 | } 125 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/screens/regionalprefs/RegionalPrefsScreen.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.screens.regionalprefs 2 | 3 | import androidx.compose.foundation.layout.PaddingValues 4 | import androidx.compose.foundation.layout.Spacer 5 | import androidx.compose.foundation.layout.fillMaxSize 6 | import androidx.compose.foundation.layout.height 7 | import androidx.compose.foundation.layout.padding 8 | import androidx.compose.foundation.lazy.LazyColumn 9 | import androidx.compose.material3.MaterialTheme 10 | import androidx.compose.material3.Text 11 | import androidx.compose.runtime.Composable 12 | import androidx.compose.ui.Modifier 13 | import androidx.compose.ui.res.stringResource 14 | import androidx.compose.ui.tooling.preview.PreviewLightDark 15 | import androidx.compose.ui.unit.dp 16 | import androidx.core.text.util.LocalePreferences 17 | import me.kartikarora.android14.R 18 | import me.kartikarora.android14.nav.Destination 19 | import me.kartikarora.android14.ui.composables.SetupM3Scaffold 20 | import me.kartikarora.android14.ui.theme.Android14Theme 21 | import java.util.Locale 22 | 23 | @Composable 24 | fun RegionalPrefsScreen( 25 | paddingValues: PaddingValues 26 | ) { 27 | LazyColumn( 28 | modifier = Modifier 29 | .fillMaxSize() 30 | .padding( 31 | top = paddingValues.calculateTopPadding(), 32 | start = 16.dp, 33 | end = 16.dp, 34 | bottom = paddingValues.calculateBottomPadding() 35 | ) 36 | ) { 37 | item { 38 | // First day of the week 39 | val firstDayOfWeek = stringResource( 40 | R.string.regional_pref_day_suffix, 41 | LocalePreferences.getFirstDayOfWeek() 42 | ) 43 | Text( 44 | text = stringResource(R.string.regional_pref_first_day_of_week_title), 45 | style = MaterialTheme.typography.titleLarge 46 | ) 47 | Text( 48 | text = firstDayOfWeek.replaceFirstChar { if (it.isLowerCase()) it.titlecase(Locale.getDefault()) else it.toString() }, 49 | style = MaterialTheme.typography.bodyLarge 50 | ) 51 | Spacer(modifier = Modifier.height(16.dp)) 52 | 53 | //Temperature Unit 54 | val tempUnit = LocalePreferences.getTemperatureUnit() 55 | .replaceFirstChar { if (it.isLowerCase()) it.titlecase(Locale.getDefault()) else it.toString() } 56 | Text( 57 | text = stringResource(R.string.regional_pref_temperature_unit_title), 58 | style = MaterialTheme.typography.titleLarge 59 | ) 60 | Text( 61 | text = tempUnit, 62 | style = MaterialTheme.typography.bodyLarge 63 | ) 64 | Spacer(modifier = Modifier.height(16.dp)) 65 | 66 | // Hours Cycle 67 | val hourCycle = LocalePreferences.getHourCycle() 68 | .replaceFirstChar { if (it.isLowerCase()) it.titlecase(Locale.getDefault()) else it.toString() } 69 | Text( 70 | text = stringResource(R.string.regional_pref_hour_cycle_title), 71 | style = MaterialTheme.typography.titleLarge 72 | ) 73 | Text( 74 | text = hourCycle, 75 | style = MaterialTheme.typography.bodyLarge 76 | ) 77 | Spacer(modifier = Modifier.height(16.dp)) 78 | 79 | // Calendar Type 80 | val calendarType = LocalePreferences.getCalendarType() 81 | Text( 82 | text = stringResource(R.string.regional_pref_calendar_type_title), 83 | style = MaterialTheme.typography.titleLarge 84 | ) 85 | Text( 86 | text = calendarType.replaceFirstChar { if (it.isLowerCase()) it.titlecase(Locale.getDefault()) else it.toString() }, 87 | style = MaterialTheme.typography.bodyLarge 88 | ) 89 | } 90 | } 91 | } 92 | 93 | @PreviewLightDark 94 | @Composable 95 | fun RegionalPrefsPreview() { 96 | Android14Theme { 97 | SetupM3Scaffold(Destination.RegionalPrefs) { paddingValues -> 98 | RegionalPrefsScreen(paddingValues) 99 | } 100 | } 101 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/screens/screenshot/ScreenshotScreen.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.screens.screenshot 2 | 3 | import androidx.compose.foundation.Image 4 | import androidx.compose.foundation.layout.PaddingValues 5 | import androidx.compose.foundation.layout.Spacer 6 | import androidx.compose.foundation.layout.fillMaxSize 7 | import androidx.compose.foundation.layout.fillMaxWidth 8 | import androidx.compose.foundation.layout.height 9 | import androidx.compose.foundation.layout.padding 10 | import androidx.compose.foundation.layout.wrapContentHeight 11 | import androidx.compose.foundation.lazy.LazyColumn 12 | import androidx.compose.material3.MaterialTheme 13 | import androidx.compose.material3.Text 14 | import androidx.compose.runtime.Composable 15 | import androidx.compose.ui.Modifier 16 | import androidx.compose.ui.res.painterResource 17 | import androidx.compose.ui.text.style.TextAlign 18 | import androidx.compose.ui.tooling.preview.PreviewLightDark 19 | import androidx.compose.ui.unit.dp 20 | import androidx.lifecycle.viewmodel.compose.viewModel 21 | import me.kartikarora.android14.R 22 | import me.kartikarora.android14.nav.Destination 23 | import me.kartikarora.android14.ui.composables.SetupM3Scaffold 24 | import me.kartikarora.android14.ui.composables.quantityStringZeroTwo 25 | import me.kartikarora.android14.ui.theme.Android14Theme 26 | import me.kartikarora.android14.viewmodels.ScreenshotActivityViewModel 27 | 28 | @Composable 29 | fun ScreenshotScreen( 30 | paddingValues: PaddingValues, 31 | viewModel: ScreenshotActivityViewModel = viewModel() 32 | ) { 33 | LazyColumn( 34 | modifier = Modifier 35 | .fillMaxSize() 36 | .padding( 37 | top = paddingValues.calculateTopPadding(), 38 | start = 16.dp, 39 | end = 16.dp, 40 | bottom = paddingValues.calculateBottomPadding() 41 | ) 42 | ) { 43 | item { 44 | val quantity = viewModel.screenShotCount 45 | val text = quantityStringZeroTwo( 46 | zeroResId = R.string.screenshot_count_string_zero, 47 | twoResId = R.string.screenshot_count_string_two, 48 | pluralResId = R.plurals.screenshot_count_string, 49 | quantity = quantity 50 | ) 51 | Text( 52 | modifier = Modifier 53 | .fillMaxSize() 54 | .wrapContentHeight(), 55 | textAlign = TextAlign.Center, 56 | text = text, 57 | style = MaterialTheme.typography.titleLarge 58 | ) 59 | if (quantity >= 3) { 60 | Spacer(modifier = Modifier.height(16.dp)) 61 | Image( 62 | painter = painterResource(id = R.drawable.rma), 63 | contentDescription = "", 64 | modifier = Modifier.fillMaxWidth() 65 | ) 66 | } 67 | } 68 | } 69 | } 70 | 71 | @PreviewLightDark 72 | @Composable 73 | fun ScreenshotPreview() { 74 | Android14Theme { 75 | SetupM3Scaffold(Destination.ScreenshotDetection) { paddingValues -> 76 | ScreenshotScreen(paddingValues) 77 | } 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/ui/composables/ButtonForDemo.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.ui.composables 2 | 3 | import androidx.compose.foundation.layout.fillMaxWidth 4 | import androidx.compose.material3.FilledTonalButton 5 | import androidx.compose.material3.Text 6 | import androidx.compose.runtime.Composable 7 | import androidx.compose.ui.Modifier 8 | import me.kartikarora.android14.nav.Destination 9 | 10 | 11 | @Composable 12 | fun ButtonForDemoOf( 13 | destination: Destination, 14 | onClick: (Destination) -> Unit 15 | ) { 16 | FilledTonalButton( 17 | modifier = Modifier.fillMaxWidth(), 18 | onClick = { onClick.invoke(destination) } 19 | ) { 20 | Text(text = destination.title) 21 | } 22 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/ui/composables/MaterialScaffolds.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.ui.composables 2 | 3 | import android.annotation.SuppressLint 4 | import androidx.compose.foundation.layout.PaddingValues 5 | import androidx.compose.material3.ExperimentalMaterial3Api 6 | import androidx.compose.material3.LargeTopAppBar 7 | import androidx.compose.material3.Scaffold 8 | import androidx.compose.material3.Surface 9 | import androidx.compose.material3.Text 10 | import androidx.compose.material3.TopAppBarDefaults 11 | import androidx.compose.runtime.Composable 12 | import me.kartikarora.android14.nav.Destination 13 | 14 | 15 | @OptIn(ExperimentalMaterial3Api::class) 16 | @SuppressLint("UnusedMaterial3ScaffoldPaddingParameter", "RememberReturnType") 17 | @Composable 18 | fun SetupM3Scaffold(destination: Destination, content: @Composable (PaddingValues) -> Unit = {}) { 19 | Surface { 20 | Scaffold( 21 | topBar = { TopAppBar(destination.title) }, 22 | content = content 23 | ) 24 | } 25 | } 26 | 27 | 28 | @OptIn(ExperimentalMaterial3Api::class) 29 | @Composable 30 | fun TopAppBar(title: String) { 31 | LargeTopAppBar( 32 | title = { Text(text = title) }, 33 | scrollBehavior = TopAppBarDefaults.exitUntilCollapsedScrollBehavior(), 34 | ) 35 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/ui/composables/MultiToggleButton.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.ui.composables 2 | 3 | import androidx.compose.foundation.clickable 4 | import androidx.compose.foundation.layout.Box 5 | import androidx.compose.foundation.layout.Row 6 | import androidx.compose.foundation.layout.Spacer 7 | import androidx.compose.foundation.layout.padding 8 | import androidx.compose.foundation.layout.width 9 | import androidx.compose.foundation.layout.wrapContentSize 10 | import androidx.compose.material.icons.Icons 11 | import androidx.compose.material.icons.filled.CheckCircle 12 | import androidx.compose.material3.ButtonDefaults 13 | import androidx.compose.material3.ExperimentalMaterial3Api 14 | import androidx.compose.material3.FilledTonalButton 15 | import androidx.compose.material3.Icon 16 | import androidx.compose.material3.Text 17 | import androidx.compose.runtime.Composable 18 | import androidx.compose.runtime.mutableStateMapOf 19 | import androidx.compose.runtime.remember 20 | import androidx.compose.ui.Modifier 21 | import androidx.compose.ui.graphics.vector.ImageVector 22 | import androidx.compose.ui.tooling.preview.Preview 23 | import androidx.compose.ui.unit.dp 24 | 25 | @Composable 26 | fun SelectionPill( 27 | option: ToggleButtonOption, 28 | onClick: (option: ToggleButtonOption) -> Unit = {} 29 | ) { 30 | val colors = if (option.selected) { 31 | ButtonDefaults.filledTonalButtonColors() 32 | } else { 33 | ButtonDefaults.textButtonColors() 34 | } 35 | FilledTonalButton( 36 | colors = colors, 37 | onClick = { onClick(option) } 38 | ) { 39 | if (option.iconRes != null) { 40 | Icon( 41 | imageVector = option.iconRes, 42 | contentDescription = "" 43 | ) 44 | Spacer(modifier = Modifier.width(width = 4.dp)) 45 | } 46 | Text( 47 | modifier = Modifier.wrapContentSize(), 48 | text = option.text 49 | ) 50 | } 51 | } 52 | 53 | @OptIn(ExperimentalMaterial3Api::class) 54 | @Composable 55 | fun ToggleButton( 56 | options: List, 57 | modifier: Modifier = Modifier, 58 | type: SelectionType = SelectionType.Single, 59 | onClick: (selectedOptions: List) -> Unit = {}, 60 | ) { 61 | val state = remember { mutableStateMapOf() } 62 | 63 | Box( 64 | modifier = modifier 65 | .wrapContentSize() 66 | .clickable { } 67 | ) { 68 | Row( 69 | modifier = Modifier.padding(horizontal = 4.dp) 70 | ) { 71 | if (options.isEmpty()) { 72 | return@Box 73 | } 74 | state.clear() 75 | options.filter { it.selected } 76 | .forEach { 77 | state[it.text] = it 78 | } 79 | val onItemClick: (option: ToggleButtonOption) -> Unit = { option -> 80 | if (type == SelectionType.Single) { 81 | options.forEach { 82 | val key = it.text 83 | if (key == option.text) { 84 | state[key] = option 85 | } else { 86 | state.remove(key) 87 | } 88 | } 89 | } else { 90 | val key = option.text 91 | if (!state.contains(key)) { 92 | state[key] = option 93 | } else { 94 | state.remove(key) 95 | } 96 | } 97 | onClick(state.values.toList()) 98 | } 99 | if (options.size == 1) { 100 | val option = options.first().apply { 101 | selected = state.contains(text) 102 | } 103 | SelectionPill( 104 | option = option, 105 | onClick = onItemClick, 106 | ) 107 | return@Box 108 | } 109 | val first = options.first().apply { 110 | selected = state.contains(text) 111 | } 112 | val last = options.last().apply { 113 | selected = state.contains(text) 114 | } 115 | val middle = options.slice(1..options.size - 2) 116 | 117 | SelectionPill( 118 | option = first, 119 | onClick = onItemClick, 120 | ) 121 | middle.map { option -> 122 | option.selected = state.contains(option.text) 123 | SelectionPill( 124 | option = option, 125 | onClick = onItemClick, 126 | ) 127 | } 128 | SelectionPill( 129 | option = last, 130 | onClick = onItemClick, 131 | ) 132 | } 133 | } 134 | } 135 | 136 | sealed class SelectionType { 137 | data object None : SelectionType() 138 | data object Single : SelectionType() 139 | data object Multiple : SelectionType() 140 | } 141 | 142 | data class ToggleButtonOption( 143 | val text: String, 144 | val iconRes: ImageVector? = null, 145 | var selected: Boolean = false 146 | ) 147 | 148 | @Preview 149 | @Composable 150 | fun ToggleButtonPreview() { 151 | ToggleButton( 152 | options = listOf( 153 | ToggleButtonOption("one"), 154 | ToggleButtonOption("two", selected = true), 155 | ToggleButtonOption("three", Icons.Default.CheckCircle), 156 | ToggleButtonOption("four", Icons.Default.CheckCircle, selected = true) 157 | ) 158 | ) 159 | } 160 | -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/ui/composables/QuantityString.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.ui.composables 2 | 3 | import androidx.annotation.PluralsRes 4 | import androidx.annotation.StringRes 5 | import androidx.compose.runtime.Composable 6 | import androidx.compose.runtime.ReadOnlyComposable 7 | import androidx.compose.ui.res.pluralStringResource 8 | import androidx.compose.ui.res.stringResource 9 | 10 | @Composable 11 | @ReadOnlyComposable 12 | fun quantityStringZeroTwo( 13 | @StringRes zeroResId: Int, 14 | @StringRes twoResId: Int, 15 | @PluralsRes pluralResId: Int, 16 | quantity: Int, 17 | vararg formatArgs: Any 18 | ): String { 19 | return when (quantity) { 20 | 0 -> stringResource(zeroResId) 21 | 2 -> stringResource(twoResId) 22 | else -> pluralStringResource(pluralResId, quantity, quantity, formatArgs) 23 | } 24 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/ui/theme/Color.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.ui.theme 2 | 3 | import androidx.compose.ui.graphics.Color 4 | 5 | val md_theme_light_primary = Color(0xFF815600) 6 | val md_theme_light_onPrimary = Color(0xFFFFFFFF) 7 | val md_theme_light_primaryContainer = Color(0xFFFFDDB1) 8 | val md_theme_light_onPrimaryContainer = Color(0xFF291800) 9 | val md_theme_light_secondary = Color(0xFF924C00) 10 | val md_theme_light_onSecondary = Color(0xFFFFFFFF) 11 | val md_theme_light_secondaryContainer = Color(0xFFFFDCC4) 12 | val md_theme_light_onSecondaryContainer = Color(0xFF2F1400) 13 | val md_theme_light_tertiary = Color(0xFF9C432F) 14 | val md_theme_light_onTertiary = Color(0xFFFFFFFF) 15 | val md_theme_light_tertiaryContainer = Color(0xFFFFDAD3) 16 | val md_theme_light_onTertiaryContainer = Color(0xFF3D0600) 17 | val md_theme_light_error = Color(0xFFBA1A1A) 18 | val md_theme_light_errorContainer = Color(0xFFFFDAD6) 19 | val md_theme_light_onError = Color(0xFFFFFFFF) 20 | val md_theme_light_onErrorContainer = Color(0xFF410002) 21 | val md_theme_light_background = Color(0xFFFFFBFF) 22 | val md_theme_light_onBackground = Color(0xFF1F1B16) 23 | val md_theme_light_surface = Color(0xFFFFFBFF) 24 | val md_theme_light_onSurface = Color(0xFF1F1B16) 25 | val md_theme_light_surfaceVariant = Color(0xFFEFE0CF) 26 | val md_theme_light_onSurfaceVariant = Color(0xFF4F4539) 27 | val md_theme_light_outline = Color(0xFF817567) 28 | val md_theme_light_inverseOnSurface = Color(0xFFF9EFE7) 29 | val md_theme_light_inverseSurface = Color(0xFF34302A) 30 | val md_theme_light_inversePrimary = Color(0xFFFFBA4A) 31 | val md_theme_light_shadow = Color(0xFF000000) 32 | val md_theme_light_surfaceTint = Color(0xFF815600) 33 | val md_theme_light_outlineVariant = Color(0xFFD3C4B4) 34 | val md_theme_light_scrim = Color(0xFF000000) 35 | 36 | val md_theme_dark_primary = Color(0xFFFFBA4A) 37 | val md_theme_dark_onPrimary = Color(0xFF442B00) 38 | val md_theme_dark_primaryContainer = Color(0xFF624000) 39 | val md_theme_dark_onPrimaryContainer = Color(0xFFFFDDB1) 40 | val md_theme_dark_secondary = Color(0xFFFFB781) 41 | val md_theme_dark_onSecondary = Color(0xFF4E2600) 42 | val md_theme_dark_secondaryContainer = Color(0xFF6F3800) 43 | val md_theme_dark_onSecondaryContainer = Color(0xFFFFDCC4) 44 | val md_theme_dark_tertiary = Color(0xFFFFB4A4) 45 | val md_theme_dark_onTertiary = Color(0xFF5E1607) 46 | val md_theme_dark_tertiaryContainer = Color(0xFF7D2C1B) 47 | val md_theme_dark_onTertiaryContainer = Color(0xFFFFDAD3) 48 | val md_theme_dark_error = Color(0xFFFFB4AB) 49 | val md_theme_dark_errorContainer = Color(0xFF93000A) 50 | val md_theme_dark_onError = Color(0xFF690005) 51 | val md_theme_dark_onErrorContainer = Color(0xFFFFDAD6) 52 | val md_theme_dark_background = Color(0xFF1F1B16) 53 | val md_theme_dark_onBackground = Color(0xFFEAE1D9) 54 | val md_theme_dark_surface = Color(0xFF1F1B16) 55 | val md_theme_dark_onSurface = Color(0xFFEAE1D9) 56 | val md_theme_dark_surfaceVariant = Color(0xFF4F4539) 57 | val md_theme_dark_onSurfaceVariant = Color(0xFFD3C4B4) 58 | val md_theme_dark_outline = Color(0xFF9B8F80) 59 | val md_theme_dark_inverseOnSurface = Color(0xFF1F1B16) 60 | val md_theme_dark_inverseSurface = Color(0xFFEAE1D9) 61 | val md_theme_dark_inversePrimary = Color(0xFF815600) 62 | val md_theme_dark_shadow = Color(0xFF000000) 63 | val md_theme_dark_surfaceTint = Color(0xFFFFBA4A) 64 | val md_theme_dark_outlineVariant = Color(0xFF4F4539) 65 | val md_theme_dark_scrim = Color(0xFF000000) 66 | 67 | 68 | val seed = Color(0xFFEDA100) 69 | -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/ui/theme/Schemes.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.ui.theme 2 | 3 | import androidx.compose.material3.darkColorScheme 4 | import androidx.compose.material3.lightColorScheme 5 | 6 | object Schemes { 7 | val LightColors = lightColorScheme( 8 | primary = md_theme_light_primary, 9 | onPrimary = md_theme_light_onPrimary, 10 | primaryContainer = md_theme_light_primaryContainer, 11 | onPrimaryContainer = md_theme_light_onPrimaryContainer, 12 | secondary = md_theme_light_secondary, 13 | onSecondary = md_theme_light_onSecondary, 14 | secondaryContainer = md_theme_light_secondaryContainer, 15 | onSecondaryContainer = md_theme_light_onSecondaryContainer, 16 | tertiary = md_theme_light_tertiary, 17 | onTertiary = md_theme_light_onTertiary, 18 | tertiaryContainer = md_theme_light_tertiaryContainer, 19 | onTertiaryContainer = md_theme_light_onTertiaryContainer, 20 | error = md_theme_light_error, 21 | errorContainer = md_theme_light_errorContainer, 22 | onError = md_theme_light_onError, 23 | onErrorContainer = md_theme_light_onErrorContainer, 24 | background = md_theme_light_background, 25 | onBackground = md_theme_light_onBackground, 26 | surface = md_theme_light_surface, 27 | onSurface = md_theme_light_onSurface, 28 | surfaceVariant = md_theme_light_surfaceVariant, 29 | onSurfaceVariant = md_theme_light_onSurfaceVariant, 30 | outline = md_theme_light_outline, 31 | inverseOnSurface = md_theme_light_inverseOnSurface, 32 | inverseSurface = md_theme_light_inverseSurface, 33 | inversePrimary = md_theme_light_inversePrimary, 34 | surfaceTint = md_theme_light_surfaceTint, 35 | outlineVariant = md_theme_light_outlineVariant, 36 | scrim = md_theme_light_scrim, 37 | ) 38 | 39 | val DarkColors = darkColorScheme( 40 | primary = md_theme_dark_primary, 41 | onPrimary = md_theme_dark_onPrimary, 42 | primaryContainer = md_theme_dark_primaryContainer, 43 | onPrimaryContainer = md_theme_dark_onPrimaryContainer, 44 | secondary = md_theme_dark_secondary, 45 | onSecondary = md_theme_dark_onSecondary, 46 | secondaryContainer = md_theme_dark_secondaryContainer, 47 | onSecondaryContainer = md_theme_dark_onSecondaryContainer, 48 | tertiary = md_theme_dark_tertiary, 49 | onTertiary = md_theme_dark_onTertiary, 50 | tertiaryContainer = md_theme_dark_tertiaryContainer, 51 | onTertiaryContainer = md_theme_dark_onTertiaryContainer, 52 | error = md_theme_dark_error, 53 | errorContainer = md_theme_dark_errorContainer, 54 | onError = md_theme_dark_onError, 55 | onErrorContainer = md_theme_dark_onErrorContainer, 56 | background = md_theme_dark_background, 57 | onBackground = md_theme_dark_onBackground, 58 | surface = md_theme_dark_surface, 59 | onSurface = md_theme_dark_onSurface, 60 | surfaceVariant = md_theme_dark_surfaceVariant, 61 | onSurfaceVariant = md_theme_dark_onSurfaceVariant, 62 | outline = md_theme_dark_outline, 63 | inverseOnSurface = md_theme_dark_inverseOnSurface, 64 | inverseSurface = md_theme_dark_inverseSurface, 65 | inversePrimary = md_theme_dark_inversePrimary, 66 | surfaceTint = md_theme_dark_surfaceTint, 67 | outlineVariant = md_theme_dark_outlineVariant, 68 | scrim = md_theme_dark_scrim, 69 | ) 70 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/ui/theme/Theme.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.ui.theme 2 | 3 | import android.app.Activity 4 | import android.os.Build 5 | import androidx.compose.foundation.isSystemInDarkTheme 6 | import androidx.compose.material3.MaterialTheme 7 | import androidx.compose.material3.lightColorScheme 8 | import androidx.compose.material3.darkColorScheme 9 | import androidx.compose.material3.dynamicDarkColorScheme 10 | import androidx.compose.material3.dynamicLightColorScheme 11 | import androidx.compose.runtime.Composable 12 | import androidx.compose.runtime.SideEffect 13 | import androidx.compose.ui.graphics.Color 14 | import androidx.compose.ui.graphics.toArgb 15 | import androidx.compose.ui.platform.LocalContext 16 | import androidx.compose.ui.platform.LocalView 17 | import androidx.core.view.WindowCompat 18 | 19 | @Composable 20 | fun Android14Theme( 21 | useDarkTheme: Boolean = isSystemInDarkTheme(), 22 | useDynamicColor: Boolean = true, 23 | content: @Composable() () -> Unit 24 | ) { 25 | 26 | val colors = when (useDynamicColor) { 27 | true -> with(LocalContext.current) { 28 | if (useDarkTheme) dynamicDarkColorScheme(this) else dynamicLightColorScheme(this) 29 | } 30 | false -> if (useDarkTheme) Schemes.DarkColors else Schemes.LightColors 31 | } 32 | 33 | TransparentDecorEffect(useDarkTheme) 34 | 35 | MaterialTheme( 36 | colorScheme = colors, 37 | content = content 38 | ) 39 | } 40 | 41 | @Composable 42 | fun TransparentDecorEffect( 43 | useDarkTheme: Boolean = isSystemInDarkTheme(), 44 | ) { 45 | val view = LocalView.current 46 | if (!view.isInEditMode) { 47 | SideEffect { 48 | val window = (view.context as Activity).window 49 | window.statusBarColor = Color.Transparent.toArgb() 50 | window.navigationBarColor = Color.Transparent.toArgb() 51 | window.isNavigationBarContrastEnforced = false 52 | 53 | val windowsInsetsController = WindowCompat.getInsetsController(window, view) 54 | windowsInsetsController.isAppearanceLightStatusBars = !useDarkTheme 55 | windowsInsetsController.isAppearanceLightNavigationBars = !useDarkTheme 56 | } 57 | } 58 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/utils/Utils.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.utils 2 | 3 | import android.content.Context 4 | import android.content.ContextWrapper 5 | import androidx.activity.ComponentActivity 6 | 7 | 8 | fun Context.findActivity(): ComponentActivity { 9 | var context = this 10 | while (context is ContextWrapper) { 11 | if (context is ComponentActivity) return context 12 | context = context.baseContext 13 | } 14 | throw IllegalStateException("no activity") 15 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/viewmodels/GrammaticalInflictionViewModel.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.viewmodels 2 | 3 | import android.content.res.Configuration 4 | import androidx.compose.runtime.getValue 5 | import androidx.compose.runtime.mutableStateOf 6 | import androidx.compose.runtime.setValue 7 | import androidx.core.os.LocaleListCompat 8 | import androidx.lifecycle.SavedStateHandle 9 | import androidx.lifecycle.ViewModel 10 | import me.kartikarora.android14.ui.composables.ToggleButtonOption 11 | import java.io.Serializable 12 | 13 | class GrammaticalInflectionViewModel( 14 | private val savedStateHandle: SavedStateHandle 15 | ) : ViewModel() { 16 | 17 | companion object { 18 | private const val KEY_CURRENT_LANGUAGE = "_KEY_CURRENT_LANGUAGE" 19 | private const val KEY_CURRENT_GENDER = "_KEY_CURRENT_GENDER" 20 | } 21 | 22 | val languageOptions = listOf( 23 | Languages.English, 24 | Languages.Vietnamese, 25 | Languages.Spanish, 26 | Languages.French 27 | ) 28 | 29 | val genderOptions = listOf( 30 | Genders.Neutral, 31 | Genders.Masculine, 32 | Genders.Feminine 33 | ) 34 | 35 | var currentLanguage by mutableStateOf( 36 | savedStateHandle[KEY_CURRENT_LANGUAGE] ?: Languages.English 37 | ) 38 | var currentGender by mutableStateOf( 39 | savedStateHandle[KEY_CURRENT_GENDER] ?: Genders.Neutral 40 | ) 41 | 42 | fun updateLanguage(language: Languages) { 43 | currentLanguage = language 44 | savedStateHandle[KEY_CURRENT_LANGUAGE] = language 45 | } 46 | 47 | fun updateGender(gender: Genders) { 48 | currentGender = gender 49 | savedStateHandle[KEY_CURRENT_GENDER] = gender 50 | } 51 | 52 | sealed class Languages(private val languageTag: String) : Serializable { 53 | 54 | data object English : Languages("en-AU") 55 | data object French : Languages("fr-FR") 56 | data object Spanish : Languages("es-ES") 57 | data object Vietnamese : Languages("vi-VN") 58 | 59 | val name: String 60 | get() { 61 | val locale = toLocaleList().get(0) 62 | return locale?.getDisplayLanguage(locale) 63 | ?.replaceFirstChar { if (it.isLowerCase()) it.titlecase(locale) else it.toString() } 64 | ?: "" 65 | } 66 | 67 | fun toLocaleList(): LocaleListCompat { 68 | return LocaleListCompat.forLanguageTags(this.languageTag) 69 | } 70 | 71 | fun toToggleButtonOption(isCurrent: Boolean): ToggleButtonOption { 72 | return ToggleButtonOption(name, selected = isCurrent) 73 | } 74 | } 75 | 76 | sealed class Genders(val inflection: Int) : Serializable { 77 | data object Masculine : Genders(Configuration.GRAMMATICAL_GENDER_MASCULINE) 78 | data object Feminine : Genders(Configuration.GRAMMATICAL_GENDER_FEMININE) 79 | data object Neutral : Genders(Configuration.GRAMMATICAL_GENDER_NEUTRAL) 80 | 81 | val item: String get() = this.javaClass.simpleName 82 | fun toToggleButtonOption(isCurrent: Boolean): ToggleButtonOption { 83 | return ToggleButtonOption(item, selected = isCurrent) 84 | } 85 | } 86 | } -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/viewmodels/HomeViewModel.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.viewmodels 2 | 3 | import androidx.compose.runtime.getValue 4 | import androidx.compose.runtime.mutableStateOf 5 | import androidx.compose.runtime.setValue 6 | import androidx.lifecycle.SavedStateHandle 7 | import androidx.lifecycle.ViewModel 8 | import me.kartikarora.android14.nav.Destination 9 | 10 | class HomeViewModel( 11 | private val savedStateHandle: SavedStateHandle 12 | ) : ViewModel() { 13 | 14 | companion object { 15 | private const val KEY_CURRENT_DESTINATION = "_KEY_CURRENT_DESTINATION" 16 | private const val KEY_PREV_DESTINATION = "_KEY_PREV_DESTINATION" 17 | } 18 | 19 | var prevScreen by mutableStateOf( 20 | savedStateHandle[KEY_PREV_DESTINATION] ?: Destination.Home 21 | ) 22 | 23 | 24 | var currentScreen by mutableStateOf( 25 | savedStateHandle[KEY_CURRENT_DESTINATION] ?: Destination.Home 26 | ) 27 | 28 | fun updateDestination(destination: Destination) { 29 | currentScreen = destination 30 | savedStateHandle[KEY_CURRENT_DESTINATION] = destination 31 | } 32 | 33 | fun updatePrevScreen(destination: Destination) { 34 | prevScreen = destination 35 | savedStateHandle[KEY_PREV_DESTINATION] = destination 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /app/src/main/kotlin/me/kartikarora/android14/viewmodels/ScreenshotActivityViewModel.kt: -------------------------------------------------------------------------------- 1 | package me.kartikarora.android14.viewmodels 2 | 3 | import androidx.compose.runtime.getValue 4 | import androidx.compose.runtime.mutableStateOf 5 | import androidx.compose.runtime.setValue 6 | import androidx.lifecycle.SavedStateHandle 7 | import androidx.lifecycle.ViewModel 8 | 9 | class ScreenshotActivityViewModel( 10 | private val savedStateHandle: SavedStateHandle 11 | ) : ViewModel() { 12 | 13 | companion object { 14 | const val KEY_SCREENSHOT_COUNT = "_KEY_SCREENSHOT_COUNT" 15 | } 16 | 17 | var screenShotCount by mutableStateOf(savedStateHandle[KEY_SCREENSHOT_COUNT] ?: 0) 18 | 19 | fun onScreensCaptured() { 20 | savedStateHandle[KEY_SCREENSHOT_COUNT] = ++screenShotCount 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_open_in_browser.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_search.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 6 | 11 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | 31 | 32 | 33 | 34 | 37 | 38 | 39 | 40 | 43 | 44 | 45 | 46 | 49 | 50 | 51 | 52 | 55 | 56 | 57 | 58 | 61 | 62 | 63 | 64 | 67 | 68 | 69 | 70 | 73 | 74 | 75 | 76 | 79 | 80 | 81 | 82 | 85 | 86 | 87 | 88 | 91 | 92 | 93 | 94 | 97 | 98 | 99 | 100 | 103 | 104 | 105 | 106 | 109 | 110 | 111 | 112 | 115 | 116 | 117 | 118 | 121 | 122 | 125 | 128 | 131 | 134 | 137 | 140 | 143 | 146 | 149 | 152 | 155 | 156 | 157 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 11 | 13 | 16 | 17 | 18 | 20 | 23 | 24 | 25 | 27 | 30 | 31 | 32 | 34 | 37 | 38 | 39 | 41 | 44 | 45 | 46 | 48 | 51 | 52 | 53 | 55 | 58 | 59 | 60 | 62 | 65 | 66 | 67 | 69 | 72 | 73 | 74 | 76 | 79 | 80 | 81 | 83 | 86 | 87 | 88 | 90 | 93 | 94 | 95 | 97 | 100 | 101 | 102 | 104 | 107 | 108 | 109 | 111 | 114 | 115 | 116 | 118 | 121 | 122 | 123 | 125 | 128 | 129 | 130 | 132 | 135 | 136 | 139 | 140 | 141 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/rma.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikarora/android-14/aeaff5747f7be18fdf88417c2b3b62f4d4333ddc/app/src/main/res/drawable/rma.jpeg -------------------------------------------------------------------------------- /app/src/main/res/mipmap/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/resources.properties: -------------------------------------------------------------------------------- 1 | unqualifiedResLocale=en-AU -------------------------------------------------------------------------------- /app/src/main/res/values-en-feminine/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Waitress 3 | The restaurant is hiring a new waitress for the busy season. 4 | -------------------------------------------------------------------------------- /app/src/main/res/values-en-masculine/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Waiter 3 | The restaurant is hiring a new waiter for the busy season. 4 | -------------------------------------------------------------------------------- /app/src/main/res/values-en-neuter/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Waiter/Waitress 3 | The restaurant is hiring a new waiter/waitress for the busy season. 4 | -------------------------------------------------------------------------------- /app/src/main/res/values-es-feminine/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Camarera 3 | El restaurante está contratando a una nueva camarera para la temporada ocupada. 4 | -------------------------------------------------------------------------------- /app/src/main/res/values-es-masculine/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Camarero 3 | El restaurante está contratando a un nuevo camarero para la temporada ocupada. 4 | -------------------------------------------------------------------------------- /app/src/main/res/values-es-neuter/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Mesero/Mesera 3 | El restaurante está contratando a un nuevo mesero/una nueva mesera para la temporada ocupada. 4 | -------------------------------------------------------------------------------- /app/src/main/res/values-fr-feminine/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Serveuse 3 | Le restaurant embauche une nouvelle serveuse pour la saison occupée. 4 | -------------------------------------------------------------------------------- /app/src/main/res/values-fr-masculine/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Serveur 3 | Le restaurant embauche un nouveau serveur pour la saison occupée. 4 | -------------------------------------------------------------------------------- /app/src/main/res/values-fr-neuter/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Serveur/Serveuse 3 | Le restaurant embauche un nouveau serveur/une nouvelle serveuse pour la saison occupée. 4 | -------------------------------------------------------------------------------- /app/src/main/res/values-vi-feminine/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Nữ phục vụ 3 | Nhà hàng đang cần tuyển nữ phục vụ cho mùa cao điểm. 4 | -------------------------------------------------------------------------------- /app/src/main/res/values-vi-masculine/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Nam phục vụ 3 | Nhà hàng đang cần tuyển nam phục vụ cho mùa cao điểm. 4 | -------------------------------------------------------------------------------- /app/src/main/res/values-vi-neuter/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Nam/Nữ phục vụ 3 | Nhà hàng đang cần tuyển nam/nữ phục vụ cho mùa cao điểm. 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #F86734 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Android 14 3 | 4 | I dare you to take a screenshot 5 | Seriously, DON\'T 6 | 7 | @string/screenshot_count_string_zero 8 | Don\'t do it again 9 | @string/screenshot_count_string_two 10 | Okay you have been reported to the authorities 11 | 12 | %1$sday 13 | Calendar type 14 | First day of week 15 | Hour cycle 16 | Temperature Unit 17 | 18 | Waiter/Waitress 19 | The restaurant is hiring a new waiter/waitress for the busy season. 20 | Do the back gesture, come on. Don\'t be shy. 21 | Android 14 22 | Android 14 Demo Share 23 | Share via 24 | image/* 25 | Word 26 | Sentence 27 | Launch permission dialog 28 | Launch photo picker 29 | 30 | 31 | Privacy And Security 32 | System UI 33 | Personalisation 34 | 35 | Launch Sharesheet 36 | Perform a Search 37 | Open in Browser 38 | -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |