├── .idea ├── .name ├── .gitignore ├── compiler.xml ├── vcs.xml ├── studiobot.xml ├── AndroidProjectSystem.xml ├── migrations.xml ├── deploymentTargetSelector.xml ├── misc.xml ├── material_theme_project_new.xml ├── discord.xml ├── gradle.xml ├── runConfigurations.xml └── inspectionProfiles │ └── Project_Default.xml ├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── ic_launcher_main_background.xml │ │ │ │ ├── themes.xml │ │ │ │ └── colors.xml │ │ │ ├── drawable │ │ │ │ ├── main_app_icon.png │ │ │ │ ├── fiber_manual_record_24px.xml │ │ │ │ ├── arrow_drop_up_24px.xml │ │ │ │ ├── arrow_drop_down_24px.xml │ │ │ │ ├── folder_24px.xml │ │ │ │ ├── play_arrow_24px.xml │ │ │ │ ├── stop_24px.xml │ │ │ │ ├── check.xml │ │ │ │ ├── close_24px.xml │ │ │ │ ├── pause_24px.xml │ │ │ │ ├── image_24px.xml │ │ │ │ ├── arrow_back_24px.xml │ │ │ │ ├── clock_loader_60_24px.xml │ │ │ │ ├── home_24px.xml │ │ │ │ ├── colorize_24px.xml │ │ │ │ ├── search_24px.xml │ │ │ │ ├── mail_24px.xml │ │ │ │ ├── code_24px.xml │ │ │ │ ├── license_24px.xml │ │ │ │ ├── menu_24px.xml │ │ │ │ ├── edit_24px.xml │ │ │ │ ├── refresh_24px.xml │ │ │ │ ├── info_24px.xml │ │ │ │ ├── privacy_tip_24px.xml │ │ │ │ ├── copyright_24px.xml │ │ │ │ ├── more_vert_24px.xml │ │ │ │ ├── restore_from_trash_24px.xml │ │ │ │ ├── delete_24px.xml │ │ │ │ ├── delete_forever_24px.xml │ │ │ │ ├── folder_delete_24px.xml │ │ │ │ ├── contract_24px.xml │ │ │ │ ├── home_outlined_24px.xml │ │ │ │ ├── graphic_eq_24px.xml │ │ │ │ ├── drive_file_move_24px.xml │ │ │ │ ├── share_24px.xml │ │ │ │ ├── create_new_folder_24px.xml │ │ │ │ ├── settings_24px.xml │ │ │ │ ├── storage_24px.xml │ │ │ │ ├── replay_5_24px.xml │ │ │ │ ├── folder_outlined_24px.xml │ │ │ │ ├── folder_delete_outlined_24px.xml │ │ │ │ ├── forward_10_24px.xml │ │ │ │ ├── screen_record_24px.xml │ │ │ │ ├── bug_report_24px.xml │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ ├── settings_outlined_24px.xml │ │ │ │ ├── routine_24px.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_main.webp │ │ │ │ ├── ic_launcher_round.webp │ │ │ │ ├── ic_launcher_main_round.webp │ │ │ │ └── ic_launcher_main_foreground.webp │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_main.webp │ │ │ │ ├── ic_launcher_round.webp │ │ │ │ ├── ic_launcher_main_round.webp │ │ │ │ └── ic_launcher_main_foreground.webp │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_main.webp │ │ │ │ ├── ic_launcher_round.webp │ │ │ │ ├── ic_launcher_main_round.webp │ │ │ │ └── ic_launcher_main_foreground.webp │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_main.webp │ │ │ │ ├── ic_launcher_round.webp │ │ │ │ ├── ic_launcher_main_round.webp │ │ │ │ └── ic_launcher_main_foreground.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_main.webp │ │ │ │ ├── ic_launcher_round.webp │ │ │ │ ├── ic_launcher_main_round.webp │ │ │ │ └── ic_launcher_main_foreground.webp │ │ │ ├── xml │ │ │ │ ├── file_paths.xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher_main.xml │ │ │ │ ├── ic_launcher_main_round.xml │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ ├── ic_launcher_main-playstore.png │ │ ├── java │ │ │ └── com │ │ │ │ └── pranshulgg │ │ │ │ └── recordmaster │ │ │ │ ├── ui │ │ │ │ ├── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Type.kt │ │ │ │ │ └── Theme.kt │ │ │ │ └── components │ │ │ │ │ ├── SettingsTileIcon.kt │ │ │ │ │ ├── icons.kt │ │ │ │ │ ├── tooltip.kt │ │ │ │ │ ├── tiles │ │ │ │ │ ├── TextTile.kt │ │ │ │ │ ├── ActionTile.kt │ │ │ │ │ ├── CategoryTiles.kt │ │ │ │ │ ├── DialogTextFieldTile.kt │ │ │ │ │ ├── SwitchTile.kt │ │ │ │ │ ├── DialogOptionTile.kt │ │ │ │ │ └── DialogSliderTile.kt │ │ │ │ │ ├── confirmDialog.kt │ │ │ │ │ ├── EmptyContainerPlaceholder.kt │ │ │ │ │ ├── searchbar.kt │ │ │ │ │ ├── ColorPickerSheet.kt │ │ │ │ │ ├── DrawerContent.kt │ │ │ │ │ ├── TopBarWithSearch.kt │ │ │ │ │ ├── SettingTile.kt │ │ │ │ │ └── topMenu.kt │ │ │ │ ├── utils │ │ │ │ ├── formatterUtil.kt │ │ │ │ ├── TopSysStatusPadding.kt │ │ │ │ ├── BottomSysNavPadding.kt │ │ │ │ ├── recordingUtils.kt │ │ │ │ └── NavTransitions.kt │ │ │ │ ├── helpers │ │ │ │ ├── SnackbarManager.kt │ │ │ │ └── PreferencesHelper.kt │ │ │ │ └── MainActivity.kt │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── pranshulgg │ │ │ └── recordmaster │ │ │ └── ExampleUnitTest.kt │ └── androidTest │ │ └── java │ │ └── com │ │ └── pranshulgg │ │ └── recordmaster │ │ └── ExampleInstrumentedTest.kt ├── release │ ├── baselineProfiles │ │ ├── 0 │ │ │ └── app-release.dm │ │ └── 1 │ │ │ └── app-release.dm │ └── output-metadata.json ├── proguard-rules.pro └── build.gradle.kts ├── fastlane └── metadata │ └── android │ └── en-US │ ├── short_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ └── full_description.txt ├── prev ├── prev_1.png ├── prev_2.png ├── prev_3.png └── main_app_icon.png ├── gradle ├── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── libs.versions.toml ├── .gitignore ├── settings.gradle.kts ├── gradle.properties ├── README.md ├── gradlew.bat └── gradlew /.idea/.name: -------------------------------------------------------------------------------- 1 | RecordMaster -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Recording, Organizing, Sharing, and More -------------------------------------------------------------------------------- /prev/prev_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/prev/prev_1.png -------------------------------------------------------------------------------- /prev/prev_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/prev/prev_2.png -------------------------------------------------------------------------------- /prev/prev_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/prev/prev_3.png -------------------------------------------------------------------------------- /prev/main_app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/prev/main_app_icon.png -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RecordMaster 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/ic_launcher_main-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/ic_launcher_main-playstore.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/main_app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/drawable/main_app_icon.png -------------------------------------------------------------------------------- /app/release/baselineProfiles/0/app-release.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/release/baselineProfiles/0/app-release.dm -------------------------------------------------------------------------------- /app/release/baselineProfiles/1/app-release.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/release/baselineProfiles/1/app-release.dm -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_main.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_main.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_main.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_main.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_main.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_main.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_main.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_main.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_main.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_main.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_main_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_main_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_main_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_main_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_main_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_main_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_main_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_main_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_main_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_main_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_main_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_main_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_main_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_main_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_main_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_main_foreground.webp -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_main_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_main_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_main_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/RecordMaster/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_main_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_main_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #F0FFD6 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |