├── .bundle └── config ├── .editorconfig ├── .github ├── .github ├── ISSUE_TEMPLATE │ └── basic-report.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── android.yml ├── .gitignore ├── .idea ├── .name ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml ├── render.experimental.xml └── vcs.xml ├── Dangerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── debug │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── techcafe │ │ │ └── todone │ │ │ ├── DebugApp.kt │ │ │ ├── HyperionDebugItem.kt │ │ │ └── ZooMainActivity.kt │ └── res │ │ └── values │ │ ├── string.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── techcafe │ │ └── todone │ │ ├── App.kt │ │ └── MainActivity.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── ic_launcher_background.xml │ └── ic_magnifying_glass.xml │ ├── layout │ ├── activity_main.xml │ └── nav_drawer_header.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.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 ├── arts └── multi-module.png ├── corecomponent └── androidcomponent │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── techcafe │ │ └── todone │ │ └── androidcomponent │ │ ├── BindingAdapter.kt │ │ └── package-info.java │ └── res │ ├── drawable │ ├── ic_arrow_back.xml │ ├── ic_dashboard.xml │ ├── ic_edit.xml │ ├── ic_home.xml │ ├── ic_local_cafe.xml │ ├── ic_notifications.xml │ ├── ic_perm_identity.xml │ ├── ic_play_arrow.xml │ ├── ic_play_ground.xml │ └── ic_settings.xml │ ├── layout │ ├── model_large_title.xml │ └── model_spacing.xml │ ├── menu │ ├── menu_nav_bottom.xml │ └── menu_nav_drawer.xml │ ├── navigation │ ├── navigation.xml │ └── navigation_auth.xml │ ├── values-ja │ └── strings.xml │ ├── values-night │ └── themes.xml │ ├── values-v29 │ ├── arrays.xml │ └── strings.xml │ └── values │ ├── arrays.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ ├── styles.xml │ └── themes.xml ├── data ├── api │ ├── .gitignore │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── techcafe │ │ └── todone │ │ └── api │ │ ├── AddHeaderInterceptor.kt │ │ ├── FirebaseService.kt │ │ ├── FirebaseServiceImpl.kt │ │ ├── TestService.kt │ │ ├── di │ │ └── ApiModule.kt │ │ └── model │ │ ├── AuthTestResponse.kt │ │ └── UserResponse.kt ├── db │ ├── .gitignore │ ├── build.gradle │ ├── schemas │ │ └── com.techcafe.todone.db.internal.LocalDataBase │ │ │ └── 5.json │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── techcafe │ │ └── todone │ │ └── db │ │ ├── di │ │ └── DbModule.kt │ │ └── internal │ │ ├── LocalDataBase.kt │ │ ├── converter │ │ ├── DateConverter.kt │ │ └── DateTime.kt │ │ ├── dao │ │ ├── BoardEntityDao.kt │ │ ├── CardEntityDao.kt │ │ ├── KanbanEntityDao.kt │ │ ├── LabelEntityDao.kt │ │ └── UserEntityDao.kt │ │ ├── entity │ │ ├── BoardEntity.kt │ │ ├── CardEntity.kt │ │ ├── KanbanEntity.kt │ │ ├── LabelEntity.kt │ │ └── UserEntity.kt │ │ └── middleEntity │ │ ├── BoardWithKanban.kt │ │ ├── CardWithLabel.kt │ │ ├── KanbanWithCard.kt │ │ └── UserWithBoard.kt └── repository │ ├── .gitignore │ ├── build.gradle │ └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── techcafe │ └── todone │ └── repository │ ├── AuthRepository.kt │ ├── TestRepository.kt │ ├── di │ └── RepositoryModule.kt │ ├── impl │ ├── AuthRepositoryImpl.kt │ └── TestRepositoryImpl.kt │ └── mapper │ └── UserResponseMapper.kt ├── features ├── aboutapp │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── techcafe │ │ │ └── todone │ │ │ └── aboutapp │ │ │ └── AboutAppFragment.kt │ │ └── res │ │ ├── layout │ │ └── fragment_about_app.xml │ │ └── values │ │ └── strings.xml ├── auth │ ├── .gitignore │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── techcafe │ │ │ └── todone │ │ │ └── auth │ │ │ ├── AuthActivity.kt │ │ │ └── signup │ │ │ ├── SignUpFragment.kt │ │ │ └── SignUpViewModel.kt │ │ └── res │ │ ├── layout │ │ ├── activity_auth.xml │ │ └── fragment_sign_up.xml │ │ └── values │ │ └── strings.xml ├── home │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── techcafe │ │ │ └── todone │ │ │ └── home │ │ │ └── ExampleInstrumentedTest.kt │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── techcafe │ │ │ └── todone │ │ │ └── home │ │ │ ├── BoardFragment.kt │ │ │ ├── CreateBoardFragment.kt │ │ │ ├── animation │ │ │ └── ZoomOutPageTransformer.kt │ │ │ ├── model │ │ │ └── SampleModel.kt │ │ │ ├── ui │ │ │ ├── BoardAdapter.kt │ │ │ └── BoardViewHolder.kt │ │ │ └── viewModel │ │ │ └── BoardCreateViewModel.kt │ │ └── res │ │ ├── drawable │ │ └── ic_add_black_24dp.xml │ │ ├── layout │ │ ├── fragment_board.xml │ │ ├── fragment_create.xml │ │ └── view_item.xml │ │ └── values │ │ └── strings.xml ├── notifications │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── techcafe │ │ │ └── todone │ │ │ └── notifications │ │ │ └── NotificationsFragment.kt │ │ └── res │ │ ├── layout │ │ └── fragment_notifications.xml │ │ └── values │ │ └── strings.xml ├── profile │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── techcafe │ │ │ └── todone │ │ │ └── profile │ │ │ ├── ProfileFragment.kt │ │ │ └── edit │ │ │ ├── EditProfileFragment.kt │ │ │ └── ProfileEditorViewModel.kt │ │ └── res │ │ ├── drawable │ │ ├── rounded_image.xml │ │ └── sample.jpg │ │ ├── layout │ │ ├── fragment_edit_profile.xml │ │ └── fragment_profile.xml │ │ └── values │ │ └── strings.xml └── settings │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── techcafe │ │ └── todone │ │ └── settings │ │ └── SettingsFragment.kt │ └── res │ └── xml │ └── preferences.xml ├── gradle.properties ├── gradle ├── common.gradle ├── projectDependencyGraph.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── model ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── techcafe │ └── todone │ ├── Results.kt │ └── User.kt ├── project.dot.png └── settings.gradle /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "vendor/bundle" 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | [*.{kt, kts}] 2 | disabled_rules=no-wildcard-imports 3 | max_line_length=120 -------------------------------------------------------------------------------- /.github/.github: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/basic-report.md: -------------------------------------------------------------------------------- 1 | ## 概要 2 | 3 | ## リンク 4 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Todone -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/render.experimental.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/.idea/render.experimental.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/Dangerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | google-services.json -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/debug/java/com/techcafe/todone/DebugApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/debug/java/com/techcafe/todone/DebugApp.kt -------------------------------------------------------------------------------- /app/src/debug/java/com/techcafe/todone/HyperionDebugItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/debug/java/com/techcafe/todone/HyperionDebugItem.kt -------------------------------------------------------------------------------- /app/src/debug/java/com/techcafe/todone/ZooMainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/debug/java/com/techcafe/todone/ZooMainActivity.kt -------------------------------------------------------------------------------- /app/src/debug/res/values/string.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/debug/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/debug/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/techcafe/todone/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/java/com/techcafe/todone/App.kt -------------------------------------------------------------------------------- /app/src/main/java/com/techcafe/todone/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/java/com/techcafe/todone/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_magnifying_glass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/drawable/ic_magnifying_glass.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/nav_drawer_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/layout/nav_drawer_header.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/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/TechCafeFreedom/TODONE/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /arts/multi-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/arts/multi-module.png -------------------------------------------------------------------------------- /corecomponent/androidcomponent/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /corecomponent/androidcomponent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/build.gradle -------------------------------------------------------------------------------- /corecomponent/androidcomponent/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /corecomponent/androidcomponent/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/proguard-rules.pro -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/java/com/techcafe/todone/androidcomponent/BindingAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/java/com/techcafe/todone/androidcomponent/BindingAdapter.kt -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/java/com/techcafe/todone/androidcomponent/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/java/com/techcafe/todone/androidcomponent/package-info.java -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/drawable/ic_arrow_back.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/drawable/ic_dashboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/drawable/ic_dashboard.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/drawable/ic_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/drawable/ic_edit.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/drawable/ic_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/drawable/ic_home.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/drawable/ic_local_cafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/drawable/ic_local_cafe.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/drawable/ic_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/drawable/ic_notifications.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/drawable/ic_perm_identity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/drawable/ic_perm_identity.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/drawable/ic_play_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/drawable/ic_play_arrow.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/drawable/ic_play_ground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/drawable/ic_play_ground.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/layout/model_large_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/layout/model_large_title.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/layout/model_spacing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/layout/model_spacing.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/menu/menu_nav_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/menu/menu_nav_bottom.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/menu/menu_nav_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/menu/menu_nav_drawer.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/navigation/navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/navigation/navigation.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/navigation/navigation_auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/navigation/navigation_auth.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/values-v29/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/values-v29/arrays.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/values-v29/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/values-v29/strings.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /corecomponent/androidcomponent/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/corecomponent/androidcomponent/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /data/api/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /data/api/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/api/build.gradle -------------------------------------------------------------------------------- /data/api/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/api/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /data/api/src/main/java/com/techcafe/todone/api/AddHeaderInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/api/src/main/java/com/techcafe/todone/api/AddHeaderInterceptor.kt -------------------------------------------------------------------------------- /data/api/src/main/java/com/techcafe/todone/api/FirebaseService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/api/src/main/java/com/techcafe/todone/api/FirebaseService.kt -------------------------------------------------------------------------------- /data/api/src/main/java/com/techcafe/todone/api/FirebaseServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/api/src/main/java/com/techcafe/todone/api/FirebaseServiceImpl.kt -------------------------------------------------------------------------------- /data/api/src/main/java/com/techcafe/todone/api/TestService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/api/src/main/java/com/techcafe/todone/api/TestService.kt -------------------------------------------------------------------------------- /data/api/src/main/java/com/techcafe/todone/api/di/ApiModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/api/src/main/java/com/techcafe/todone/api/di/ApiModule.kt -------------------------------------------------------------------------------- /data/api/src/main/java/com/techcafe/todone/api/model/AuthTestResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/api/src/main/java/com/techcafe/todone/api/model/AuthTestResponse.kt -------------------------------------------------------------------------------- /data/api/src/main/java/com/techcafe/todone/api/model/UserResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/api/src/main/java/com/techcafe/todone/api/model/UserResponse.kt -------------------------------------------------------------------------------- /data/db/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /schemas -------------------------------------------------------------------------------- /data/db/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/build.gradle -------------------------------------------------------------------------------- /data/db/schemas/com.techcafe.todone.db.internal.LocalDataBase/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/schemas/com.techcafe.todone.db.internal.LocalDataBase/5.json -------------------------------------------------------------------------------- /data/db/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/di/DbModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/di/DbModule.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/LocalDataBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/LocalDataBase.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/converter/DateConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/converter/DateConverter.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/converter/DateTime.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/converter/DateTime.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/dao/BoardEntityDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/dao/BoardEntityDao.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/dao/CardEntityDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/dao/CardEntityDao.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/dao/KanbanEntityDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/dao/KanbanEntityDao.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/dao/LabelEntityDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/dao/LabelEntityDao.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/dao/UserEntityDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/dao/UserEntityDao.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/entity/BoardEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/entity/BoardEntity.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/entity/CardEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/entity/CardEntity.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/entity/KanbanEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/entity/KanbanEntity.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/entity/LabelEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/entity/LabelEntity.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/entity/UserEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/entity/UserEntity.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/middleEntity/BoardWithKanban.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/middleEntity/BoardWithKanban.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/middleEntity/CardWithLabel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/middleEntity/CardWithLabel.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/middleEntity/KanbanWithCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/middleEntity/KanbanWithCard.kt -------------------------------------------------------------------------------- /data/db/src/main/java/com/techcafe/todone/db/internal/middleEntity/UserWithBoard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/db/src/main/java/com/techcafe/todone/db/internal/middleEntity/UserWithBoard.kt -------------------------------------------------------------------------------- /data/repository/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /data/repository/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/repository/build.gradle -------------------------------------------------------------------------------- /data/repository/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/repository/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /data/repository/src/main/java/com/techcafe/todone/repository/AuthRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/repository/src/main/java/com/techcafe/todone/repository/AuthRepository.kt -------------------------------------------------------------------------------- /data/repository/src/main/java/com/techcafe/todone/repository/TestRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/repository/src/main/java/com/techcafe/todone/repository/TestRepository.kt -------------------------------------------------------------------------------- /data/repository/src/main/java/com/techcafe/todone/repository/di/RepositoryModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/repository/src/main/java/com/techcafe/todone/repository/di/RepositoryModule.kt -------------------------------------------------------------------------------- /data/repository/src/main/java/com/techcafe/todone/repository/impl/AuthRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/repository/src/main/java/com/techcafe/todone/repository/impl/AuthRepositoryImpl.kt -------------------------------------------------------------------------------- /data/repository/src/main/java/com/techcafe/todone/repository/impl/TestRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/repository/src/main/java/com/techcafe/todone/repository/impl/TestRepositoryImpl.kt -------------------------------------------------------------------------------- /data/repository/src/main/java/com/techcafe/todone/repository/mapper/UserResponseMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/data/repository/src/main/java/com/techcafe/todone/repository/mapper/UserResponseMapper.kt -------------------------------------------------------------------------------- /features/aboutapp/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /features/aboutapp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/aboutapp/build.gradle -------------------------------------------------------------------------------- /features/aboutapp/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/aboutapp/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/aboutapp/proguard-rules.pro -------------------------------------------------------------------------------- /features/aboutapp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/aboutapp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /features/aboutapp/src/main/java/com/techcafe/todone/aboutapp/AboutAppFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/aboutapp/src/main/java/com/techcafe/todone/aboutapp/AboutAppFragment.kt -------------------------------------------------------------------------------- /features/aboutapp/src/main/res/layout/fragment_about_app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/aboutapp/src/main/res/layout/fragment_about_app.xml -------------------------------------------------------------------------------- /features/aboutapp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/aboutapp/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /features/auth/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /features/auth/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/auth/build.gradle -------------------------------------------------------------------------------- /features/auth/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/auth/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /features/auth/src/main/java/com/techcafe/todone/auth/AuthActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/auth/src/main/java/com/techcafe/todone/auth/AuthActivity.kt -------------------------------------------------------------------------------- /features/auth/src/main/java/com/techcafe/todone/auth/signup/SignUpFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/auth/src/main/java/com/techcafe/todone/auth/signup/SignUpFragment.kt -------------------------------------------------------------------------------- /features/auth/src/main/java/com/techcafe/todone/auth/signup/SignUpViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/auth/src/main/java/com/techcafe/todone/auth/signup/SignUpViewModel.kt -------------------------------------------------------------------------------- /features/auth/src/main/res/layout/activity_auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/auth/src/main/res/layout/activity_auth.xml -------------------------------------------------------------------------------- /features/auth/src/main/res/layout/fragment_sign_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/auth/src/main/res/layout/fragment_sign_up.xml -------------------------------------------------------------------------------- /features/auth/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/auth/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /features/home/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /features/home/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/build.gradle -------------------------------------------------------------------------------- /features/home/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/home/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/proguard-rules.pro -------------------------------------------------------------------------------- /features/home/src/androidTest/java/com/techcafe/todone/home/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/src/androidTest/java/com/techcafe/todone/home/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /features/home/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /features/home/src/main/java/com/techcafe/todone/home/BoardFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/src/main/java/com/techcafe/todone/home/BoardFragment.kt -------------------------------------------------------------------------------- /features/home/src/main/java/com/techcafe/todone/home/CreateBoardFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/src/main/java/com/techcafe/todone/home/CreateBoardFragment.kt -------------------------------------------------------------------------------- /features/home/src/main/java/com/techcafe/todone/home/animation/ZoomOutPageTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/src/main/java/com/techcafe/todone/home/animation/ZoomOutPageTransformer.kt -------------------------------------------------------------------------------- /features/home/src/main/java/com/techcafe/todone/home/model/SampleModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/src/main/java/com/techcafe/todone/home/model/SampleModel.kt -------------------------------------------------------------------------------- /features/home/src/main/java/com/techcafe/todone/home/ui/BoardAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/src/main/java/com/techcafe/todone/home/ui/BoardAdapter.kt -------------------------------------------------------------------------------- /features/home/src/main/java/com/techcafe/todone/home/ui/BoardViewHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/src/main/java/com/techcafe/todone/home/ui/BoardViewHolder.kt -------------------------------------------------------------------------------- /features/home/src/main/java/com/techcafe/todone/home/viewModel/BoardCreateViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/src/main/java/com/techcafe/todone/home/viewModel/BoardCreateViewModel.kt -------------------------------------------------------------------------------- /features/home/src/main/res/drawable/ic_add_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/src/main/res/drawable/ic_add_black_24dp.xml -------------------------------------------------------------------------------- /features/home/src/main/res/layout/fragment_board.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/src/main/res/layout/fragment_board.xml -------------------------------------------------------------------------------- /features/home/src/main/res/layout/fragment_create.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/src/main/res/layout/fragment_create.xml -------------------------------------------------------------------------------- /features/home/src/main/res/layout/view_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/src/main/res/layout/view_item.xml -------------------------------------------------------------------------------- /features/home/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/home/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /features/notifications/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /features/notifications/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/notifications/build.gradle -------------------------------------------------------------------------------- /features/notifications/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/notifications/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/notifications/proguard-rules.pro -------------------------------------------------------------------------------- /features/notifications/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/notifications/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /features/notifications/src/main/java/com/techcafe/todone/notifications/NotificationsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/notifications/src/main/java/com/techcafe/todone/notifications/NotificationsFragment.kt -------------------------------------------------------------------------------- /features/notifications/src/main/res/layout/fragment_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/notifications/src/main/res/layout/fragment_notifications.xml -------------------------------------------------------------------------------- /features/notifications/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/notifications/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /features/profile/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /features/profile/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/profile/build.gradle -------------------------------------------------------------------------------- /features/profile/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/profile/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/profile/proguard-rules.pro -------------------------------------------------------------------------------- /features/profile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/profile/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /features/profile/src/main/java/com/techcafe/todone/profile/ProfileFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/profile/src/main/java/com/techcafe/todone/profile/ProfileFragment.kt -------------------------------------------------------------------------------- /features/profile/src/main/java/com/techcafe/todone/profile/edit/EditProfileFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/profile/src/main/java/com/techcafe/todone/profile/edit/EditProfileFragment.kt -------------------------------------------------------------------------------- /features/profile/src/main/java/com/techcafe/todone/profile/edit/ProfileEditorViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/profile/src/main/java/com/techcafe/todone/profile/edit/ProfileEditorViewModel.kt -------------------------------------------------------------------------------- /features/profile/src/main/res/drawable/rounded_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/profile/src/main/res/drawable/rounded_image.xml -------------------------------------------------------------------------------- /features/profile/src/main/res/drawable/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/profile/src/main/res/drawable/sample.jpg -------------------------------------------------------------------------------- /features/profile/src/main/res/layout/fragment_edit_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/profile/src/main/res/layout/fragment_edit_profile.xml -------------------------------------------------------------------------------- /features/profile/src/main/res/layout/fragment_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/profile/src/main/res/layout/fragment_profile.xml -------------------------------------------------------------------------------- /features/profile/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/profile/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /features/settings/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /features/settings/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/settings/build.gradle -------------------------------------------------------------------------------- /features/settings/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/settings/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/settings/proguard-rules.pro -------------------------------------------------------------------------------- /features/settings/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/settings/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /features/settings/src/main/java/com/techcafe/todone/settings/SettingsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/settings/src/main/java/com/techcafe/todone/settings/SettingsFragment.kt -------------------------------------------------------------------------------- /features/settings/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/features/settings/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/common.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/gradle/common.gradle -------------------------------------------------------------------------------- /gradle/projectDependencyGraph.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/gradle/projectDependencyGraph.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/gradlew.bat -------------------------------------------------------------------------------- /model/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /model/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/model/build.gradle -------------------------------------------------------------------------------- /model/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/model/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /model/src/main/java/techcafe/todone/Results.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/model/src/main/java/techcafe/todone/Results.kt -------------------------------------------------------------------------------- /model/src/main/java/techcafe/todone/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/model/src/main/java/techcafe/todone/User.kt -------------------------------------------------------------------------------- /project.dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/project.dot.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechCafeFreedom/TODONE/HEAD/settings.gradle --------------------------------------------------------------------------------