├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── main │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── com │ │ │ └── nobrain │ │ │ └── android │ │ │ └── lottiefiles │ │ │ ├── LottieApplication.kt │ │ │ ├── LottieApplicationDagger.kt │ │ │ ├── anim │ │ │ └── LottieAnimCache.kt │ │ │ ├── lottielist │ │ │ ├── LottieListActivity.kt │ │ │ ├── adpater │ │ │ │ └── LottieListAdapter.kt │ │ │ ├── dagger │ │ │ │ └── LottieDagger.kt │ │ │ ├── databinding │ │ │ │ └── LottieAdapterDatabinding.kt │ │ │ └── presenter │ │ │ │ └── LottieListViewModel.kt │ │ │ ├── repository │ │ │ ├── FilePath.kt │ │ │ ├── LottieModel.kt │ │ │ ├── api │ │ │ │ ├── FileDownloadApi.kt │ │ │ │ ├── LottieApi.kt │ │ │ │ ├── LottieApiModule.kt │ │ │ │ ├── converter │ │ │ │ │ └── LottieConverterFactory.kt │ │ │ │ └── entities │ │ │ │ │ ├── Bodymovin.kt │ │ │ │ │ └── LottieInfo.kt │ │ │ └── local │ │ │ │ ├── dao │ │ │ │ └── LottieDao.kt │ │ │ │ ├── database │ │ │ │ ├── LottieDatabase.kt │ │ │ │ └── LottieDatabaseModule.kt │ │ │ │ └── entities │ │ │ │ └── Lottie.kt │ │ │ └── utils │ │ │ ├── CommonUtils.kt │ │ │ ├── Dagger.kt │ │ │ ├── FlowableForLifecycle.kt │ │ │ ├── RxUtil.kt │ │ │ └── ViewUtils.kt │ └── res │ │ ├── drawable │ │ └── bg_item.xml │ │ ├── layout │ │ ├── act_lottie_list.xml │ │ └── item_lottie_list.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ ├── kotlin │ ├── com │ │ └── nobrain │ │ │ └── android │ │ │ └── lottiefiles │ │ │ ├── lottielist │ │ │ └── presenter │ │ │ │ └── LottieListViewModelTest.kt │ │ │ └── repository │ │ │ └── api │ │ │ ├── FileDownloadApiTest.kt │ │ │ └── LottieApiTest.kt │ └── common │ │ └── rule │ │ └── TestSchedulerRule.kt │ └── resources │ └── mockito-extensions │ └── org.mockito.plugins.MockMaker ├── dependecies-variable.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/LottieApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/LottieApplication.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/LottieApplicationDagger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/LottieApplicationDagger.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/anim/LottieAnimCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/anim/LottieAnimCache.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/lottielist/LottieListActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/lottielist/LottieListActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/lottielist/adpater/LottieListAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/lottielist/adpater/LottieListAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/lottielist/dagger/LottieDagger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/lottielist/dagger/LottieDagger.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/lottielist/databinding/LottieAdapterDatabinding.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/lottielist/databinding/LottieAdapterDatabinding.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/lottielist/presenter/LottieListViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/lottielist/presenter/LottieListViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/FilePath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/FilePath.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/LottieModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/LottieModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/api/FileDownloadApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/api/FileDownloadApi.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/api/LottieApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/api/LottieApi.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/api/LottieApiModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/api/LottieApiModule.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/api/converter/LottieConverterFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/api/converter/LottieConverterFactory.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/api/entities/Bodymovin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/api/entities/Bodymovin.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/api/entities/LottieInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/api/entities/LottieInfo.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/local/dao/LottieDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/local/dao/LottieDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/local/database/LottieDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/local/database/LottieDatabase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/local/database/LottieDatabaseModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/local/database/LottieDatabaseModule.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/local/entities/Lottie.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/repository/local/entities/Lottie.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/utils/CommonUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/utils/CommonUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/utils/Dagger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/utils/Dagger.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/utils/FlowableForLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/utils/FlowableForLifecycle.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/utils/RxUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/utils/RxUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/nobrain/android/lottiefiles/utils/ViewUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/kotlin/com/nobrain/android/lottiefiles/utils/ViewUtils.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/drawable/bg_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/act_lottie_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/layout/act_lottie_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_lottie_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/layout/item_lottie_list.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/kotlin/com/nobrain/android/lottiefiles/lottielist/presenter/LottieListViewModelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/test/kotlin/com/nobrain/android/lottiefiles/lottielist/presenter/LottieListViewModelTest.kt -------------------------------------------------------------------------------- /app/src/test/kotlin/com/nobrain/android/lottiefiles/repository/api/FileDownloadApiTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/test/kotlin/com/nobrain/android/lottiefiles/repository/api/FileDownloadApiTest.kt -------------------------------------------------------------------------------- /app/src/test/kotlin/com/nobrain/android/lottiefiles/repository/api/LottieApiTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/test/kotlin/com/nobrain/android/lottiefiles/repository/api/LottieApiTest.kt -------------------------------------------------------------------------------- /app/src/test/kotlin/common/rule/TestSchedulerRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/app/src/test/kotlin/common/rule/TestSchedulerRule.kt -------------------------------------------------------------------------------- /app/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker: -------------------------------------------------------------------------------- 1 | mock-maker-inline -------------------------------------------------------------------------------- /dependecies-variable.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/dependecies-variable.gradle -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongUgJung/MVVM-with-AAC/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------