├── .gitignore ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── other.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── flexcode │ │ └── authenticationapp │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── flexcode │ │ │ └── authenticationapp │ │ │ ├── AuthApp.kt │ │ │ ├── HomeScreen.kt │ │ │ ├── MainActivity.kt │ │ │ ├── common │ │ │ ├── TextFieldState.kt │ │ │ └── UiState.kt │ │ │ ├── data │ │ │ ├── local │ │ │ │ └── AuthPreferences.kt │ │ │ ├── models │ │ │ │ ├── Data.kt │ │ │ │ ├── Support.kt │ │ │ │ └── UserDto.kt │ │ │ ├── remote │ │ │ │ ├── ApiService.kt │ │ │ │ ├── request │ │ │ │ │ └── AuthRequest.kt │ │ │ │ └── response │ │ │ │ │ ├── AuthResponse.kt │ │ │ │ │ └── RegisterResponse.kt │ │ │ └── repository │ │ │ │ └── AuthRepositoryImpl.kt │ │ │ ├── di │ │ │ └── AppModule.kt │ │ │ ├── domain │ │ │ ├── model │ │ │ │ ├── AuthResult.kt │ │ │ │ └── User.kt │ │ │ ├── repository │ │ │ │ └── AuthRepository.kt │ │ │ └── use_case │ │ │ │ ├── LoginUseCase.kt │ │ │ │ └── RegisterUseCase.kt │ │ │ ├── presentation │ │ │ ├── AuthState.kt │ │ │ ├── AuthViewModel.kt │ │ │ ├── login │ │ │ │ └── LoginScreen.kt │ │ │ ├── register │ │ │ │ └── RegisterScreen.kt │ │ │ └── welcome │ │ │ │ └── WelcomeScreen.kt │ │ │ ├── ui │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Shape.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ └── util │ │ │ ├── Constants.kt │ │ │ └── Resource.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── image.jpg │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── 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 │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── flexcode │ └── authenticationapp │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots ├── login.png ├── register.png └── welcome.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Authentication App -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/flexcode/authenticationapp/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/androidTest/java/com/flexcode/authenticationapp/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/AuthApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/AuthApp.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/HomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/HomeScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/common/TextFieldState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/common/TextFieldState.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/common/UiState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/common/UiState.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/data/local/AuthPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/data/local/AuthPreferences.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/data/models/Data.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/data/models/Data.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/data/models/Support.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/data/models/Support.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/data/models/UserDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/data/models/UserDto.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/data/remote/ApiService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/data/remote/ApiService.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/data/remote/request/AuthRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/data/remote/request/AuthRequest.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/data/remote/response/AuthResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/data/remote/response/AuthResponse.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/data/remote/response/RegisterResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/data/remote/response/RegisterResponse.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/data/repository/AuthRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/data/repository/AuthRepositoryImpl.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/di/AppModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/domain/model/AuthResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/domain/model/AuthResult.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/domain/model/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/domain/model/User.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/domain/repository/AuthRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/domain/repository/AuthRepository.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/domain/use_case/LoginUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/domain/use_case/LoginUseCase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/domain/use_case/RegisterUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/domain/use_case/RegisterUseCase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/presentation/AuthState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/presentation/AuthState.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/presentation/AuthViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/presentation/AuthViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/presentation/login/LoginScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/presentation/login/LoginScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/presentation/register/RegisterScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/presentation/register/RegisterScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/presentation/welcome/WelcomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/presentation/welcome/WelcomeScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/ui/theme/Shape.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/util/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/util/Constants.kt -------------------------------------------------------------------------------- /app/src/main/java/com/flexcode/authenticationapp/util/Resource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/java/com/flexcode/authenticationapp/util/Resource.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/drawable/image.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/flexcode/authenticationapp/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/app/src/test/java/com/flexcode/authenticationapp/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshots/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/screenshots/login.png -------------------------------------------------------------------------------- /screenshots/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/screenshots/register.png -------------------------------------------------------------------------------- /screenshots/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/screenshots/welcome.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Kariuki/Authentication/HEAD/settings.gradle --------------------------------------------------------------------------------