├── .gitignore ├── .idea ├── compiler.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── google-services.json ├── proguard-rules.pro ├── release │ ├── app-release.apk │ └── output-metadata.json └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ └── ru │ │ └── tech │ │ └── firenote │ │ ├── MainActivity.kt │ │ ├── application │ │ └── FirenoteApplication.kt │ │ ├── di │ │ └── AppModule.kt │ │ ├── model │ │ ├── Goal.kt │ │ ├── GoalData.kt │ │ ├── ImageUri.kt │ │ ├── Note.kt │ │ ├── Type.kt │ │ └── Username.kt │ │ ├── repository │ │ ├── NoteRepository.kt │ │ └── impl │ │ │ └── NoteRepositoryImpl.kt │ │ ├── ui │ │ ├── composable │ │ │ ├── app │ │ │ │ └── FirenoteApp.kt │ │ │ ├── navigation │ │ │ │ └── Navigation.kt │ │ │ ├── provider │ │ │ │ ├── LocalLazyListStateProvider.kt │ │ │ │ ├── LocalSnackbarHost.kt │ │ │ │ ├── LocalToastHost.kt │ │ │ │ └── LocalWindowSize.kt │ │ │ ├── screen │ │ │ │ ├── auth │ │ │ │ │ ├── AuthScreen.kt │ │ │ │ │ ├── ForgotPasswordScreen.kt │ │ │ │ │ ├── LoginScreen.kt │ │ │ │ │ └── RegistrationScreen.kt │ │ │ │ ├── creation │ │ │ │ │ ├── CreationContainer.kt │ │ │ │ │ ├── GoalCreationScreen.kt │ │ │ │ │ └── NoteCreationScreen.kt │ │ │ │ └── navigation │ │ │ │ │ ├── GoalListScreen.kt │ │ │ │ │ ├── NoteListScreen.kt │ │ │ │ │ └── ProfileScreen.kt │ │ │ ├── single │ │ │ │ ├── ExtendableFloatingActionButton.kt │ │ │ │ ├── bar │ │ │ │ │ ├── AppBarActions.kt │ │ │ │ │ ├── AppBarWithInsets.kt │ │ │ │ │ ├── BottomNavigationBar.kt │ │ │ │ │ ├── EditableAppBar.kt │ │ │ │ │ └── SearchBar.kt │ │ │ │ ├── dialog │ │ │ │ │ └── MaterialDialog.kt │ │ │ │ ├── lazyitem │ │ │ │ │ ├── GoalItem.kt │ │ │ │ │ ├── NoteItem.kt │ │ │ │ │ └── ProfileNoteItem.kt │ │ │ │ ├── placeholder │ │ │ │ │ └── Placeholder.kt │ │ │ │ ├── scaffold │ │ │ │ │ └── FirenoteScaffold.kt │ │ │ │ ├── text │ │ │ │ │ ├── EditText.kt │ │ │ │ │ └── MaterialTextField.kt │ │ │ │ └── toast │ │ │ │ │ └── FancyToast.kt │ │ │ └── utils │ │ │ │ └── WindowSize.kt │ │ ├── route │ │ │ └── Screen.kt │ │ ├── state │ │ │ └── UIState.kt │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ │ ├── utils │ │ └── GlobalUtils.kt │ │ └── viewModel │ │ ├── auth │ │ └── AuthViewModel.kt │ │ ├── creation │ │ ├── GoalCreationViewModel.kt │ │ └── NoteCreationViewModel.kt │ │ ├── main │ │ └── MainViewModel.kt │ │ └── navigation │ │ ├── GoalListViewModel.kt │ │ ├── NoteListViewModel.kt │ │ └── ProfileViewModel.kt │ └── res │ ├── drawable-v24 │ └── ic_fire_144.xml │ ├── drawable │ ├── ic_launcher_foreground.xml │ └── launch_screen.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── values-night │ └── colors.xml │ ├── values-ru-rRU │ └── strings.xml │ ├── values │ ├── colors.xml │ ├── ic_launcher_background.xml │ ├── strings.xml │ └── themes.xml │ └── xml │ ├── backup_rules.xml │ └── data_extraction_rules.xml ├── blob └── preview │ └── intro.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/google-services.json -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/release/app-release.apk -------------------------------------------------------------------------------- /app/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/release/output-metadata.json -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/application/FirenoteApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/application/FirenoteApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/di/AppModule.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/model/Goal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/model/Goal.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/model/GoalData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/model/GoalData.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/model/ImageUri.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/model/ImageUri.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/model/Note.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/model/Note.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/model/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/model/Type.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/model/Username.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/model/Username.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/repository/NoteRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/repository/NoteRepository.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/repository/impl/NoteRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/repository/impl/NoteRepositoryImpl.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/app/FirenoteApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/app/FirenoteApp.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/navigation/Navigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/navigation/Navigation.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/provider/LocalLazyListStateProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/provider/LocalLazyListStateProvider.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/provider/LocalSnackbarHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/provider/LocalSnackbarHost.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/provider/LocalToastHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/provider/LocalToastHost.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/provider/LocalWindowSize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/provider/LocalWindowSize.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/screen/auth/AuthScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/screen/auth/AuthScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/screen/auth/ForgotPasswordScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/screen/auth/ForgotPasswordScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/screen/auth/LoginScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/screen/auth/LoginScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/screen/auth/RegistrationScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/screen/auth/RegistrationScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/screen/creation/CreationContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/screen/creation/CreationContainer.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/screen/creation/GoalCreationScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/screen/creation/GoalCreationScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/screen/creation/NoteCreationScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/screen/creation/NoteCreationScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/screen/navigation/GoalListScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/screen/navigation/GoalListScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/screen/navigation/NoteListScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/screen/navigation/NoteListScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/screen/navigation/ProfileScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/screen/navigation/ProfileScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/ExtendableFloatingActionButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/ExtendableFloatingActionButton.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/bar/AppBarActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/bar/AppBarActions.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/bar/AppBarWithInsets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/bar/AppBarWithInsets.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/bar/BottomNavigationBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/bar/BottomNavigationBar.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/bar/EditableAppBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/bar/EditableAppBar.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/bar/SearchBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/bar/SearchBar.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/dialog/MaterialDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/dialog/MaterialDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/lazyitem/GoalItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/lazyitem/GoalItem.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/lazyitem/NoteItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/lazyitem/NoteItem.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/lazyitem/ProfileNoteItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/lazyitem/ProfileNoteItem.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/placeholder/Placeholder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/placeholder/Placeholder.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/scaffold/FirenoteScaffold.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/scaffold/FirenoteScaffold.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/text/EditText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/text/EditText.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/text/MaterialTextField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/text/MaterialTextField.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/single/toast/FancyToast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/single/toast/FancyToast.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/composable/utils/WindowSize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/composable/utils/WindowSize.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/route/Screen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/route/Screen.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/state/UIState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/state/UIState.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/utils/GlobalUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/utils/GlobalUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/viewModel/auth/AuthViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/viewModel/auth/AuthViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/viewModel/creation/GoalCreationViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/viewModel/creation/GoalCreationViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/viewModel/creation/NoteCreationViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/viewModel/creation/NoteCreationViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/viewModel/main/MainViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/viewModel/main/MainViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/viewModel/navigation/GoalListViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/viewModel/navigation/GoalListViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/viewModel/navigation/NoteListViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/viewModel/navigation/NoteListViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/ru/tech/firenote/viewModel/navigation/ProfileViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/java/ru/tech/firenote/viewModel/navigation/ProfileViewModel.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_fire_144.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/res/drawable-v24/ic_fire_144.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/res/drawable/launch_screen.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/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/T8RIN/Firenote/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/res/values-ru-rRU/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /blob/preview/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/blob/preview/intro.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Firenote/HEAD/settings.gradle --------------------------------------------------------------------------------