├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── lint-baseline.xml ├── proguard-rules.pro └── src │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── kotlin │ │ └── com │ │ │ └── akinci │ │ │ └── androidtemplate │ │ │ ├── core │ │ │ ├── application │ │ │ │ ├── App.kt │ │ │ │ └── AppConfig.kt │ │ │ ├── compose │ │ │ │ └── UIModePreviews.kt │ │ │ ├── coroutine │ │ │ │ └── ContextProvider.kt │ │ │ ├── di │ │ │ │ └── AppModule.kt │ │ │ ├── logger │ │ │ │ └── LoggerInitializer.kt │ │ │ ├── mvi │ │ │ │ ├── EffectCollector.kt │ │ │ │ └── MviViewModel.kt │ │ │ └── splash │ │ │ │ └── SplashActivity.kt │ │ │ ├── data │ │ │ └── DataLayerFiller.kt │ │ │ ├── domain │ │ │ └── DomainLayerFiller.kt │ │ │ └── ui │ │ │ ├── ds │ │ │ ├── components │ │ │ │ ├── ComponentLayerFiller.kt │ │ │ │ └── InfiniteLottieAnimation.kt │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Shape.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ ├── features │ │ │ ├── dashboard │ │ │ │ ├── DashboardScreen.kt │ │ │ │ ├── DashboardViewContract.kt │ │ │ │ └── DashboardViewModel.kt │ │ │ ├── detail │ │ │ │ ├── DetailScreen.kt │ │ │ │ ├── DetailViewContract.kt │ │ │ │ └── DetailViewModel.kt │ │ │ ├── main │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainScreen.kt │ │ │ └── splash │ │ │ │ ├── SplashScreen.kt │ │ │ │ ├── SplashViewContract.kt │ │ │ │ └── SplashViewModel.kt │ │ │ └── navigation │ │ │ ├── DestinationExt.kt │ │ │ └── animations │ │ │ ├── FadeInOutAnimation.kt │ │ │ └── SlideHorizontallyAnimation.kt │ └── res │ │ ├── drawable │ │ ├── ic_launcher_foreground.xml │ │ └── ic_transparent.xml │ │ ├── font │ │ └── roboto_regular.ttf │ │ ├── mipmap-anydpi │ │ ├── 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 │ │ ├── raw │ │ └── blocks.json │ │ ├── values-night │ │ └── colors.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── kotlin │ └── com │ └── akinci │ └── androidtemplate │ ├── core │ ├── coroutine │ │ ├── MainDispatcherRule.kt │ │ └── TestContextProvider.kt │ └── logger │ │ └── LoggerInitializerTest.kt │ ├── data │ └── DataLayerFillerTest.kt │ ├── domain │ └── DomainLayerFillerTest.kt │ └── ui │ ├── DashboardViewModelTest.kt │ ├── DetailViewModelTest.kt │ ├── SplashViewModelTest.kt │ └── UILayerFillerTest.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/lint-baseline.xml -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/core/application/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/core/application/App.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/core/application/AppConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/core/application/AppConfig.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/core/compose/UIModePreviews.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/core/compose/UIModePreviews.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/core/coroutine/ContextProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/core/coroutine/ContextProvider.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/core/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/core/di/AppModule.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/core/logger/LoggerInitializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/core/logger/LoggerInitializer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/core/mvi/EffectCollector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/core/mvi/EffectCollector.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/core/mvi/MviViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/core/mvi/MviViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/core/splash/SplashActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/core/splash/SplashActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/data/DataLayerFiller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/data/DataLayerFiller.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/domain/DomainLayerFiller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/domain/DomainLayerFiller.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/ds/components/ComponentLayerFiller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/ds/components/ComponentLayerFiller.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/ds/components/InfiniteLottieAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/ds/components/InfiniteLottieAnimation.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/ds/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/ds/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/ds/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/ds/theme/Shape.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/ds/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/ds/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/ds/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/ds/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/features/dashboard/DashboardScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/features/dashboard/DashboardScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/features/dashboard/DashboardViewContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/features/dashboard/DashboardViewContract.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/features/dashboard/DashboardViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/features/dashboard/DashboardViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/features/detail/DetailScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/features/detail/DetailScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/features/detail/DetailViewContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/features/detail/DetailViewContract.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/features/detail/DetailViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/features/detail/DetailViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/features/main/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/features/main/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/features/main/MainScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/features/main/MainScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/features/splash/SplashScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/features/splash/SplashScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/features/splash/SplashViewContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/features/splash/SplashViewContract.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/features/splash/SplashViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/features/splash/SplashViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/navigation/DestinationExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/navigation/DestinationExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/navigation/animations/FadeInOutAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/navigation/animations/FadeInOutAnimation.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/akinci/androidtemplate/ui/navigation/animations/SlideHorizontallyAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/kotlin/com/akinci/androidtemplate/ui/navigation/animations/SlideHorizontallyAnimation.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_transparent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/drawable/ic_transparent.xml -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/font/roboto_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/mipmap-anydpi/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/raw/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/raw/blocks.json -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/kotlin/com/akinci/androidtemplate/core/coroutine/MainDispatcherRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/test/kotlin/com/akinci/androidtemplate/core/coroutine/MainDispatcherRule.kt -------------------------------------------------------------------------------- /app/src/test/kotlin/com/akinci/androidtemplate/core/coroutine/TestContextProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/test/kotlin/com/akinci/androidtemplate/core/coroutine/TestContextProvider.kt -------------------------------------------------------------------------------- /app/src/test/kotlin/com/akinci/androidtemplate/core/logger/LoggerInitializerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/test/kotlin/com/akinci/androidtemplate/core/logger/LoggerInitializerTest.kt -------------------------------------------------------------------------------- /app/src/test/kotlin/com/akinci/androidtemplate/data/DataLayerFillerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/test/kotlin/com/akinci/androidtemplate/data/DataLayerFillerTest.kt -------------------------------------------------------------------------------- /app/src/test/kotlin/com/akinci/androidtemplate/domain/DomainLayerFillerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/test/kotlin/com/akinci/androidtemplate/domain/DomainLayerFillerTest.kt -------------------------------------------------------------------------------- /app/src/test/kotlin/com/akinci/androidtemplate/ui/DashboardViewModelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/test/kotlin/com/akinci/androidtemplate/ui/DashboardViewModelTest.kt -------------------------------------------------------------------------------- /app/src/test/kotlin/com/akinci/androidtemplate/ui/DetailViewModelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/test/kotlin/com/akinci/androidtemplate/ui/DetailViewModelTest.kt -------------------------------------------------------------------------------- /app/src/test/kotlin/com/akinci/androidtemplate/ui/SplashViewModelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/test/kotlin/com/akinci/androidtemplate/ui/SplashViewModelTest.kt -------------------------------------------------------------------------------- /app/src/test/kotlin/com/akinci/androidtemplate/ui/UILayerFillerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/app/src/test/kotlin/com/akinci/androidtemplate/ui/UILayerFillerTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AttilaAKINCI/AndroidTemplate/HEAD/settings.gradle.kts --------------------------------------------------------------------------------