├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ ├── values │ │ │ │ └── strings.xml │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ └── drawable │ │ │ │ └── ic_launcher_background.xml │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── emperorfin │ │ │ └── android │ │ │ └── militaryjet │ │ │ └── ExampleUnitTest.kt │ └── androidTest │ │ └── java │ │ └── emperorfin │ │ └── android │ │ └── militaryjet │ │ └── ExampleInstrumentedTest.kt ├── proguard-rules.pro └── build.gradle ├── components ├── .gitignore ├── consumer-rules.pro ├── out │ └── failures │ │ ├── emperorfin.android.components.screenshots_HelloComposeTest_screenshot_Hello_Paparazzi.png │ │ └── delta-emperorfin.android.components.screenshots_HelloComposeTest_screenshot_Hello_Paparazzi.png ├── src │ ├── test │ │ ├── snapshots │ │ │ └── images │ │ │ │ ├── emperorfin.android.components.screenshots_HelloComposeTest_screenshot_Hello_Paparazzi.png │ │ │ │ ├── emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationErrorDialogTest_dialog_Displays.png │ │ │ │ ├── emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationButtonTest_sign_In_Button_Disabled.png │ │ │ │ ├── emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationButtonTest_sign_In_Button_Enabled.png │ │ │ │ ├── emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationButtonTest_sign_Up_Button_Disabled.png │ │ │ │ └── emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationButtonTest_sign_Up_Button_Enabled.png │ │ ├── java │ │ │ └── emperorfin │ │ │ │ └── android │ │ │ │ └── components │ │ │ │ ├── screenshots │ │ │ │ ├── ui │ │ │ │ │ ├── constants │ │ │ │ │ │ ├── BooleanConstants.kt │ │ │ │ │ │ └── StringResourceConstants.kt │ │ │ │ │ └── screens │ │ │ │ │ │ └── authentication │ │ │ │ │ │ └── uicomponents │ │ │ │ │ │ ├── AuthenticationErrorDialogTest.kt │ │ │ │ │ │ └── AuthenticationButtonTest.kt │ │ │ │ └── HelloComposeTest.kt │ │ │ │ └── ExampleUnitTest.kt │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ ├── main │ │ ├── res │ │ │ └── values │ │ │ │ ├── integers.xml │ │ │ │ ├── bools.xml │ │ │ │ ├── themes.xml │ │ │ │ ├── fractions.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ └── strings.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── emperorfin │ │ │ └── android │ │ │ └── components │ │ │ └── ui │ │ │ ├── screens │ │ │ ├── authentication │ │ │ │ ├── enums │ │ │ │ │ ├── AuthenticationMode.kt │ │ │ │ │ └── PasswordRequirement.kt │ │ │ │ ├── events │ │ │ │ │ └── AuthenticationEvent.kt │ │ │ │ ├── stateholders │ │ │ │ │ └── AuthenticationUiState.kt │ │ │ │ ├── uicomponents │ │ │ │ │ ├── PasswordRequirements.kt │ │ │ │ │ ├── AuthenticationTitle.kt │ │ │ │ │ ├── AuthenticationButton.kt │ │ │ │ │ ├── tags │ │ │ │ │ │ └── Tags.kt │ │ │ │ │ ├── AuthenticationToggleMode.kt │ │ │ │ │ ├── AuthenticationErrorDialog.kt │ │ │ │ │ ├── AuthenticationContent.kt │ │ │ │ │ ├── Requirement.kt.another_approach │ │ │ │ │ ├── EmailInput.kt │ │ │ │ │ └── Requirement.kt │ │ │ │ └── AuthenticationScreen.kt │ │ │ └── MainActivity.kt │ │ │ ├── res │ │ │ ├── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Type.kt │ │ │ │ └── Theme.kt │ │ │ └── FractionResources.kt │ │ │ └── fortesting │ │ │ ├── TextSemantics.kt │ │ │ ├── CircularProgressIndicatorSemantics.kt │ │ │ ├── AlertDialogSemantics.kt │ │ │ ├── IconSemantics.kt │ │ │ └── TextFieldSemantics.kt │ └── androidTest │ │ ├── java │ │ └── emperorfin │ │ │ └── android │ │ │ └── components │ │ │ ├── ui │ │ │ ├── constants │ │ │ │ ├── NothingConstants.kt │ │ │ │ ├── BooleanConstants.kt │ │ │ │ ├── ImeActionConstants.kt │ │ │ │ ├── KeyboardTypeConstants.kt │ │ │ │ ├── VisualTransformationConstants.kt │ │ │ │ ├── ImageVectorConstants.kt │ │ │ │ ├── LongConstants.kt │ │ │ │ ├── StringConstants.kt │ │ │ │ ├── ColorArgbConstants.kt │ │ │ │ └── StringResourceConstants.kt │ │ │ ├── extensions │ │ │ │ ├── semanticsmatcher │ │ │ │ │ ├── AlertDialogSemanticsMatchers.kt │ │ │ │ │ ├── TextSemanticsMatchers.kt │ │ │ │ │ ├── CircularProgressIndicatorSemanticsMatchers.kt │ │ │ │ │ └── IconSemanticsMatchers.kt │ │ │ │ └── ComposeContentTestRuleExtensions.kt │ │ │ ├── screens │ │ │ │ └── authentication │ │ │ │ │ └── uicomponents │ │ │ │ │ ├── AuthenticationTitleTest5.kt │ │ │ │ │ ├── AuthenticationTitleTest4.kt │ │ │ │ │ └── AuthenticationTitleTest3.kt │ │ │ └── utils │ │ │ │ └── KeyboardHelper.kt │ │ │ └── ExampleInstrumentedTest.kt │ │ └── res │ │ └── values │ │ └── strings.xml ├── proguard-rules.pro └── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── settings.gradle ├── .gitignore ├── gradle.properties ├── gradlew.bat ├── README.md └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /components/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /components/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /components/out/failures/emperorfin.android.components.screenshots_HelloComposeTest_screenshot_Hello_Paparazzi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/components/out/failures/emperorfin.android.components.screenshots_HelloComposeTest_screenshot_Hello_Paparazzi.png -------------------------------------------------------------------------------- /components/out/failures/delta-emperorfin.android.components.screenshots_HelloComposeTest_screenshot_Hello_Paparazzi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/components/out/failures/delta-emperorfin.android.components.screenshots_HelloComposeTest_screenshot_Hello_Paparazzi.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed May 17 22:46:21 WAT 2023 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /components/src/test/snapshots/images/emperorfin.android.components.screenshots_HelloComposeTest_screenshot_Hello_Paparazzi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/components/src/test/snapshots/images/emperorfin.android.components.screenshots_HelloComposeTest_screenshot_Hello_Paparazzi.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /components/src/test/snapshots/images/emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationErrorDialogTest_dialog_Displays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/components/src/test/snapshots/images/emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationErrorDialogTest_dialog_Displays.png -------------------------------------------------------------------------------- /components/src/test/snapshots/images/emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationButtonTest_sign_In_Button_Disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/components/src/test/snapshots/images/emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationButtonTest_sign_In_Button_Disabled.png -------------------------------------------------------------------------------- /components/src/test/snapshots/images/emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationButtonTest_sign_In_Button_Enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/components/src/test/snapshots/images/emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationButtonTest_sign_In_Button_Enabled.png -------------------------------------------------------------------------------- /components/src/test/snapshots/images/emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationButtonTest_sign_Up_Button_Disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/components/src/test/snapshots/images/emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationButtonTest_sign_Up_Button_Disabled.png -------------------------------------------------------------------------------- /components/src/test/snapshots/images/emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationButtonTest_sign_Up_Button_Enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emperorfin/MilitaryJet/HEAD/components/src/test/snapshots/images/emperorfin.android.components.screenshots.ui.screens.authentication.uicomponents_AuthenticationButtonTest_sign_Up_Button_Enabled.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | google() 5 | mavenCentral() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | } 14 | } 15 | rootProject.name = "Military Jet" 16 | include ':app' 17 | include ':components' 18 | -------------------------------------------------------------------------------- /app/src/test/java/emperorfin/android/militaryjet/ExampleUnitTest.kt: -------------------------------------------------------------------------------- 1 | package emperorfin.android.militaryjet 2 | 3 | import org.junit.Test 4 | 5 | import org.junit.Assert.* 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * See [testing documentation](http://d.android.com/tools/testing). 11 | */ 12 | class ExampleUnitTest { 13 | @Test 14 | fun addition_isCorrect() { 15 | assertEquals(4, 2 + 2) 16 | } 17 | } -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 12 | 13 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | Military Jet 19 | -------------------------------------------------------------------------------- /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. 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 -------------------------------------------------------------------------------- /components/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 1 20 | -------------------------------------------------------------------------------- /components/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. 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 -------------------------------------------------------------------------------- /components/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/androidTest/java/emperorfin/android/militaryjet/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- 1 | package emperorfin.android.militaryjet 2 | 3 | import androidx.test.platform.app.InstrumentationRegistry 4 | import androidx.test.ext.junit.runners.AndroidJUnit4 5 | 6 | import org.junit.Test 7 | import org.junit.runner.RunWith 8 | 9 | import org.junit.Assert.* 10 | 11 | /** 12 | * Instrumented test, which will execute on an Android device. 13 | * 14 | * See [testing documentation](http://d.android.com/tools/testing). 15 | */ 16 | @RunWith(AndroidJUnit4::class) 17 | class ExampleInstrumentedTest { 18 | @Test 19 | fun useAppContext() { 20 | // Context of the app under test. 21 | val appContext = InstrumentationRegistry.getInstrumentation().targetContext 22 | assertEquals("emperorfin.android.militaryjet", appContext.packageName) 23 | } 24 | } -------------------------------------------------------------------------------- /components/src/main/res/values/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | true 20 | false 21 | -------------------------------------------------------------------------------- /components/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 |