├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── debug │ └── res │ │ └── values │ │ └── strings.xml │ ├── fdroid │ └── res │ │ └── values │ │ └── bools.xml │ ├── main │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── com │ │ │ └── simplemobiletools │ │ │ └── voicerecorder │ │ │ ├── App.kt │ │ │ ├── activities │ │ │ ├── BackgroundRecordActivity.kt │ │ │ ├── MainActivity.kt │ │ │ ├── SettingsActivity.kt │ │ │ ├── SimpleActivity.kt │ │ │ ├── SplashActivity.kt │ │ │ └── WidgetRecordDisplayConfigureActivity.kt │ │ │ ├── adapters │ │ │ ├── RecordingsAdapter.kt │ │ │ ├── TrashAdapter.kt │ │ │ └── ViewPagerAdapter.kt │ │ │ ├── dialogs │ │ │ ├── DeleteConfirmationDialog.kt │ │ │ └── RenameRecordingDialog.kt │ │ │ ├── extensions │ │ │ ├── Activity.kt │ │ │ └── Context.kt │ │ │ ├── fragments │ │ │ ├── MyViewPagerFragment.kt │ │ │ ├── PlayerFragment.kt │ │ │ ├── RecorderFragment.kt │ │ │ └── TrashFragment.kt │ │ │ ├── helpers │ │ │ ├── Config.kt │ │ │ ├── Constants.kt │ │ │ └── MyWidgetRecordDisplayProvider.kt │ │ │ ├── interfaces │ │ │ └── RefreshRecordingsListener.kt │ │ │ ├── models │ │ │ ├── Events.kt │ │ │ └── Recording.kt │ │ │ ├── recorder │ │ │ ├── MediaRecorderWrapper.kt │ │ │ ├── Mp3Recorder.kt │ │ │ └── Recorder.kt │ │ │ └── services │ │ │ └── RecorderService.kt │ └── res │ │ ├── drawable │ │ ├── frame_background.xml │ │ ├── ic_empty.png │ │ ├── ic_headset_vector.xml │ │ ├── ic_launcher_monochrome.xml │ │ └── ic_microphone_widget_icon.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_settings.xml │ │ ├── dialog_delete_confirmation.xml │ │ ├── dialog_rename_recording.xml │ │ ├── fragment_player.xml │ │ ├── fragment_recorder.xml │ │ ├── fragment_trash.xml │ │ ├── item_recording.xml │ │ ├── widget_record_display.xml │ │ └── widget_record_display_config.xml │ │ ├── menu │ │ ├── cab_recordings.xml │ │ ├── cab_trash.xml │ │ └── menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ ├── ic_launcher_amber.xml │ │ ├── ic_launcher_blue.xml │ │ ├── ic_launcher_blue_grey.xml │ │ ├── ic_launcher_brown.xml │ │ ├── ic_launcher_cyan.xml │ │ ├── ic_launcher_deep_orange.xml │ │ ├── ic_launcher_deep_purple.xml │ │ ├── ic_launcher_green.xml │ │ ├── ic_launcher_grey_black.xml │ │ ├── ic_launcher_indigo.xml │ │ ├── ic_launcher_light_blue.xml │ │ ├── ic_launcher_light_green.xml │ │ ├── ic_launcher_lime.xml │ │ ├── ic_launcher_pink.xml │ │ ├── ic_launcher_purple.xml │ │ ├── ic_launcher_red.xml │ │ ├── ic_launcher_teal.xml │ │ └── ic_launcher_yellow.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_amber.png │ │ ├── ic_launcher_blue.png │ │ ├── ic_launcher_blue_grey.png │ │ ├── ic_launcher_brown.png │ │ ├── ic_launcher_cyan.png │ │ ├── ic_launcher_deep_orange.png │ │ ├── ic_launcher_deep_purple.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_green.png │ │ ├── ic_launcher_grey_black.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_light_blue.png │ │ ├── ic_launcher_light_green.png │ │ ├── ic_launcher_lime.png │ │ ├── ic_launcher_pink.png │ │ ├── ic_launcher_purple.png │ │ ├── ic_launcher_red.png │ │ ├── ic_launcher_teal.png │ │ └── ic_launcher_yellow.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_amber.png │ │ ├── ic_launcher_blue.png │ │ ├── ic_launcher_blue_grey.png │ │ ├── ic_launcher_brown.png │ │ ├── ic_launcher_cyan.png │ │ ├── ic_launcher_deep_orange.png │ │ ├── ic_launcher_deep_purple.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_green.png │ │ ├── ic_launcher_grey_black.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_light_blue.png │ │ ├── ic_launcher_light_green.png │ │ ├── ic_launcher_lime.png │ │ ├── ic_launcher_pink.png │ │ ├── ic_launcher_purple.png │ │ ├── ic_launcher_red.png │ │ ├── ic_launcher_teal.png │ │ └── ic_launcher_yellow.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_amber.png │ │ ├── ic_launcher_blue.png │ │ ├── ic_launcher_blue_grey.png │ │ ├── ic_launcher_brown.png │ │ ├── ic_launcher_cyan.png │ │ ├── ic_launcher_deep_orange.png │ │ ├── ic_launcher_deep_purple.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_green.png │ │ ├── ic_launcher_grey_black.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_light_blue.png │ │ ├── ic_launcher_light_green.png │ │ ├── ic_launcher_lime.png │ │ ├── ic_launcher_pink.png │ │ ├── ic_launcher_purple.png │ │ ├── ic_launcher_red.png │ │ ├── ic_launcher_teal.png │ │ └── ic_launcher_yellow.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_amber.png │ │ ├── ic_launcher_blue.png │ │ ├── ic_launcher_blue_grey.png │ │ ├── ic_launcher_brown.png │ │ ├── ic_launcher_cyan.png │ │ ├── ic_launcher_deep_orange.png │ │ ├── ic_launcher_deep_purple.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_green.png │ │ ├── ic_launcher_grey_black.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_light_blue.png │ │ ├── ic_launcher_light_green.png │ │ ├── ic_launcher_lime.png │ │ ├── ic_launcher_pink.png │ │ ├── ic_launcher_purple.png │ │ ├── ic_launcher_red.png │ │ ├── ic_launcher_teal.png │ │ └── ic_launcher_yellow.png │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-da │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-eo │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-et │ │ └── strings.xml │ │ ├── values-fa │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-gl │ │ └── strings.xml │ │ ├── values-hr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-iw │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-lt │ │ └── strings.xml │ │ ├── values-ml │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pa-rPK │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-sl │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-th │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── donottranslate.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── widget_record_display.xml │ └── prepaid │ └── res │ └── values │ └── bools.xml ├── fastlane ├── Appfile ├── Fastfile └── metadata │ └── android │ ├── ar │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── bg │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ca │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── cs-CZ │ ├── short_description.txt │ └── title.txt │ ├── de-DE │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_de-DE.jpeg │ │ │ ├── 2_de-DE.jpeg │ │ │ ├── 3_de-DE.jpeg │ │ │ └── 4_de-DE.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_de-DE.jpeg │ │ │ └── 2_de-DE.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_de-DE.jpeg │ │ │ └── 2_de-DE.jpeg │ ├── short_description.txt │ └── title.txt │ ├── el-GR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── en-GB │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.jpeg │ │ ├── icon.png │ │ ├── phoneScreenshots │ │ │ ├── 1_en-GB.jpeg │ │ │ ├── 2_en-GB.jpeg │ │ │ ├── 3_en-GB.jpeg │ │ │ └── 4_en-GB.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_en-GB.jpeg │ │ │ └── 2_en-GB.jpeg │ │ ├── tenInchScreenshots │ │ │ ├── 1_en-GB.jpeg │ │ │ └── 2_en-GB.jpeg │ │ └── tvBanner.png │ ├── short_description.txt │ └── title.txt │ ├── en-IN │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── en-US │ ├── changelogs │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ ├── 33.txt │ │ ├── 34.txt │ │ ├── 35.txt │ │ ├── 36.txt │ │ ├── 37.txt │ │ ├── 38.txt │ │ ├── 39.txt │ │ ├── 40.txt │ │ └── 41.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.jpeg │ │ ├── icon.png │ │ ├── phoneScreenshots │ │ │ ├── 1_en-US.jpeg │ │ │ ├── 2_en-US.jpeg │ │ │ ├── 3_en-US.jpeg │ │ │ └── 4_en-US.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_en-US.jpeg │ │ │ └── 2_en-US.jpeg │ │ ├── tenInchScreenshots │ │ │ ├── 1_en-US.jpeg │ │ │ └── 2_en-US.jpeg │ │ └── tvBanner.png │ ├── short_description.txt │ └── title.txt │ ├── es-ES │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_es-ES.jpeg │ │ │ ├── 2_es-ES.jpeg │ │ │ ├── 3_es-ES.jpeg │ │ │ └── 4_es-ES.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_es-ES.jpeg │ │ │ └── 2_es-ES.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_es-ES.jpeg │ │ │ └── 2_es-ES.jpeg │ ├── short_description.txt │ └── title.txt │ ├── et │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── fi-FI │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── fr-FR │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_fr-FR.jpeg │ │ │ ├── 2_fr-FR.jpeg │ │ │ ├── 3_fr-FR.jpeg │ │ │ └── 4_fr-FR.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_fr-FR.jpeg │ │ │ └── 2_fr-FR.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_fr-FR.jpeg │ │ │ └── 2_fr-FR.jpeg │ ├── short_description.txt │ └── title.txt │ ├── hi-IN │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── hr │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── hu-HU │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── id │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_id.jpeg │ │ │ ├── 2_id.jpeg │ │ │ ├── 3_id.jpeg │ │ │ └── 4_id.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_id.jpeg │ │ │ └── 2_id.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_id.jpeg │ │ │ └── 2_id.jpeg │ ├── short_description.txt │ └── title.txt │ ├── it-IT │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_it-IT.jpeg │ │ │ ├── 2_it-IT.jpeg │ │ │ ├── 3_it-IT.jpeg │ │ │ └── 4_it-IT.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_it-IT.jpeg │ │ │ └── 2_it-IT.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_it-IT.jpeg │ │ │ └── 2_it-IT.jpeg │ ├── short_description.txt │ └── title.txt │ ├── iw-IL │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ja-JP │ ├── full_description.txt │ ├── images │ │ ├── icon.jpeg │ │ ├── phoneScreenshots │ │ │ ├── 1_ja-JP.jpeg │ │ │ ├── 2_ja-JP.jpeg │ │ │ ├── 3_ja-JP.jpeg │ │ │ └── 4_ja-JP.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_ja-JP.jpeg │ │ │ └── 2_ja-JP.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_ja-JP.jpeg │ │ │ └── 2_ja-JP.jpeg │ ├── short_description.txt │ └── title.txt │ ├── ko-KR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── lt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── nl-NL │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── no-NO │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── pl-PL │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_pl-PL.jpeg │ │ │ ├── 2_pl-PL.jpeg │ │ │ ├── 3_pl-PL.jpeg │ │ │ └── 4_pl-PL.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_pl-PL.jpeg │ │ │ └── 2_pl-PL.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_pl-PL.jpeg │ │ │ └── 2_pl-PL.jpeg │ ├── short_description.txt │ └── title.txt │ ├── pt-BR │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_pt-BR.jpeg │ │ │ ├── 2_pt-BR.jpeg │ │ │ ├── 3_pt-BR.jpeg │ │ │ └── 4_pt-BR.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_pt-BR.jpeg │ │ │ └── 2_pt-BR.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_pt-BR.jpeg │ │ │ └── 2_pt-BR.jpeg │ ├── short_description.txt │ └── title.txt │ ├── pt-PT │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_pt-PT.jpeg │ │ │ ├── 2_pt-PT.jpeg │ │ │ ├── 3_pt-PT.jpeg │ │ │ └── 4_pt-PT.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_pt-PT.jpeg │ │ │ └── 2_pt-PT.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_pt-PT.jpeg │ │ │ └── 2_pt-PT.jpeg │ ├── short_description.txt │ └── title.txt │ ├── ro │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ru-RU │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_ru-RU.jpeg │ │ │ ├── 2_ru-RU.jpeg │ │ │ ├── 3_ru-RU.jpeg │ │ │ └── 4_ru-RU.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_ru-RU.jpeg │ │ │ └── 2_ru-RU.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_ru-RU.jpeg │ │ │ └── 2_ru-RU.jpeg │ ├── short_description.txt │ └── title.txt │ ├── sk │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── sl │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── sr │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── sv-SE │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── tr-TR │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_tr-TR.jpeg │ │ │ ├── 2_tr-TR.jpeg │ │ │ ├── 3_tr-TR.jpeg │ │ │ └── 4_tr-TR.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_tr-TR.jpeg │ │ │ └── 2_tr-TR.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_tr-TR.jpeg │ │ │ └── 2_tr-TR.jpeg │ ├── short_description.txt │ └── title.txt │ ├── uk │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── zh-CN │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── zh-HK │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ └── zh-TW │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── graphics ├── app_icon.png ├── featureGraphic.jpg ├── icon.png ├── orange_feature_graphic.xcf ├── promo_graphic.png ├── square.png ├── square.xcf └── tv_banner.png ├── keystore.properties_sample └── settings.gradle.kts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/debug/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/fdroid/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/fdroid/res/values/bools.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/App.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/activities/BackgroundRecordActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/activities/BackgroundRecordActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/activities/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/activities/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/activities/SettingsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/activities/SettingsActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/activities/SimpleActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/activities/SimpleActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/activities/SplashActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/activities/SplashActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/activities/WidgetRecordDisplayConfigureActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/activities/WidgetRecordDisplayConfigureActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/adapters/RecordingsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/adapters/RecordingsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/adapters/TrashAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/adapters/TrashAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/adapters/ViewPagerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/adapters/ViewPagerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/dialogs/DeleteConfirmationDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/dialogs/DeleteConfirmationDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/dialogs/RenameRecordingDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/dialogs/RenameRecordingDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/extensions/Activity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/extensions/Activity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/extensions/Context.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/extensions/Context.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/fragments/MyViewPagerFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/fragments/MyViewPagerFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/fragments/PlayerFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/fragments/PlayerFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/fragments/RecorderFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/fragments/RecorderFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/fragments/TrashFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/fragments/TrashFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/helpers/Config.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/helpers/Config.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/helpers/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/helpers/Constants.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/helpers/MyWidgetRecordDisplayProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/helpers/MyWidgetRecordDisplayProvider.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/interfaces/RefreshRecordingsListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/interfaces/RefreshRecordingsListener.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/models/Events.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/models/Events.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/models/Recording.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/models/Recording.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/recorder/MediaRecorderWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/recorder/MediaRecorderWrapper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/recorder/Mp3Recorder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/recorder/Mp3Recorder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/recorder/Recorder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/recorder/Recorder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/voicerecorder/services/RecorderService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/kotlin/com/simplemobiletools/voicerecorder/services/RecorderService.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/frame_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/drawable/frame_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/drawable/ic_empty.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_headset_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/drawable/ic_headset_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_microphone_widget_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/drawable/ic_microphone_widget_icon.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_delete_confirmation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/layout/dialog_delete_confirmation.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_rename_recording.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/layout/dialog_rename_recording.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/layout/fragment_player.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_recorder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/layout/fragment_recorder.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_trash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/layout/fragment_trash.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_recording.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/layout/item_recording.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_record_display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/layout/widget_record_display.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_record_display_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/layout/widget_record_display_config.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/cab_recordings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/menu/cab_recordings.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/cab_trash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/menu/cab_trash.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/menu/menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_amber.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_amber.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue_grey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue_grey.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_brown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_brown.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_cyan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_cyan.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_orange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_orange.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_purple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_purple.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_green.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_grey_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_grey_black.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_indigo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_indigo.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_blue.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_green.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_lime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_lime.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_pink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_pink.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_red.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_teal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_teal.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_yellow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_yellow.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_amber.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_blue_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_blue_grey.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_brown.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_cyan.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_deep_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_deep_orange.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_deep_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_deep_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_grey_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_grey_black.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_indigo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_light_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_light_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_light_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_lime.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_pink.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_red.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_teal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_amber.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_blue_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_blue_grey.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_brown.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_cyan.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_deep_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_deep_orange.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_deep_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_deep_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_grey_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_grey_black.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_indigo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_light_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_light_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_light_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_lime.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_pink.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_red.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_teal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_amber.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_blue_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_blue_grey.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_brown.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_cyan.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_orange.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_grey_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_grey_black.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_indigo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_light_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_light_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_light_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_lime.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_pink.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_red.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_teal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_amber.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue_grey.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_brown.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_cyan.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_orange.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_grey_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_grey_black.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_indigo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_lime.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_pink.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_red.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_teal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-be/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-be/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-eo/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-eo/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-fa/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-gl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-gl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-ml/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nb-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-nb-rNO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pa-rPK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-pa-rPK/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/donottranslate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values/donottranslate.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/widget_record_display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/main/res/xml/widget_record_display.xml -------------------------------------------------------------------------------- /app/src/prepaid/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/app/src/prepaid/res/values/bools.xml -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ar/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ar/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/title.txt: -------------------------------------------------------------------------------- 1 | مسجل صوت البسيط 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/bg/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/bg/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/bg/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/bg/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/bg/title.txt: -------------------------------------------------------------------------------- 1 | Обикновен Диктофон 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ca/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ca/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ca/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ca/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ca/title.txt: -------------------------------------------------------------------------------- 1 | Simple Voice Recorder 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/cs-CZ/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/title.txt: -------------------------------------------------------------------------------- 1 | Jednoduchý hlasový záznamník 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/de-DE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/1_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/de-DE/images/phoneScreenshots/1_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/2_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/de-DE/images/phoneScreenshots/2_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/3_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/de-DE/images/phoneScreenshots/3_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/4_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/de-DE/images/phoneScreenshots/4_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/sevenInchScreenshots/1_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/1_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/sevenInchScreenshots/2_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/2_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/tenInchScreenshots/1_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/de-DE/images/tenInchScreenshots/1_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/tenInchScreenshots/2_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/de-DE/images/tenInchScreenshots/2_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/de-DE/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Einfaches Diktiergerät 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/el-GR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/el-GR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/title.txt: -------------------------------------------------------------------------------- 1 | Απλή Εγγραφή Φωνής -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-GB/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/featureGraphic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-GB/images/featureGraphic.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-GB/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/phoneScreenshots/1_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-GB/images/phoneScreenshots/1_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/phoneScreenshots/2_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-GB/images/phoneScreenshots/2_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/phoneScreenshots/3_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-GB/images/phoneScreenshots/3_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/phoneScreenshots/4_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-GB/images/phoneScreenshots/4_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/sevenInchScreenshots/1_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-GB/images/sevenInchScreenshots/1_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/sevenInchScreenshots/2_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-GB/images/sevenInchScreenshots/2_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/tenInchScreenshots/1_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-GB/images/tenInchScreenshots/1_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/tenInchScreenshots/2_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-GB/images/tenInchScreenshots/2_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/tvBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-GB/images/tvBanner.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-GB/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/title.txt: -------------------------------------------------------------------------------- 1 | Simple Voice Recorder -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-IN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-IN/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/title.txt: -------------------------------------------------------------------------------- 1 | Simple Voice Recorder -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/changelogs/30.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/changelogs/31.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/changelogs/32.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/changelogs/33.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/changelogs/34.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/changelogs/35.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/36.txt: -------------------------------------------------------------------------------- 1 | * Added some UI and translation improvements 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/37.txt: -------------------------------------------------------------------------------- 1 | * Added some stability, UI and translation improvements 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/changelogs/38.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/39.txt: -------------------------------------------------------------------------------- 1 | * Added some stability, UI and translation improvements 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/40.txt: -------------------------------------------------------------------------------- 1 | * Added some stability, UI and translation improvements 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/changelogs/41.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/sevenInchScreenshots/1_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/images/sevenInchScreenshots/1_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/sevenInchScreenshots/2_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/images/sevenInchScreenshots/2_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/1_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/images/tenInchScreenshots/1_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/2_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/images/tenInchScreenshots/2_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tvBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/images/tvBanner.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Simple Voice Recorder -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/es-ES/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/phoneScreenshots/1_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/es-ES/images/phoneScreenshots/1_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/phoneScreenshots/2_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/es-ES/images/phoneScreenshots/2_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/phoneScreenshots/3_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/es-ES/images/phoneScreenshots/3_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/phoneScreenshots/4_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/es-ES/images/phoneScreenshots/4_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/sevenInchScreenshots/1_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/1_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/sevenInchScreenshots/2_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/2_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/tenInchScreenshots/1_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/es-ES/images/tenInchScreenshots/1_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/tenInchScreenshots/2_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/es-ES/images/tenInchScreenshots/2_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/es-ES/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/title.txt: -------------------------------------------------------------------------------- 1 | Grabadora de Voz Simple 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/et/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/et/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/et/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/et/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/et/title.txt: -------------------------------------------------------------------------------- 1 | Lihtne diktofon 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/fi-FI/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/fi-FI/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/title.txt: -------------------------------------------------------------------------------- 1 | Yksinkertainen ääninauhuri 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/fr-FR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/phoneScreenshots/1_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/fr-FR/images/phoneScreenshots/1_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/phoneScreenshots/2_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/fr-FR/images/phoneScreenshots/2_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/phoneScreenshots/3_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/fr-FR/images/phoneScreenshots/3_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/phoneScreenshots/4_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/fr-FR/images/phoneScreenshots/4_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/1_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/1_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/2_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/2_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/tenInchScreenshots/1_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/1_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/tenInchScreenshots/2_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/2_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/fr-FR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Enregistreur vocal simple -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/hi-IN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/hi-IN/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/hi-IN/title.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/hr/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/hr/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/title.txt: -------------------------------------------------------------------------------- 1 | Jednostavan diktafon 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/hu-HU/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/hu-HU/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/title.txt: -------------------------------------------------------------------------------- 1 | Egyszerű hangrögzítő 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/id/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/1_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/id/images/phoneScreenshots/1_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/2_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/id/images/phoneScreenshots/2_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/3_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/id/images/phoneScreenshots/3_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/4_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/id/images/phoneScreenshots/4_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/sevenInchScreenshots/1_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/id/images/sevenInchScreenshots/1_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/sevenInchScreenshots/2_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/id/images/sevenInchScreenshots/2_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/tenInchScreenshots/1_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/id/images/tenInchScreenshots/1_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/tenInchScreenshots/2_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/id/images/tenInchScreenshots/2_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/id/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/id/title.txt: -------------------------------------------------------------------------------- 1 | Perekam Suara Simpel 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/it-IT/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/phoneScreenshots/1_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/it-IT/images/phoneScreenshots/1_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/phoneScreenshots/2_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/it-IT/images/phoneScreenshots/2_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/phoneScreenshots/3_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/it-IT/images/phoneScreenshots/3_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/phoneScreenshots/4_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/it-IT/images/phoneScreenshots/4_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/sevenInchScreenshots/1_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/1_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/sevenInchScreenshots/2_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/2_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/tenInchScreenshots/1_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/it-IT/images/tenInchScreenshots/1_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/tenInchScreenshots/2_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/it-IT/images/tenInchScreenshots/2_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/it-IT/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/title.txt: -------------------------------------------------------------------------------- 1 | Registratore Vocale Semplice -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/iw-IL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/iw-IL/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/title.txt: -------------------------------------------------------------------------------- 1 | מקליט קול פשוט -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ja-JP/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ja-JP/images/icon.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/phoneScreenshots/1_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ja-JP/images/phoneScreenshots/1_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/phoneScreenshots/2_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ja-JP/images/phoneScreenshots/2_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/phoneScreenshots/3_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ja-JP/images/phoneScreenshots/3_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/phoneScreenshots/4_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ja-JP/images/phoneScreenshots/4_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/sevenInchScreenshots/1_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ja-JP/images/sevenInchScreenshots/1_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/sevenInchScreenshots/2_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ja-JP/images/sevenInchScreenshots/2_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/tenInchScreenshots/1_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ja-JP/images/tenInchScreenshots/1_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/tenInchScreenshots/2_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ja-JP/images/tenInchScreenshots/2_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/short_description.txt: -------------------------------------------------------------------------------- 1 | 広告やインターネットアクセスなしで討論や音声を簡単に録音可能 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/title.txt: -------------------------------------------------------------------------------- 1 | シンプルボイスレコーダー - 音声を簡単に録音 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ko-KR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ko-KR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ko-KR/title.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/lt/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/lt/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/lt/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/lt/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/lt/title.txt: -------------------------------------------------------------------------------- 1 | Paprastas Garso Įrašytuvas -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/nl-NL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/nl-NL/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/title.txt: -------------------------------------------------------------------------------- 1 | Eenvoudige Voicerecorder -------------------------------------------------------------------------------- /fastlane/metadata/android/no-NO/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/no-NO/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/no-NO/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/no-NO/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/no-NO/title.txt: -------------------------------------------------------------------------------- 1 | Enkel stemmeopptaker -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pl-PL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/phoneScreenshots/1_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pl-PL/images/phoneScreenshots/1_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/phoneScreenshots/2_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pl-PL/images/phoneScreenshots/2_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/phoneScreenshots/3_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pl-PL/images/phoneScreenshots/3_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/phoneScreenshots/4_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pl-PL/images/phoneScreenshots/4_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/1_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/1_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/2_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/2_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/tenInchScreenshots/1_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/1_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/tenInchScreenshots/2_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/2_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pl-PL/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/title.txt: -------------------------------------------------------------------------------- 1 | Prosty rejestrator głosu 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-BR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/1_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-BR/images/phoneScreenshots/1_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/2_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-BR/images/phoneScreenshots/2_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/3_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-BR/images/phoneScreenshots/3_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/4_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-BR/images/phoneScreenshots/4_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/1_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/1_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/2_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/2_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/tenInchScreenshots/1_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/1_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/tenInchScreenshots/2_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/2_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-BR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/title.txt: -------------------------------------------------------------------------------- 1 | Gravador de Voz Simples 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-PT/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/phoneScreenshots/1_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-PT/images/phoneScreenshots/1_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/phoneScreenshots/2_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-PT/images/phoneScreenshots/2_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/phoneScreenshots/3_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-PT/images/phoneScreenshots/3_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/phoneScreenshots/4_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-PT/images/phoneScreenshots/4_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/1_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/1_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/2_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/2_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/tenInchScreenshots/1_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/1_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/tenInchScreenshots/2_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/2_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/pt-PT/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/title.txt: -------------------------------------------------------------------------------- 1 | Gravador voz simples -------------------------------------------------------------------------------- /fastlane/metadata/android/ro/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ro/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ro/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ro/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ro/title.txt: -------------------------------------------------------------------------------- 1 | Înregistrare vocală simplă 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ru-RU/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/phoneScreenshots/1_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ru-RU/images/phoneScreenshots/1_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/phoneScreenshots/2_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ru-RU/images/phoneScreenshots/2_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/phoneScreenshots/3_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ru-RU/images/phoneScreenshots/3_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/phoneScreenshots/4_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ru-RU/images/phoneScreenshots/4_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/1_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/1_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/2_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/2_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/tenInchScreenshots/1_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/1_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/tenInchScreenshots/2_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/2_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/ru-RU/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/title.txt: -------------------------------------------------------------------------------- 1 | Простой диктофон 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/sk/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/sk/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/title.txt: -------------------------------------------------------------------------------- 1 | Jednoduchý nahrávač zvuku -------------------------------------------------------------------------------- /fastlane/metadata/android/sl/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/sl/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sl/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/sl/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sl/title.txt: -------------------------------------------------------------------------------- 1 | Enostavni snemalnik zvoka 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sr/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/sr/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sr/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/sr/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sr/title.txt: -------------------------------------------------------------------------------- 1 | Диктафон Једноставан 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/sv-SE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/sv-SE/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/title.txt: -------------------------------------------------------------------------------- 1 | Simple Voice Recorder 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/tr-TR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/phoneScreenshots/1_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/tr-TR/images/phoneScreenshots/1_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/phoneScreenshots/2_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/tr-TR/images/phoneScreenshots/2_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/phoneScreenshots/3_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/tr-TR/images/phoneScreenshots/3_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/phoneScreenshots/4_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/tr-TR/images/phoneScreenshots/4_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/1_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/1_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/2_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/2_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/tenInchScreenshots/1_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/1_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/tenInchScreenshots/2_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/2_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/tr-TR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/title.txt: -------------------------------------------------------------------------------- 1 | Basit Ses Kaydedici 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/uk/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/uk/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/title.txt: -------------------------------------------------------------------------------- 1 | Простий диктофон 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/zh-CN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 使用这款简单的录音机轻松录制任何音频或创建备忘录 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | 简单录音机 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-HK/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/zh-HK/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-HK/short_description.txt: -------------------------------------------------------------------------------- 1 | 使用这款简单的录音机轻松录制任何音频或创建备忘录 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-HK/title.txt: -------------------------------------------------------------------------------- 1 | 简单录音机 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/fastlane/metadata/android/zh-TW/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/short_description.txt: -------------------------------------------------------------------------------- 1 | 輕鬆使用這款簡易語音錄音器,錄製任何音訊或創建備忘錄 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/title.txt: -------------------------------------------------------------------------------- 1 | 簡易語音錄音器 2 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/gradlew.bat -------------------------------------------------------------------------------- /graphics/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/graphics/app_icon.png -------------------------------------------------------------------------------- /graphics/featureGraphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/graphics/featureGraphic.jpg -------------------------------------------------------------------------------- /graphics/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/graphics/icon.png -------------------------------------------------------------------------------- /graphics/orange_feature_graphic.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/graphics/orange_feature_graphic.xcf -------------------------------------------------------------------------------- /graphics/promo_graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/graphics/promo_graphic.png -------------------------------------------------------------------------------- /graphics/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/graphics/square.png -------------------------------------------------------------------------------- /graphics/square.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/graphics/square.xcf -------------------------------------------------------------------------------- /graphics/tv_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/graphics/tv_banner.png -------------------------------------------------------------------------------- /keystore.properties_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/keystore.properties_sample -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Voice-Recorder/HEAD/settings.gradle.kts --------------------------------------------------------------------------------