├── .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 │ │ │ └── flashlight │ │ │ ├── App.kt │ │ │ ├── activities │ │ │ ├── BrightDisplayActivity.kt │ │ │ ├── MainActivity.kt │ │ │ ├── SettingsActivity.kt │ │ │ ├── SimpleActivity.kt │ │ │ ├── SplashActivity.kt │ │ │ ├── WidgetBrightDisplayConfigureActivity.kt │ │ │ ├── WidgetTorchConfigureActivity.kt │ │ │ └── viewmodel │ │ │ │ └── WidgetConfigureViewModel.kt │ │ │ ├── dialogs │ │ │ └── SleepTimerCustomAlertDialog.kt │ │ │ ├── extensions │ │ │ ├── Activity.kt │ │ │ └── Context.kt │ │ │ ├── helpers │ │ │ ├── AppDimensions.kt │ │ │ ├── BrightDisplayTileService.kt │ │ │ ├── CameraFlash.kt │ │ │ ├── CameraTorchListener.kt │ │ │ ├── Config.kt │ │ │ ├── Constants.kt │ │ │ ├── FlashlightTileService.kt │ │ │ ├── MyCameraImpl.kt │ │ │ ├── MyWidgetBrightDisplayProvider.kt │ │ │ ├── MyWidgetTorchProvider.kt │ │ │ ├── ShutDownReceiver.kt │ │ │ └── SleepTimer.kt │ │ │ ├── screens │ │ │ ├── BrightDisplayScreen.kt │ │ │ ├── MainScreen.kt │ │ │ ├── SettingsScreen.kt │ │ │ └── WidgetConfigureScreen.kt │ │ │ └── views │ │ │ └── SleepTimer.kt │ └── res │ │ ├── drawable-nodpi │ │ ├── img_bright_display_widget_preview.png │ │ └── img_torch_widget_preview.png │ │ ├── drawable │ │ ├── ic_bright_display_vector.xml │ │ ├── ic_flashlight_vector.xml │ │ ├── ic_launcher_monochrome.xml │ │ ├── ic_stroboscope_vector.xml │ │ └── shortcut_bright_display.xml │ │ ├── layout │ │ ├── widget_bright_display.xml │ │ └── widget_torch.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-az │ │ └── strings.xml │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-bs │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-cy │ │ └── 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-fi │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-gl │ │ └── strings.xml │ │ ├── values-hr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-is │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-iw │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-ko-rKR │ │ └── strings.xml │ │ ├── values-lt │ │ └── strings.xml │ │ ├── values-ml │ │ └── strings.xml │ │ ├── values-my │ │ └── 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-rPT │ │ └── 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-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── donottranslate.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── widget_bright_display.xml │ │ └── widget_torch.xml │ └── prepaid │ └── res │ └── values │ └── bools.xml ├── build.gradle.kts ├── 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 │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── da-DK │ ├── full_description.txt │ ├── 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 │ │ ├── 59.txt │ │ ├── 60.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ └── 66.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 │ ├── es-US │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_es-US.jpeg │ │ │ ├── 2_es-US.jpeg │ │ │ ├── 3_es-US.jpeg │ │ │ └── 4_es-US.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_es-US.jpeg │ │ │ └── 2_es-US.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_es-US.jpeg │ │ │ └── 2_es-US.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 │ │ ├── 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 │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_ko-KR.jpeg │ │ │ ├── 2_ko-KR.jpeg │ │ │ ├── 3_ko-KR.jpeg │ │ │ └── 4_ko-KR.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_ko-KR.jpeg │ │ │ └── 2_ko-KR.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_ko-KR.jpeg │ │ │ └── 2_ko-KR.jpeg │ ├── short_description.txt │ └── title.txt │ ├── lt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── nl-NL │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_nl-NL.jpeg │ │ │ ├── 2_nl-NL.jpeg │ │ │ ├── 3_nl-NL.jpeg │ │ │ └── 4_nl-NL.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_nl-NL.jpeg │ │ │ └── 2_nl-NL.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_nl-NL.jpeg │ │ │ └── 2_nl-NL.jpeg │ ├── 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 │ │ ├── icon.png │ │ ├── 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 │ ├── 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 │ ├── 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-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 ├── featureGraphic.xcf ├── icon.png ├── promo_graphic.png ├── square.png ├── square.xcf └── tv_banner.png ├── keystore.properties_sample └── settings.gradle.kts /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig 2 | # http://EditorConfig.org 3 | 4 | # top-most EditorConfig file 5 | root = true 6 | 7 | # LF end-of-line, insert an empty new line and UTF-8 8 | [*] 9 | end_of_line = lf 10 | insert_final_newline = true 11 | charset = utf-8 12 | indent_style = space 13 | indent_size = 4 14 | continuation_indent_size = 4 15 | max_line_length = 160 16 | 17 | [*.xml] 18 | continuation_indent_size = 4 19 | 20 | [*.kt] 21 | ij_kotlin_name_count_to_use_star_import = 5 22 | ij_kotlin_name_count_to_use_star_import_for_members = 5 23 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [tibbi] 2 | patreon: tiborkaputa 3 | custom: ["https://www.paypal.me/simplemobiletools"] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | *.aab 3 | .gradle 4 | /local.properties 5 | /.idea/ 6 | .DS_Store 7 | /build 8 | /captures 9 | keystore.jks 10 | keystore.properties 11 | fastlane/fastlane.json 12 | Gemfile 13 | Gemfile.lock 14 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ### Reporting 2 | Before you report something, read the reporting rules [here](https://github.com/SimpleMobileTools/General-Discussion#how-do-i-suggest-an-improvement-ask-a-question-or-report-an-issue) please. 3 | 4 | ### Contributing as a developer 5 | Some instructions about code style and everything that has to be done to increase the change of your code getting accepted can be found at the [General Discussion](https://github.com/SimpleMobileTools/General-Discussion#contribution-rules-for-developers) section. 6 | 7 | ### Contributing as a non developer 8 | In case you just want to for example improve a translation, you can find the way of doing it [here](https://github.com/SimpleMobileTools/General-Discussion#how-can-i-suggest-an-edit-to-a-file). 9 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Flashlight_debug 4 | -------------------------------------------------------------------------------- /app/src/fdroid/res/values/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | true 5 | true 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/flashlight/App.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.flashlight 2 | 3 | import android.app.Application 4 | import com.simplemobiletools.commons.extensions.checkUseEnglish 5 | 6 | class App : Application() { 7 | override fun onCreate() { 8 | super.onCreate() 9 | checkUseEnglish() 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/flashlight/activities/SimpleActivity.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.flashlight.activities 2 | 3 | import com.simplemobiletools.commons.activities.BaseSimpleActivity 4 | import com.simplemobiletools.flashlight.R 5 | 6 | open class SimpleActivity : BaseSimpleActivity() { 7 | override fun getAppIconIDs() = arrayListOf( 8 | R.mipmap.ic_launcher_red, 9 | R.mipmap.ic_launcher_pink, 10 | R.mipmap.ic_launcher_purple, 11 | R.mipmap.ic_launcher_deep_purple, 12 | R.mipmap.ic_launcher_indigo, 13 | R.mipmap.ic_launcher_blue, 14 | R.mipmap.ic_launcher_light_blue, 15 | R.mipmap.ic_launcher_cyan, 16 | R.mipmap.ic_launcher_teal, 17 | R.mipmap.ic_launcher_green, 18 | R.mipmap.ic_launcher_light_green, 19 | R.mipmap.ic_launcher_lime, 20 | R.mipmap.ic_launcher_yellow, 21 | R.mipmap.ic_launcher_amber, 22 | R.mipmap.ic_launcher, 23 | R.mipmap.ic_launcher_deep_orange, 24 | R.mipmap.ic_launcher_brown, 25 | R.mipmap.ic_launcher_blue_grey, 26 | R.mipmap.ic_launcher_grey_black 27 | ) 28 | 29 | override fun getAppLauncherName() = getString(R.string.app_launcher_name) 30 | } 31 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/flashlight/activities/SplashActivity.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.flashlight.activities 2 | 3 | import android.content.Intent 4 | import com.simplemobiletools.commons.activities.BaseSplashActivity 5 | 6 | class SplashActivity : BaseSplashActivity() { 7 | override fun initActivity() { 8 | startActivity(Intent(this, MainActivity::class.java)) 9 | finish() 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/flashlight/activities/viewmodel/WidgetConfigureViewModel.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.flashlight.activities.viewmodel 2 | 3 | import android.app.Application 4 | import android.graphics.Color 5 | import androidx.lifecycle.AndroidViewModel 6 | import com.simplemobiletools.flashlight.R 7 | import com.simplemobiletools.flashlight.extensions.config 8 | import kotlinx.coroutines.flow.MutableStateFlow 9 | import kotlinx.coroutines.flow.asStateFlow 10 | 11 | internal class WidgetConfigureViewModel( 12 | application: Application 13 | ) : AndroidViewModel(application) { 14 | 15 | 16 | private val _widgetAlpha = MutableStateFlow(0f) 17 | val widgetAlpha = _widgetAlpha.asStateFlow() 18 | 19 | private val _widgetId = MutableStateFlow(0) 20 | val widgetId = _widgetId.asStateFlow() 21 | 22 | private val _widgetColor = MutableStateFlow(0) 23 | val widgetColor = _widgetColor.asStateFlow() 24 | 25 | fun changeAlpha(newAlpha: Float) { 26 | _widgetAlpha.value = newAlpha 27 | } 28 | 29 | fun updateColor(newColor: Int) { 30 | _widgetColor.value = newColor 31 | } 32 | 33 | fun setWidgetId(widgetId: Int) { 34 | _widgetId.value = widgetId 35 | } 36 | 37 | init { 38 | _widgetColor.value = application.config.widgetBgColor 39 | if (_widgetColor.value == application.resources.getColor(R.color.default_widget_bg_color, null) && application.config.isUsingSystemTheme) { 40 | _widgetColor.value = application.resources.getColor(com.simplemobiletools.commons.R.color.you_primary_color, application.theme) 41 | } 42 | 43 | _widgetAlpha.value = Color.alpha(_widgetColor.value) / 255f 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/flashlight/extensions/Context.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.flashlight.extensions 2 | 3 | import android.appwidget.AppWidgetManager 4 | import android.content.ComponentName 5 | import android.content.Context 6 | import android.content.Intent 7 | import android.graphics.Bitmap 8 | import android.graphics.Canvas 9 | import android.graphics.drawable.Drawable 10 | import com.simplemobiletools.flashlight.helpers.* 11 | 12 | val Context.config: Config get() = Config.newInstance(applicationContext) 13 | 14 | fun Context.updateWidgets(isEnabled: Boolean) { 15 | val widgetIDs = AppWidgetManager.getInstance(applicationContext)?.getAppWidgetIds(ComponentName(applicationContext, MyWidgetTorchProvider::class.java)) ?: return 16 | if (widgetIDs.isNotEmpty()) { 17 | Intent(applicationContext, MyWidgetTorchProvider::class.java).apply { 18 | action = TOGGLE_WIDGET_UI 19 | putExtra(IS_ENABLED, isEnabled) 20 | sendBroadcast(this) 21 | } 22 | } 23 | 24 | updateBrightDisplayWidget() 25 | } 26 | 27 | fun Context.updateBrightDisplayWidget() { 28 | val widgetIDs = AppWidgetManager.getInstance(applicationContext)?.getAppWidgetIds(ComponentName(applicationContext, MyWidgetBrightDisplayProvider::class.java)) ?: return 29 | if (widgetIDs.isNotEmpty()) { 30 | Intent(applicationContext, MyWidgetBrightDisplayProvider::class.java).apply { 31 | action = AppWidgetManager.ACTION_APPWIDGET_UPDATE 32 | putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, widgetIDs) 33 | sendBroadcast(this) 34 | } 35 | } 36 | } 37 | 38 | fun Context.drawableToBitmap(drawable: Drawable): Bitmap { 39 | val size = (60 * resources.displayMetrics.density).toInt() 40 | val mutableBitmap = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888) 41 | val canvas = Canvas(mutableBitmap) 42 | drawable.setBounds(0, 0, size, size) 43 | drawable.draw(canvas) 44 | return mutableBitmap 45 | } 46 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/flashlight/helpers/AppDimensions.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.flashlight.helpers 2 | 3 | import androidx.compose.runtime.Immutable 4 | import androidx.compose.ui.unit.dp 5 | import androidx.compose.ui.unit.sp 6 | 7 | @Immutable 8 | object AppDimensions { 9 | val seekbarWidth = 250.dp 10 | val seekbarHeight = 20.dp 11 | val mainButtonSize = 180.dp 12 | val smallerButtonSize = 60.dp 13 | val sosTextSize = 26.sp 14 | val widgetColorPickerSize = 50.dp 15 | } 16 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/flashlight/helpers/BrightDisplayTileService.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.flashlight.helpers 2 | 3 | import android.annotation.TargetApi 4 | import android.content.Intent 5 | import android.os.Build 6 | import android.service.quicksettings.TileService 7 | import com.simplemobiletools.flashlight.activities.BrightDisplayActivity 8 | 9 | @TargetApi(Build.VERSION_CODES.N) 10 | class BrightDisplayTileService : TileService() { 11 | 12 | override fun onClick() { 13 | val intent = Intent(applicationContext, BrightDisplayActivity::class.java) 14 | intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP or Intent.FLAG_ACTIVITY_NEW_TASK) 15 | startActivityAndCollapse(intent) 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/flashlight/helpers/CameraTorchListener.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.flashlight.helpers 2 | 3 | interface CameraTorchListener { 4 | fun onTorchEnabled(isEnabled:Boolean) 5 | 6 | fun onTorchUnavailable() 7 | } 8 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/flashlight/helpers/Constants.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.flashlight.helpers 2 | 3 | const val BRIGHT_DISPLAY = "bright_display" 4 | const val BRIGHT_DISPLAY_COLOR = "bright_display_color" 5 | const val STROBOSCOPE = "stroboscope" 6 | const val TURN_FLASHLIGHT_ON = "turn_flashlight_on" 7 | const val IS_ENABLED = "is_enabled" 8 | const val TOGGLE = "toggle" 9 | const val TOGGLE_WIDGET_UI = "toggle_widget_ui" 10 | const val STROBOSCOPE_FREQUENCY = "stroboscope_frequency" 11 | const val STROBOSCOPE_PROGRESS = "stroboscope_progress" 12 | const val FORCE_PORTRAIT_MODE = "force_portrait_mode" 13 | const val SOS = "sos" 14 | const val BRIGHTNESS_LEVEL = "brightness_level" 15 | const val LAST_SLEEP_TIMER_SECONDS = "last_sleep_timer_seconds" 16 | const val SLEEP_IN_TS = "sleep_in_ts" 17 | const val MIN_BRIGHTNESS_LEVEL = 1 18 | const val DEFAULT_BRIGHTNESS_LEVEL = -1 19 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/flashlight/helpers/FlashlightTileService.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.flashlight.helpers 2 | 3 | import android.annotation.TargetApi 4 | import android.os.Build 5 | import android.service.quicksettings.Tile 6 | import android.service.quicksettings.TileService 7 | 8 | @TargetApi(Build.VERSION_CODES.N) 9 | class FlashlightTileService : TileService() { 10 | 11 | override fun onClick() { 12 | MyCameraImpl.newInstance(this).toggleFlashlight() 13 | updateTile() 14 | } 15 | 16 | override fun onTileRemoved() { 17 | if (MyCameraImpl.isFlashlightOn) 18 | MyCameraImpl.newInstance(this).toggleFlashlight() 19 | } 20 | 21 | override fun onStartListening() { 22 | updateTile() 23 | } 24 | 25 | override fun onTileAdded() { 26 | updateTile() 27 | } 28 | 29 | private fun updateTile() { 30 | qsTile?.state = if (MyCameraImpl.isFlashlightOn) Tile.STATE_ACTIVE else Tile.STATE_INACTIVE 31 | qsTile?.updateTile() 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/flashlight/helpers/MyWidgetBrightDisplayProvider.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.flashlight.helpers 2 | 3 | import android.app.PendingIntent 4 | import android.appwidget.AppWidgetManager 5 | import android.appwidget.AppWidgetProvider 6 | import android.content.ComponentName 7 | import android.content.Context 8 | import android.content.Intent 9 | import android.graphics.Bitmap 10 | import android.graphics.Color 11 | import android.widget.RemoteViews 12 | import com.simplemobiletools.commons.extensions.getColoredDrawableWithColor 13 | import com.simplemobiletools.flashlight.R 14 | import com.simplemobiletools.flashlight.activities.BrightDisplayActivity 15 | import com.simplemobiletools.flashlight.extensions.config 16 | import com.simplemobiletools.flashlight.extensions.drawableToBitmap 17 | 18 | class MyWidgetBrightDisplayProvider : AppWidgetProvider() { 19 | private val OPEN_APP_INTENT_ID = 1 20 | 21 | override fun onUpdate(context: Context, appWidgetManager: AppWidgetManager, appWidgetIds: IntArray) { 22 | appWidgetManager.getAppWidgetIds(getComponentName(context)).forEach { 23 | RemoteViews(context.packageName, R.layout.widget_bright_display).apply { 24 | setupAppOpenIntent(context, this) 25 | 26 | val selectedColor = context.config.widgetBgColor 27 | val alpha = Color.alpha(selectedColor) 28 | 29 | val bmp = getColoredIcon(context, selectedColor, alpha) 30 | setImageViewBitmap(R.id.bright_display_btn, bmp) 31 | 32 | appWidgetManager.updateAppWidget(it, this) 33 | } 34 | } 35 | } 36 | 37 | private fun getComponentName(context: Context) = ComponentName(context, MyWidgetBrightDisplayProvider::class.java) 38 | 39 | private fun setupAppOpenIntent(context: Context, views: RemoteViews) { 40 | Intent(context, BrightDisplayActivity::class.java).apply { 41 | val pendingIntent = PendingIntent.getActivity(context, OPEN_APP_INTENT_ID, this, PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE) 42 | views.setOnClickPendingIntent(R.id.bright_display_btn, pendingIntent) 43 | } 44 | } 45 | 46 | private fun getColoredIcon(context: Context, color: Int, alpha: Int): Bitmap { 47 | val drawable = context.resources.getColoredDrawableWithColor(R.drawable.ic_bright_display_vector, color, alpha) 48 | return context.drawableToBitmap(drawable) 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/flashlight/helpers/ShutDownReceiver.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.flashlight.helpers 2 | 3 | import android.content.BroadcastReceiver 4 | import android.content.Context 5 | import android.content.Intent 6 | import kotlin.system.exitProcess 7 | 8 | class ShutDownReceiver : BroadcastReceiver() { 9 | override fun onReceive(context: Context?, intent: Intent?) { 10 | exitProcess(0) 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/img_bright_display_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/app/src/main/res/drawable-nodpi/img_bright_display_widget_preview.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/img_torch_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/app/src/main/res/drawable-nodpi/img_torch_widget_preview.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_bright_display_vector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_flashlight_vector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_stroboscope_vector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_bright_display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_bright_display.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_torch.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_amber.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue_grey.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_brown.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_cyan.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_orange.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_purple.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_grey_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_indigo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_lime.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_pink.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_teal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_yellow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simple Flashlight 4 | Flashlight 5 | فشل الحصول على الكاميرا 6 | الحصول على إذن تصوير ضروري للتأثيرات 7 | شاشة ساطعة 8 | 9 | إظهار زر عرض ساطع 10 | إظهار زر ستروبوسكوب 11 | Stroboscope 12 | إظهار زر SOS 13 | قم بتشغيل المصباح عند بدء التشغيل 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-az/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Sadə Fənər 4 | Fənər 5 | Kamera əlçatan deyil 6 | Düzgün strob effekti üçün kamera icazəsi gərəkdir 7 | Bright display 8 | 9 | İşıqlı ekran düyməsi göstər 10 | Stroboskop düyməsi göstər 11 | Stroboscope 12 | Show an SOS button 13 | Başlanğıcda fənəri aç 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-be/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simple Flashlight 4 | Ліхтарык 5 | Не атрымалася атрымаць камеру 6 | Дазвол на доступ да камеры неабходны для стварэння эфекту страбаскопа 7 | Яркі экран 8 | 9 | Паказваць кнопку яркага экрана 10 | Паказваць кнопку страбаскопа 11 | Stroboscope 12 | Паказваць кнопку СОС 13 | Уключаць ліхтарык пры запуску 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Обикновен фенер 4 | Фенер 5 | Неуспешен достъп до камера 6 | Разрешение за използване на камерата е необходимо за постигане на подходящ стробоскопичен ефект 7 | Ярък дисплей 8 | 9 | Покажи ярък дисплей бутон 10 | Покажи стробинг бутон 11 | Stroboscope 12 | Показване на SOS бутон 13 | Включване на фенер при стартиране 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-bs/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Jednostavna baterija 4 | Baterija 5 | Nije moguće pristupiti kameri 6 | Potrebna je dozvola za pristup kameri za pravilan stroboskopski efekt 7 | Svijetli ekran 8 | 9 | Prikaži dugme za svijetli ekran 10 | Prikaži dugme za stroboskop 11 | Stroboskop 12 | Prikaži SOS dugme 13 | Uključi bateriju pri pokretanju 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simple Flashlight 4 | Llanterna 5 | Ha fallat l\'accés a la càmera 6 | És necessari el permís de la càmera per a un efecte estroboscòpic adequat 7 | Pantalla lluminosa 8 | 9 | Mostra un botó de pantalla lluminosa 10 | Mostra un botó d\'estroboscopi 11 | Stroboscope 12 | Mostra un botó de SOS 13 | Activa la llanterna a l\'inici 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Jednoduchá svítilna 4 | Svítilna 5 | Přístup k fotoaparátu se nezdařil 6 | Přístup k fotoaparátu je potřebný pro správný stroboskopický efekt 7 | Jasný displej 8 | 9 | Zobrazit tlačítko pro jasný displej 10 | Zobrazit tlačítko pro stroboskop 11 | Stroboscope 12 | Zobrazit tlačítko SOS 13 | Zapnout svítilnu po spuštění 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-cy/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simple Flashlight 4 | Fflacholau 5 | Methwyd cael at y camera 6 | Rhaid cael caniatâd y camera i\'r effaith strobosgop 7 | Bright display 8 | 9 | Dangos botwm dangosydd llachar 10 | Dangos botwm strobosgop 11 | Stroboscope 12 | Show an SOS button 13 | Troi\'r fflacholau ymlaen wrth ddechrau 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simpel lommelygte 4 | Lommelygte 5 | Forbindelse til kameraet mislykkedes 6 | Kameratilladelse er nødvendig for korrekt stroboskopeffekt 7 | Lyst display 8 | 9 | Vis en lys skærmknap 10 | Vis en stroboskop-knap 11 | Stroboscope 12 | Vis en SOS-knap 13 | Slå lommelygte til ved start 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Schlichte Taschenlampe 4 | Taschenlampe 5 | Beanspruchen der Kamera fehlgeschlagen 6 | Kameraberechtigung ist für den Stroboskopeffekt erforderlich 7 | Heller Bildschirm 8 | 9 | Schaltfläche für hellen Bildschirm zeigen 10 | Schaltfläche für Stroboskop zeigen 11 | Stroboscope 12 | Eine SOS-Schaltfläche zeigen 13 | Taschenlampe beim Start einschalten 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Απλός φακός 4 | Φακός 5 | Η εύρεση της κάμερας απέτυχε 6 | Χρειάζεται άδεια χρήσης της κάμερας για τη σωστή λειτουργία στροβοσκοπίου 7 | Φωτεινή οθόνη 8 | 9 | Προβολή κουμπιού φωτεινότητας 10 | Προβολή κουμπιού στροβοσκοπίου 11 | Stroboscope 12 | Προβολή κουμπιού SOS 13 | Άνοιγμα του φακού κατά την εκκίνηση 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-eo/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simpla Lanterno 4 | Lanterno 5 | Obtaining the camera failed 6 | Camera permission is necessary for proper stroboscope effect 7 | Hela ekrano 8 | 9 | Montri butonon por hela ekrano 10 | Show a stroboscope button 11 | Stroboscope 12 | Show an SOS button 13 | Turn flashlight on at startup 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Linterna sencilla 4 | Linterna 5 | Ha fallado el acceso a la cámara 6 | El permiso de acceso a la cámara es necesario para un apropiado efecto estroboscópico 7 | Pantalla brillante 8 | 9 | Mostrar botón de pantalla brillante 10 | Mostrar botón de estroboscopio 11 | Stroboscope 12 | Mostrar un botón de SOS 13 | Encender la linterna al inicio 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Lihtne taskulamp 4 | Taskulamp 5 | Kaamera liidestamine ei õnnestunud 6 | Toimiva stroboskoopilise efekti jaoks on vajalik kaamera kasutamise luba 7 | Kirgas ekraan 8 | 9 | Näita nuppu ekraanil kirkana 10 | Näita stroboskoobi nuppu 11 | Stroboscope 12 | Näita SOS-nuppu 13 | Rakenduse käivitamisel lülita taskulamp sisse 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Yksinkertainen taskulamppu 4 | Taskulamppu 5 | Kameran saanti epäonnistui 6 | Lupa kameraan vaaditaan oikean stroboskooppisen vaikutuksen saavuttamiseksi 7 | Kirkas näyttö 8 | 9 | Näytä kirkas näyttö -painike 10 | Näytä stroboskooppipainike 11 | Stroboscope 12 | Näytä SOS-painike 13 | Kytke taskulamppu päälle käynnistyksen yhteydessä 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Lampe de poche simple 4 | Lampe de poche 5 | Échec de l\'obtention de l\'objectif photo-vidéo 6 | L\'autorisation d\'accès à l\'appareil photo est nécessaire pour un effet stroboscopique correct 7 | Affichage lumineux 8 | 9 | Afficher un bouton d\'affichage lumineux 10 | Afficher un bouton stroboscope 11 | Stroboscope 12 | Afficher un bouton « S.O.S. » 13 | Allumer la lampe de poche au démarrage 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-gl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simple Flashlight 4 | Lanterna 5 | Erro ao obter a cámara 6 | O permiso da cámara é necesario para utilizar o efecto estroboscopio 7 | Pantalla brillante 8 | 9 | Mostrar un botón para iluminala pantalla 10 | Mostrar un botón estroboscopio 11 | Stroboscope 12 | Mostrar un botón de SOS 13 | Acendela lanterna ao iniciar 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Jednostavna svjetiljka 4 | Svjetiljka 5 | Nije moguće pristupiti kameri 6 | Potrebna je dozvola za pristup kameri za pravilan stroboskopski efekt 7 | Svijetli ekran 8 | 9 | Prikaži gumb za svijetli ekran 10 | Prikaži gumb za stroboskop 11 | Stroboskop 12 | Prikaži SOS gumb 13 | Uključi svjetiljku pri pokretanju 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Egyszerű zseblámpa 4 | Zseblámpa 5 | A kamera megszerzése sikertelen 6 | A Kamera engedély szükséges a megfelelő stroboszkóp hatáshoz 7 | Fényes kijelző 8 | 9 | Fényes kijelző gomb megjelenítése 10 | Stroboszkóp gomb megjelenítése 11 | Stroboscope 12 | SOS gomb megjelenítése 13 | Zseblámpa bekapcsolása indításkor 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simple Flashlight 4 | Senter 5 | Gagal mendapatkan kamera 6 | Izin kamera diperlukan untuk efek stroboscope yang tepat 7 | Layar cerah 8 | 9 | Tampilkan tombol tampilan cerah 10 | Tampilkan tombol stroboscope 11 | Stroboscope 12 | Tampilkan tombol SOS 13 | Nyalakan senter saat memulai 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-is/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simple Flashlight 4 | Flashlight 5 | Obtaining the camera failed 6 | Camera permission is necessary for proper stroboscope effect 7 | Bright display 8 | 9 | Show a bright display button 10 | Show a stroboscope button 11 | Stroboscope 12 | Show an SOS button 13 | Turn flashlight on at startup 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Torcia Semplice 4 | Torcia 5 | Impossibile rilevare la fotocamera 6 | Il permesso per la fotocamera è necessario per l\'effetto stroboscopico 7 | Schermo luminoso 8 | 9 | Mostra un pulsante per lo schermo luminoso 10 | Mostra un pulsante per l\'effetto stroboscopico 11 | Stroboscope 12 | Mostra un pulsante SOS 13 | Accendi la torcia all\'avvio 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | פנס פשוט 4 | פנס 5 | השגת המצלמה נכשלה 6 | הרשאת מצלמה נחוצה לאפקט סטרובוסקופ תקין 7 | תצוגה בהירה 8 | 9 | הצג כפתור תצוגה בהיר 10 | הצג כפתור סטרובוסקופ 11 | Stroboscope 12 | הצג כפתור SOS 13 | הדלק את הפנס בעת ההפעלה 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | シンプルフラッシュライト 4 | フラッシュライト 5 | カメラの取得に失敗しました 6 | 適切なストロボ効果のために、カメラのアクセス許可が必要です 7 | 明るい画面 8 | 9 | 明るく表示ボタンを表示 10 | ストロボボタンを表示 11 | Stroboscope 12 | SOSボタンを表示 13 | 起動時にフラッシュライトを点灯 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-ko-rKR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 심플 손전등 4 | 손전등 5 | 카메라 취득 실패 6 | 적절한 스트로보 스코프 효과를 얻으려면 카메라 사용 권한이 필요합니다. 7 | Bright display 8 | 9 | 브라이트 디스플레이 버튼 활성화 10 | 스트로보 스코프 버튼 활성화 11 | Stroboscope 12 | Show an SOS button 13 | Turn flashlight on at startup 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Paprastas žibintuvėlis 4 | Žibintuvėlis 5 | Nepavyko gauti prieigos prie kameros 6 | Fotoaparato leidimas yra būtinas tinkamam stroboskopo efektui 7 | Ryškus ekranas 8 | 9 | Rodyti ryškaus ekrano mygtuką 10 | Rodyti stroboskopo mygtuką 11 | Stroboscope 12 | Rodyti SOS mygtuką 13 | Įjungti žibintuvėlį paleidus programėlę 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-ml/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simple Flashlight 4 | ടോർച്ച്‌ 5 | ക്യാമറ നേടുന്നത് പരാജയപ്പെട്ടു 6 | ശരിയായ സ്ട്രോബോസ്കോപ്പിക് ഇഫക്റ്റിന് ക്യാമറ അനുമതി ആവശ്യമാണ് 7 | ബ്രൈറ്റ് ഡിസ്പ്ലേ 8 | 9 | ബ്രൈറ്റ് ഡിസ്പ്ലേ ബട്ടൺ കാണിക്കുക 10 | ഒരു സ്ട്രോബോസ്കോപ്പ് ബട്ടൺ കാണിക്കുക 11 | Stroboscope 12 | SOS ബട്ടൺ കാണിക്കുക 13 | ആരംഭത്തിൽ ടോർച്ച്‌ഓണാക്കുക 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-my/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ရိုးရှင်း လက်နှိပ်မီး 4 | လက်နှိပ်မီး 5 | ကင်မရာနှင့်ပတ်သတ်​သောအချို့အယွင်း 6 | အချက်ပြမီးလုပ်​ဆောင်မှုအတွက် ကင်မရာခွင့်ပြုချက်လိုအပ်ပါသည် 7 | မှန်သားပြင်အလင်း 8 | 9 | မှန်သားပြင်အလင်း ခလုတ်ပြပါ 10 | အချက်ပြမီး ခလုတ် ပြပါ 11 | Stroboscope 12 | အက်စ်အိုအက်စ် ခလုတ်ပြပါ 13 | အက်ပ်ကိုဖွင့်တာနဲ့လက်နှိပ်မီးကိုဖွင့်ပါ 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-nb-rNO/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Enkel lommelykt 4 | Lommelykt 5 | Obtaining the camera failed 6 | Kameratillatelse er nødvendig for riktig stroboskopeffekt 7 | Lys skjerm 8 | 9 | Vis en lys skjermknapp 10 | Vis en stroboskop-knapp 11 | Stroboscope 12 | Vis SOS-knapp 13 | Skru på lommelykt ved oppstart 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Eenvoudige Zaklamp 4 | Zaklamp 5 | Toegang tot de camera geweigerd 6 | De permissie Camera is nodig voor het stroboscoopeffect 7 | Fel scherm 8 | 9 | Knop voor fel scherm tonen 10 | Knop voor stroboscoop tonen 11 | Stroboscope 12 | Knop voor SOS-noodsignaal tonen 13 | Zaklamp bij starten aanzetten 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-pa-rPK/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | سادہ ٹورچ 4 | ٹورچ 5 | کیمرہ پہنچ نہیں سکدا 6 | سٹروبوسکوپ لئی کیمرہ دی اِجازت ضروری اے 7 | چمکدار ڈیسپلے 8 | 9 | چمکدار ڈیسپلے بٹن دکھاؤ 10 | سٹروبوسکوپ بٹن دکھاؤ 11 | Stroboscope 12 | ایس‌اوایس بٹن دکھاؤ 13 | جدوں شروع کرن ٹورچ نوں چالو کرو 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Prosta latarka 4 | Latarka 5 | Nie udało się uzyskać dostępu do aparatu 6 | Dostęp do aparatu jest niezbędny dla prawidłowego efektu stroboskopowego 7 | Jasny wyświetlacz 8 | 9 | Pokazuj przycisk jasnego wyświetlacza 10 | Pokazuj przycisk stroboskopu 11 | Stroboskop 12 | Pokazuj przycisk SOS 13 | Włączaj latarkę przy uruchomieniu 14 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Lanterna Simples 4 | Lanterna 5 | Erro ao obter a câmera 6 | A permissão para a câmera é necessária para usar o estroboscópio 7 | Tela brilhante 8 | 9 | Mostrar o botão de tela brilhante 10 | Mostrar o botão do Estroboscópio 11 | Stroboscope 12 | Mostrar o botão de SOS 13 | Ligar a lanterna ao iniciar o app 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simple Flashlight – Lanterna 4 | Lanterna 5 | Falha no acesso à câmera 6 | O efeito estroboscópico requer a permissão da câmara 7 | Ecrã luminoso 8 | 9 | Mostrar botão de ecrã luminoso 10 | Mostrar botão do estroboscópio 11 | Stroboscope 12 | Mostrar botão de SOS 13 | Acender a lanterna ao iniciar 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simple Flashlight 4 | Lanterna 5 | Falha ao aceder à câmera 6 | O efeito estroboscópio requer a permissão da câmara 7 | Ecrã luminoso 8 | 9 | Mostrar botão de ecrã luminoso 10 | Mostrar botão do estroboscópio 11 | Stroboscope 12 | Mostrar botão de SOS 13 | Acender a lanterna ao iniciar 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Lanternă simplă 4 | Lanternă 5 | Obținerea camerei a eșuat 6 | Permisul camerei este necesar pentru un efect stroboscopic adecvat 7 | Ecran luminos 8 | 9 | Afișaţi un buton pentru ecran luminos 10 | Afișaţi un buton pentru stroboscop 11 | Stroboscope 12 | Afișați un buton SOS 13 | Porniți lanterna la pornire 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Простой фонарик 4 | Фонарик 5 | Не удалось получить доступ к камере 6 | Разрешение на доступ к камере необходимо для создания эффекта стробоскопа 7 | Яркий экран 8 | 9 | Показать кнопку яркого экрана 10 | Показать кнопку стробоскопа 11 | Stroboscope 12 | Показать кнопку SOS 13 | Включать фонарик при запуске 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Jednoduchá baterka 4 | Baterka 5 | Prístup ku kamere zlyhal Obtaining the camera failed 6 | Pre správny stroboskopický efekt je potrebný prístup ku kamere 7 | Jasný displej 8 | 9 | Zobraziť tlačidlo pre jasný displej 10 | Zobraziť tlačidlo pre stroboskop 11 | Stroboscope 12 | Zobraziť tlačidlo SOS 13 | Aktivovať baterku po spustení 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Enostavna svetilka 4 | Svetilka 5 | Pridobivanje kamere ni uspelo 6 | Za ustrezen učinek stroboskopa je pogoj dovoljenje kamere 7 | Svetli zaslon 8 | 9 | Pokažite gumb za svetel zaslon 10 | Prikaži gumb stroboskopa 11 | Stroboscope 12 | Prikaz gumba SOS 13 | Vklop svetilke ob zagonu 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Једноставна лампа 4 | Батеријска лампа 5 | Добијање камере није успело 6 | Дозвола камере је неопходна за правилан ефекат стробоскопа 7 | Светао екран 8 | 9 | Прикажи светло дугме за екран 10 | Прикажи дугме за стробоскоп 11 | Стробоскоп 12 | Прикажи СОС дугме 13 | Укључите батеријску лампу при покретању 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simple Flashlight 4 | Ficklampa 5 | Det gick inte att komma åt kameran 6 | Kamerabehörigheten behövs för en riktig stroboskopeffekt 7 | Ljus skärm 8 | 9 | Visa en knapp för ljus skärm 10 | Visa en stroboskopknapp 11 | Stroboscope 12 | Visa en SOS-knapp 13 | Slå på ficklampan vid start 14 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simple Flashlight 4 | Flashlight 5 | Obtaining the camera failed 6 | Camera permission is necessary for proper stroboscope effect 7 | Bright display 8 | 9 | Show a bright display button 10 | Show a stroboscope button 11 | Stroboscope 12 | Show an SOS button 13 | Turn flashlight on at startup 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Basit Fener 4 | Fener 5 | Kamera hatası 6 | Düzgün stroboskop etkisi için kamera izni gereklidir 7 | Parlak ekran 8 | 9 | Parlak ekran düğmesini göster 10 | Stroboskop düğmesini göster 11 | Stroboscope 12 | SOS düğmesini göster 13 | Başlangıçta feneri aç 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Простий Ліхтарик 4 | Ліхтарик 5 | Не вдалося отримати доступ до камери 6 | Дозвіл на доступ до камери необхідний для створення ефекту стробоскопа 7 | Яскравий дисплей 8 | 9 | Показувати кнопку перемикання на білий дисплей 10 | Показувати кнопку стробоскопа 11 | Stroboscope 12 | Показати кнопку SOS 13 | Вмикати ліхтарик при запуску 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 简易手电筒 4 | 手电筒 5 | 获取相机失败 6 | 相机权限对于正确的频闪仪效果是必须的 7 | 高亮屏幕 8 | 9 | 显示高亮屏幕按钮 10 | 显示频闪仪按钮 11 | Stroboscope 12 | 显示紧急求助按钮 13 | 启动时打开手电筒 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 簡易手電筒 4 | 簡易手電筒 5 | 未能取得相機 6 | 相機權限對於閃爍效果是必要的 7 | Bright display 8 | 9 | 顯示螢幕發亮按鈕 10 | 顯示閃爍效果按鈕 11 | Stroboscope 12 | 顯示SOS按鈕 13 | 啟動時打開手電筒 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFF57C00 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 60dp 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/donottranslate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | com.simplemobiletools.flashlight 4 | 5 | SOS 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simple Flashlight 4 | Flashlight 5 | Obtaining the camera failed 6 | Camera permission is necessary for proper stroboscope effect 7 | Bright display 8 | 9 | Show a bright display button 10 | Show a stroboscope button 11 | Stroboscope 12 | Show an SOS button 13 | Turn flashlight on at startup 14 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/xml/widget_bright_display.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/xml/widget_torch.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /app/src/prepaid/res/values/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | true 5 | true 6 | true 7 | 8 | -------------------------------------------------------------------------------- /build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | alias(libs.plugins.android).apply(false) 3 | alias(libs.plugins.kotlinAndroid).apply(false) 4 | } 5 | -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- 1 | json_key_file("fastlane/fastlane.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one 2 | package_name("com.simplemobiletools.flashlight") # e.g. com.krausefx.app 3 | -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- 1 | # This file contains the fastlane.tools configuration 2 | # You can find the documentation at https://docs.fastlane.tools 3 | # 4 | # For a list of all available actions, check out 5 | # 6 | # https://docs.fastlane.tools/actions 7 | # 8 | # For a list of all available plugins, check out 9 | # 10 | # https://docs.fastlane.tools/plugins/available-plugins 11 | # 12 | 13 | # Uncomment the line if you want fastlane to automatically update itself 14 | # update_fastlane 15 | 16 | default_platform(:android) 17 | 18 | platform :android do 19 | desc "Runs all the tests" 20 | lane :test do 21 | gradle(task: "test") 22 | end 23 | 24 | desc "Submit a new Beta Build to Crashlytics Beta" 25 | lane :beta do 26 | gradle(task: "clean assembleRelease") 27 | crashlytics 28 | 29 | # sh "your_script.sh" 30 | # You can also use other beta testing services here 31 | end 32 | 33 | desc "Deploy a new version to the Google Play" 34 | lane :deploy do 35 | gradle(task: "clean assembleRelease") 36 | upload_to_play_store 37 | end 38 | end 39 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/full_description.txt: -------------------------------------------------------------------------------- 1 | مصباح يدوي نظيف مع شاشة ساطعة إضافية ، ومصابيح قوية قابلة للتخصيص مع وظيفة الإضاءة القوية ووضع SOS المحدد مسبقًا. 2 | 3 | هذا المصباح اليدوي السريع LED هو ضوء على جهازك ويعمل كمصباح LED حقيقي عندما يكون في الظلام. باستخدام هذا المصباح المائل ، يمكنك العمل بسهولة في ظروف مختلفة ويمكن أن يساعدك هذا المصباح اليدوي الذي يعمل بسرعة البدء عندما تكون في موقف عصيب. 4 | 5 | كل هذه الوظائف يمكن أن تكون مفيدة للغاية في ظل ظروف معينة. سواء كنت تتجول في الظلام وتحتاج إلى ضوء LED لترى الطريق ، أو عليك أن تجد شيئًا ما في مكان منخفض الإضاءة ، يمكن أن يساعدك ضوء الفلاش السريع هذا في جميع الظروف الممكنة. يمكن أن يساعدك الضوء القوي في هذا التطبيق عندما تكون في حاجة إلى المساعدة. يمكن أن يساعد ضوء فلاش LED لبدء التشغيل السريع في طلب الإنقاذ إذا كنت في حاجة إليه. 6 | 7 | يمكن تغيير لون الشاشة الساطعة ، مما يفتح عالمًا جديدًا من الاستخدامات الممكنة. يمكن أن يكون مفيدًا في حالة رغبتك في رؤية قربك الأوسع دون تعمية نفسك. بألوان مختلفة ، يمكنك استخدام هذا المصباح عندما تكون مع الأصدقاء وترغب في إقامة حفلة. أو يمكنك استخدام هذه الميزة للاتصال بشخص ما للحصول على المساعدة وفقًا للشخص. 8 | 9 | يمكن تغيير تردد ستروبسكوب ، بدءًا من الوميض السريع حقًا إلى الترددات العرضية. يمكن تخصيص تطبيق البدء السريع هذا وفقًا لاحتياجاتك. يمكنك تغيير جميع ميزات هذا التطبيق وفقًا لاحتياجاتك دون أي مشكلة. 10 | 11 | إذا تم تشغيل ضوء الفلاش المجاني هذا عبر التطبيق (وليس الأداة) ، فسيؤدي ذلك إلى منع الجهاز من النوم. يمكن تشغيل المصباح القوي اختياريًا عند تشغيل التطبيق ، ولكنه ليس إلزاميًا. 12 | 13 | يأتي مع عنصر واجهة مستخدم 1x1 بألوان قابلة للتخصيص وشفافية. يمكن أن تساعدك هذه الأداة في البدء السريع لتطبيق ضوء LED كلما احتجت إليه. 14 | 15 | يأتي بتصميم مادي وسمة داكنة بشكل افتراضي ، مما يوفر تجربة مستخدم رائعة لسهولة الاستخدام. يمنحك نقص الوصول إلى الإنترنت مزيدًا من الخصوصية والأمان والاستقرار مقارنة بالتطبيقات الأخرى. 16 | 17 | لا يحتوي على إعلانات أو أذونات غير ضرورية. إنه مفتوح المصدر بالكامل ، ويوفر ألوانًا قابلة للتخصيص. 18 | 19 | تحقق من المجموعة الكاملة من الأدوات البسيطة هنا: 20 | https://www.simplemobiletools.com 21 | 22 | فيسبوك: 23 | https://www.facebook.com/simplemobiletools 24 | 25 | رديت: 26 | https://www.reddit.com/r/SimpleMobileTools 27 | 28 | برقية: 29 | https://t.me/SimpleMobileTools 30 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/short_description.txt: -------------------------------------------------------------------------------- 1 | تحكم في ضوء LED مع التحكم في السطوع ولون قابل للتخصيص ، stroboscope 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/title.txt: -------------------------------------------------------------------------------- 1 | مصباح يدوي بسيط 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/bg/short_description.txt: -------------------------------------------------------------------------------- 1 | Фенерче с контрол на цвета и яркостта, светодиодно фенерче 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/bg/title.txt: -------------------------------------------------------------------------------- 1 | Обикновено Фенерче 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ca/short_description.txt: -------------------------------------------------------------------------------- 1 | Controlador de llum led amb control de lluminositat i color personalitzable 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ca/title.txt: -------------------------------------------------------------------------------- 1 | Simple Flashlight 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/full_description.txt: -------------------------------------------------------------------------------- 1 | Jednoduchá svítilna s jasným displejem a nastavitelným stroboskopem. Při spuštění přes ikonu aplikace (ne widget), zabrání uspání zařízení. 2 | 3 | Poskytuje i 1x1 widget s nastavitelnou barvou. 4 | 5 | Neobsahuje žádné reklamy či nepotřebná oprávnění. Má otevřený zdrojový kód a možnost změny barev. 6 | 7 | Check out the full suite of Simple Tools here: 8 | https://www.simplemobiletools.com 9 | 10 | Facebook: 11 | https://www.facebook.com/simplemobiletools 12 | 13 | Reddit: 14 | https://www.reddit.com/r/SimpleMobileTools 15 | 16 | Telegram: 17 | https://t.me/SimpleMobileTools 18 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/short_description.txt: -------------------------------------------------------------------------------- 1 | Ovládání svítilny s ovládání jasu a přizpůsobitelnou barvou, stroboskop 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/title.txt: -------------------------------------------------------------------------------- 1 | Jednoduchá svítilna 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/da-DK/full_description.txt: -------------------------------------------------------------------------------- 1 | En simpel lommelygte med en ekstra lys skærm, strøgeskop, der kan tilpasses, og en foruddefineret SOS-tilstand. 2 | 3 | Alle disse funktioner kan være enormt nyttige under visse omstændigheder. Bright-skærmen kan få sin farve ændret, hvilket åbner en ny verden af mulige anvendelser. 4 | 5 | Det kan være praktisk, hvis du vil se din bredere nærhed uden at blænde dig selv. Stroboskopet kan få sin frekvens ændret, lige fra virkelig hurtigt blinkende til lejlighedsvis dem. 6 | 7 | Hvis denne gratis lommelygte er tændt via appen (ikke widget), forhindrer den enheden i at falde i søvn. Den stærke fakkel kan eventuelt tænde ved lanceringen af appen, men det er ikke obligatorisk. 8 | 9 | Leveres med en 1x1 widget med tilpasselig farve og gennemsigtighed. Det leveres med materialedesign og mørkt tema som standard giver stor brugeroplevelse for nem brug. 10 | 11 | Manglen på internetadgang giver dig mere privatliv, sikkerhed og stabilitet end andre apps. Indeholder ingen annoncer eller unødvendige tilladelser. Det er fuldt opensource, giver tilpassede farver. 12 | 13 | Se hele pakken med enkle værktøjer her: 14 | https://www.simplemobiletools.com 15 | 16 | Facebook: 17 | https://www.facebook.com/simplemobiletools 18 | 19 | Reddit: 20 | https://www.reddit.com/r/SimpleMobileTools 21 | 22 | Telegram: 23 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/da-DK/short_description.txt: -------------------------------------------------------------------------------- 1 | En moderne lommelygte med SOS, stroboskop og et lyst display uden reklamer. -------------------------------------------------------------------------------- /fastlane/metadata/android/da-DK/title.txt: -------------------------------------------------------------------------------- 1 | Simpel lommelygte -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/1_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/de-DE/images/tenInchScreenshots/2_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- 1 | Helle Taschenlampe, helles Display, Stroboskop-SOS-Modus, Keine Werbung 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Schlichte Taschenlampe 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/full_description.txt: -------------------------------------------------------------------------------- 1 | Ένας καθαρός φακός με μια επιπλέον φωτεινή οθόνη, προσαρμόσιμο στροβοσκόπιο και μια προκαθορισμένη λειτουργία SOS. 2 | 3 | Όλες αυτές οι λειτουργίες μπορεί να είναι εξαιρετικά χρήσιμες υπό ορισμένες συνθήκες. 4 | 5 | Η φωτεινή οθόνη μπορεί να αλλάζει το χρώμα της, ανοίγοντας έναν νέο κόσμο των πιθανών χρήσεων. Μπορεί να φανεί πρακτικό σε περίπτωση που θέλετε να δείτε πολύ κοντά σας χωρίς να τυφλωθείτε. 6 | 7 | Το στροβοσκόπιο μπορεί να αλλάξει τη συχνότητά του, που κυμαίνεται από πολύ γρήγορα μέχρι περιστασιακά. 8 | 9 | Εάν αυτός ο δωρεάν φακός ενεργοποιηθεί μέσω της εφαρμογής (όχι widget), και αποτρέψει την αδρανοποίηση της συσκευής. Ο ισχυρός φακός μπορεί προαιρετικά να ενεργοποιείται κατά την εκκίνηση της εφαρμογής, αλλά δεν είναι υποχρεωτικό. 10 | 11 | Παρέχεται με 1x1 γραφικό στοιχείο με προσαρμόσιμο χρώμα και διαφάνεια. 12 | 13 | Διατίθεται με σχεδίαση υλικού και σκούρο θέμα από προεπιλογή, παρέχει εξαιρετική εμπειρία χρήστη για εύκολη χρήση. Η έλλειψη πρόσβασης στο διαδίκτυο σας παρέχει περισσότερο απόρρητο, ασφάλεια και σταθερότητα από ό,τι άλλες εφαρμογές. 14 | 15 | Δεν περιέχει διαφημίσεις ή άσκοπη αδειοδότηση. Είναι πλήρως ανοιχτού κώδικα και παρέχει προσαρμόσιμες αποχρώσεις. 16 | 17 | Δείτε την πλήρη σειρά των Απλών Εργαλείων εδώ: 18 | https://www.simplemobiletools.com 19 | 20 | Facebook: 21 | https://www.facebook.com/simplemobiletools 22 | 23 | Reddit: 24 | https://www.reddit.com/r/SimpleMobileTools 25 | 26 | Telegram: 27 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/short_description.txt: -------------------------------------------------------------------------------- 1 | Απλός σύγχρονος φακός με SOS, στροβοσκόπιο & φωτεινή οθόνη, χωρίς διαφημίσεις -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/title.txt: -------------------------------------------------------------------------------- 1 | Απλός φακός -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/full_description.txt: -------------------------------------------------------------------------------- 1 | A clean flashlight with an extra bright display, customizable stroboscope with strobe light function and a predefined SOS mode. 2 | 3 | This quick start led flashlight is light on your device and works as a real led light when in dark. Using this slash light, you can easily work in different circumstances and this quick start led flashlight can help you when you are in a dire situation. 4 | 5 | All these functions can be hugely helpful under certain circumstances. Whether you are wandering in dark and need a led light to see the way, or you have to find something in a a low light place, this quick start flash light can help you in all the possible circumstances. The strobe light in this app can help you when you are in need of help. The quick start flash led light can help calling for rescue if you need it. 6 | 7 | The Bright display can have its color changed, opening a new world of possible uses. It can come handy in case you want to see your wider proximity without blinding yourself. With different colors, you can use this led light when you are with friends and want to have a party. Or you can use this feature to call someone for help according to the person. 8 | 9 | The stroboscope can have its frequency changed, ranging from really fast blinking to occasional ones. This quick start app can be customized according to your needs. You can change all the features of of this app according to your needs without any problem. 10 | 11 | If this free flash light is turned on via the app (not widget), it will prevent the device from falling asleep. The strong torch can optionally turn on at launching the app, but it isn't mandatory. 12 | 13 | Comes with a 1x1 widget with customizable color and transparency. This widget can help you in quick start your led light app whenever you need it. 14 | 15 | It comes with material design and dark theme by default, provides great user experience for easy usage. The lack of internet access gives you more privacy, security and stability than other apps. 16 | 17 | Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors. 18 | 19 | Check out the full suite of Simple Tools here: 20 | https://www.simplemobiletools.com 21 | 22 | Facebook: 23 | https://www.facebook.com/simplemobiletools 24 | 25 | Reddit: 26 | https://www.reddit.com/r/SimpleMobileTools 27 | 28 | Telegram: 29 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/featureGraphic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/en-GB/images/featureGraphic.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/en-GB/images/tvBanner.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/short_description.txt: -------------------------------------------------------------------------------- 1 | Torch flashlight with torch color and brightness control, led flashlight -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/title.txt: -------------------------------------------------------------------------------- 1 | Simple Flashlight -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/full_description.txt: -------------------------------------------------------------------------------- 1 | A clean flashlight with an extra bright display, customizable stroboscope with strobe light function and a predefined SOS mode. 2 | 3 | This quick start led flashlight is light on your device and works as a real led light when in dark. Using this slash light, you can easily work in different circumstances and this quick start led flashlight can help you when you are in a dire situation. 4 | 5 | All these functions can be hugely helpful under certain circumstances. Whether you are wandering in dark and need a led light to see the way, or you have to find something in a a low light place, this quick start flash light can help you in all the possible circumstances. The strobe light in this app can help you when you are in need of help. The quick start flash led light can help calling for rescue if you need it. 6 | 7 | The Bright display can have its color changed, opening a new world of possible uses. It can come handy in case you want to see your wider proximity without blinding yourself. With different colors, you can use this led light when you are with friends and want to have a party. Or you can use this feature to call someone for help according to the person. 8 | 9 | The stroboscope can have its frequency changed, ranging from really fast blinking to occasional ones. This quick start app can be customized according to your needs. You can change all the features of of this app according to your needs without any problem. 10 | 11 | If this free flash light is turned on via the app (not widget), it will prevent the device from falling asleep. The strong torch can optionally turn on at launching the app, but it isn't mandatory. 12 | 13 | Comes with a 1x1 widget with customizable color and transparency. This widget can help you in quick start your led light app whenever you need it. 14 | 15 | It comes with material design and dark theme by default, provides great user experience for easy usage. The lack of internet access gives you more privacy, security and stability than other apps. 16 | 17 | Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors. 18 | 19 | Check out the full suite of Simple Tools here: 20 | https://www.simplemobiletools.com 21 | 22 | Facebook: 23 | https://www.facebook.com/simplemobiletools 24 | 25 | Reddit: 26 | https://www.reddit.com/r/SimpleMobileTools 27 | 28 | Telegram: 29 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/short_description.txt: -------------------------------------------------------------------------------- 1 | Bright flashlight with a bright display, stroboscope, torch and sos mode -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/title.txt: -------------------------------------------------------------------------------- 1 | Simple Flashlight -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/59.txt: -------------------------------------------------------------------------------- 1 | * Adding a Get Simple Phone button into the About section 2 | * Added some translation and UX improvements 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/60.txt: -------------------------------------------------------------------------------- 1 | * Allow changing the flashlight brightness on Android 13+ 2 | * Added a Bright display settings tile 3 | * Fixed SOS timing 4 | * Added some translation and UX improvements 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/61.txt: -------------------------------------------------------------------------------- 1 | * Allow changing the flashlight brightness on Android 13+ 2 | * Added a Bright display settings tile 3 | * Fixed SOS timing 4 | * Added some translation and UX improvements 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/62.txt: -------------------------------------------------------------------------------- 1 | * Use Material You design by default on Android 12+ 2 | * Increased minimal required Android OS version to 6 3 | * Added some UI, stability and translation improvements 4 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/63.txt: -------------------------------------------------------------------------------- 1 | * Added some UI, stability and translation improvements 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/64.txt: -------------------------------------------------------------------------------- 1 | * Added some UI and translation improvements 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/65.txt: -------------------------------------------------------------------------------- 1 | * Added a Sleep timer 2 | * Added some UI and translation improvements 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/66.txt: -------------------------------------------------------------------------------- 1 | * Added some UI and translation improvements 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- 1 | A clean flashlight with an extra bright display, customizable stroboscope with strobe light function and a predefined SOS mode. 2 | 3 | This quick start led flashlight is light on your device and works as a real led light when in dark. Using this slash light, you can easily work in different circumstances and this quick start led flashlight can help you when you are in a dire situation. 4 | 5 | All these functions can be hugely helpful under certain circumstances. Whether you are wandering in dark and need a led light to see the way, or you have to find something in a a low light place, this quick start flash light can help you in all the possible circumstances. The strobe light in this app can help you when you are in need of help. The quick start flash led light can help calling for rescue if you need it. 6 | 7 | The Bright display can have its color changed, opening a new world of possible uses. It can come handy in case you want to see your wider proximity without blinding yourself. With different colors, you can use this led light when you are with friends and want to have a party. Or you can use this feature to call someone for help according to the person. 8 | 9 | The stroboscope can have its frequency changed, ranging from really fast blinking to occasional ones. This quick start app can be customized according to your needs. You can change all the features of of this app according to your needs without any problem. 10 | 11 | If this free flash light is turned on via the app (not widget), it will prevent the device from falling asleep. The strong torch can optionally turn on at launching the app, but it isn't mandatory. 12 | 13 | Comes with a 1x1 widget with customizable color and transparency. This widget can help you in quick start your led light app whenever you need it. 14 | 15 | It comes with material design and dark theme by default, provides great user experience for easy usage. The lack of internet access gives you more privacy, security and stability than other apps. 16 | 17 | Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors. 18 | 19 | Check out the full suite of Simple Tools here: 20 | https://www.simplemobiletools.com 21 | 22 | Facebook: 23 | https://www.facebook.com/simplemobiletools 24 | 25 | Reddit: 26 | https://www.reddit.com/r/SimpleMobileTools 27 | 28 | Telegram: 29 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/en-US/images/featureGraphic.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/en-US/images/tvBanner.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Led light controller with brightness control and customizable color, stroboscope -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Simple Flashlight -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/phoneScreenshots/1_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/es-ES/images/tenInchScreenshots/2_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | Linterna brillante con pantalla brillante, estroboscopio, linterna y modo sos 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/title.txt: -------------------------------------------------------------------------------- 1 | Linterna Simple 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/phoneScreenshots/1_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/es-US/images/phoneScreenshots/1_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/phoneScreenshots/2_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/es-US/images/phoneScreenshots/2_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/phoneScreenshots/3_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/es-US/images/phoneScreenshots/3_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/phoneScreenshots/4_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/es-US/images/phoneScreenshots/4_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/sevenInchScreenshots/1_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/es-US/images/sevenInchScreenshots/1_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/sevenInchScreenshots/2_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/es-US/images/sevenInchScreenshots/2_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/tenInchScreenshots/1_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/es-US/images/tenInchScreenshots/1_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/tenInchScreenshots/2_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/es-US/images/tenInchScreenshots/2_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Linterna brillante con pantalla brillante, estroboscopio, linterna y modo sos -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/title.txt: -------------------------------------------------------------------------------- 1 | Linterna Simple: Luz LED -------------------------------------------------------------------------------- /fastlane/metadata/android/et/full_description.txt: -------------------------------------------------------------------------------- 1 | Puhas taskulamp, millel on eriti ere ekraan, kohandatav stroboskoop koos stroboskoobi funktsiooniga ja eelseadistatud SOS-režiim. 2 | 3 | See kiire käivitusega led-taskulamp on teie seadmel kerge ja töötab pimedas kui tõeline led-valgus. Kasutades seda slash light, saate hõlpsasti töötada erinevates olukordades ja see kiirestart led-taskulamp võib aidata teid, kui olete raskes olukorras. 4 | 5 | Kõik need funktsioonid võivad teatud tingimustel olla tohutult kasulikud. Ükskõik, kas ekslete pimedas ja vajate tee nägemiseks led-valgustit või peate leidma midagi hämaras kohas, võib see kiirkäivituse välklamp teid aidata kõigis võimalikes olukordades. Selle rakenduse strobe tuli aitab teid, kui vajate abi. Kiirkäivituse välklambi led-valgus võib aidata päästetööde kutsumisel, kui seda vajate. 6 | 7 | Heledat ekraani saab muuta värvi, mis avab uue maailma võimalike kasutusvõimaluste kohta. See võib tulla kasuks juhul, kui soovite näha oma laiemat lähedust ilma end pimestamata. Erinevate värvidega saate seda led-valgustit kasutada, kui olete koos sõpradega ja soovite pidada pidu. Või saate seda funktsiooni kasutada selleks, et kutsuda kedagi appi vastavalt isikule. 8 | 9 | Stroboskoobi sagedust saab muuta, alates väga kiirest vilkumisest kuni aeg-ajalt vilkumiseni. Seda kiirrakendust saab kohandada vastavalt teie vajadustele. Selle rakenduse kõiki funktsioone saate muuta vastavalt oma vajadustele ilma probleemideta. 10 | 11 | Kui see tasuta välklambi on rakenduse (mitte vidina) kaudu sisse lülitatud, takistab see seadme uinumist. Tugev taskulamp võib valikuliselt lülituda sisse rakenduse käivitamisel, kuid see ei ole kohustuslik. 12 | 13 | Komplektis on 1x1 vidin kohandatava värvi ja läbipaistvusega. See vidin võib aidata teil kiiresti käivitada oma LED-valgusrakendust, kui seda vajate. 14 | 15 | See on vaikimisi varustatud materiaalse disaini ja tumeda teemaga, pakub suurepärast kasutajakogemust lihtsaks kasutamiseks. Interneti-ühenduse puudumine annab teile rohkem privaatsust, turvalisust ja stabiilsust kui teised rakendused. 16 | 17 | Ei sisalda reklaame ega tarbetuid lubasid. See on täielikult avatud lähtekoodiga, pakub kohandatavaid värve. 18 | 19 | Vaadake lihtsate tööriistade täielikku komplekti siin: 20 | https://www.simplemobiletools.com 21 | 22 | Facebook: 23 | https://www.facebook.com/simplemobiletools 24 | 25 | Reddit: 26 | https://www.reddit.com/r/SimpleMobileTools 27 | 28 | Telegram: 29 | https://t.me/SimpleMobileTools 30 | -------------------------------------------------------------------------------- /fastlane/metadata/android/et/short_description.txt: -------------------------------------------------------------------------------- 1 | LED-lambi haldus, sh ereduse sättimine, värvide muutmine ja stroboskoop 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/et/title.txt: -------------------------------------------------------------------------------- 1 | Lihtne taskulamp 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/short_description.txt: -------------------------------------------------------------------------------- 1 | Soihtu taskulampun värin ja kirkkauden säätimellä, led-taskulamppu 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/title.txt: -------------------------------------------------------------------------------- 1 | Yksinkertainen taskulamppu 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/phoneScreenshots/1_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/2_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- 1 | Belle lampe de poche gratuite. Avec torche, SOS, stroboscope, écran lumineux 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Lampe de poche simple 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/full_description.txt: -------------------------------------------------------------------------------- 1 | अत्यधिक चमकदार डिस्प्ले, कस्टमाइज होने वाली स्ट्रोबोस्कोप और पूर्वनिर्धारित SOS मोड के साथ सहज सरल टॉर्च। 2 | 3 | ये सभी फंक्शन कई परिस्थितियों में बेहद उपयोगी हो सकते हैं। 4 | 5 | आप ब्राइट डिस्प्ले का रंग बदल सकते हैं, आप इस फंक्शन का उपयोग और भी बहुत सी परिस्थितियों में कर सकते हैं। 6 | 7 | यह उन अवस्थाओं में काम आ सकता है जब आप अपनी इसे निकट रख कर खुद को अंधा किए बिना बड़े इलाके में देखना चाहते हैं। 8 | 9 | स्ट्रोबोस्कोप की फ्रीक्वेंसी बदल सकते हैं, बार-बार ब्लिंक करने से लेकर थोड़ी-थोड़ी देर में ब्लिंक करने तक। 10 | 11 | इस मुफ्त टॉर्च को एप (विजेट नहीं) के माध्यम से चालू किया जाता है, तो यह डिवाइस को स्लीप मोड में जाने से रोक देता है। शक्तिशाली टोर्च वैकल्पिक रूप से एप लॉन्च करने पर अपने आप चालू हो जाती है, लेकिन यह अनिवार्य नहीं है। 12 | 13 | यह कस्टमाइज होने वाले रंग, पारदर्शिता और 1x1 विजेट के साथ आता है। 14 | 15 | यहाँ पर सिम्पल टूल्स के पूरे सेट देखें: 16 | https://www.simplemobiletools.com 17 | 18 | फेसबुक: 19 | https://www.facebook.com/simplemobiletools 20 | 21 | रेडिट: 22 | https://www.reddit.com/r/SimpleMobileTools 23 | 24 | Telegram: 25 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/short_description.txt: -------------------------------------------------------------------------------- 1 | एक उज्ज्वल प्रदर्शन, स्ट्रोबोस्कोप, टॉर्च और एसओएस मोड के साथ उज्ज्वल टॉर्च, कोई -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/title.txt: -------------------------------------------------------------------------------- 1 | सरल टॉर्च -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/full_description.txt: -------------------------------------------------------------------------------- 1 | Čista svjetiljka s svijetlim zaslonom, prilagodljivim stroboskopom s funkcijom stroboskopskog svjetla i unaprijed definiranim SOS načinom rada. 2 | 3 | Ova LED svjetiljka za brzo pokretanje svijetli na vašem uređaju i radi kao pravo LED svjetlo kada je u mraku. Koristeći ovo svjetlo s kosom linijom, možete jednostavno raditi u različitim okolnostima, a ova LED svjetiljka za brzo pokretanje može vam pomoći kada se nađete u teškoj situaciji. 4 | 5 | Sve ove funkcije mogu pomoći pod okolnostima. Bilo da lutate u mraku i trebate LED svjetlo da vidite put, ili morate pronaći nešto na slabo osvijetljenom mjestu, ova bljeskalica za brzo pokretanje može vam pomoći u svim mogućim okolnostima. Stroboskop u ovoj aplikaciji može vam pomoći kada vam je potrebna pomoć. LED svjetlo s bljeskalicom za početak može pomoći pri pozivu spašavanja ako vam zatreba. 6 | 7 | Svijetli zaslon može promijeniti svoju boju, otvarajući novi svijet mogućih upotreba. Može vam dobro doći ako želite vidjeti širu blizinu bez da se zaslijepite. Uz različite boje, možete koristiti ovo led svjetlo kada ste s prijateljima i želite imati zabavu. Ili možete koristiti ovu značajku da pozovete nekoga u pomoć prema osobi. 8 | 9 | Stroboskopu se može mijenjati frekvencija, u rasponu od jako brzog treptanja do povremenog. Ova aplikacija za brzi početak prilagodi se prema vašim potrebama. Možete promijeniti sve značajke ove aplikacije prema potrebama bez problema. 10 | 11 | Ako se ova besplatna bljeskalica uključi putem aplikacije (ne dodatka), spriječit će uređaj da zaspi. Jaka svjetiljka se po želji ukljući pri pokretanju aplikacije, ali nije obavezna. 12 | 13 | Dolazi s widgetom 1x1 s prilagodljivom bojom i prozirnošću. Ovaj vam widget može pomoći u pokretanju aplikacije za LED svjetlo kad god vam zatreba. 14 | 15 | Dolazi s materijalnim dizajnom i tamnom temom prema zadanim postavkama, pruža izvrsno korisničko iskustvo za jednostavno korištenje. Nedostatak pristupa internetu daje vam više privatnosti, sigurnosti i stabilnosti od drugih aplikacija. 16 | 17 | Ne sadrži oglase ili dopuštenja. Otvorenog je koda, pruža boje. 18 | 19 | Ovdje pogledajte kompletan paket jednostavnih alata: 20 | https://www.simplemobiletools.com 21 | 22 | Facebook: 23 | https://www.facebook.com/simplemobiletools 24 | 25 | Reddit: 26 | https://www.reddit.com/r/SimpleMobileTools 27 | 28 | Telegram: 29 | https://t.me/SimpleMobileTools 30 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/short_description.txt: -------------------------------------------------------------------------------- 1 | Kontroler LED svjetla s kontrolom svjetline i boje, stroboskop 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/title.txt: -------------------------------------------------------------------------------- 1 | Jednostavna svjetiljka 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/short_description.txt: -------------------------------------------------------------------------------- 1 | Fáklya zseblámpa, szín és fényerő szabályozással, led zseblámpa 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/title.txt: -------------------------------------------------------------------------------- 1 | Egyszerű zseblámpa 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/1_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/id/images/phoneScreenshots/1_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/2_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/id/images/phoneScreenshots/2_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/3_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/id/images/phoneScreenshots/3_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/4_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/id/images/phoneScreenshots/4_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/sevenInchScreenshots/1_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/id/images/sevenInchScreenshots/1_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/sevenInchScreenshots/2_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/id/images/sevenInchScreenshots/2_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/tenInchScreenshots/1_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/id/images/tenInchScreenshots/1_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/tenInchScreenshots/2_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/id/images/tenInchScreenshots/2_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/short_description.txt: -------------------------------------------------------------------------------- 1 | Senter indah gratis, tanpa iklan. Memiliki obor, stroboskop, layar cerah 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/title.txt: -------------------------------------------------------------------------------- 1 | Senter Simpel 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/phoneScreenshots/1_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/it-IT/images/tenInchScreenshots/2_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/short_description.txt: -------------------------------------------------------------------------------- 1 | Torcia elettrica con controllo del colore e della luminosità, torcia a led -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/title.txt: -------------------------------------------------------------------------------- 1 | Torcia Semplice -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/full_description.txt: -------------------------------------------------------------------------------- 1 | פנס נקי עם תצוגה בהירה במיוחד, סטרובוסקופ הניתן להתאמה אישית ומצב SOS מוגדר מראש. כל הפונקציות הללו יכולות להועיל מאוד בנסיבות מסוימות. ניתן לשנות את הצבע של התצוגה הבהירה, ולפתוח עולם חדש של שימושים אפשריים. זה יכול להיות שימושי במקרה שאתה רוצה לראות את הקרבה הרחבה יותר שלך מבלי לסנוור את עצמך. 2 | 3 | ניתן לשנות את התדר של הסטרובוסקופ, החל מהבהוב מהיר ממש ועד למצמוץ מדי פעם. אם הפנס החינמי הזה יופעל דרך האפליקציה (לא ווידג\'ט), זה ימנע מהמכשיר להירדם. 4 | 5 | הלפיד החזק יכול להידלק באופן אופציונלי בעת הפעלת האפליקציה, אבל זה לא חובה. מגיע עם ווידג\'ט 1x1 עם צבע ושקיפות הניתנים להתאמה אישית. 6 | 7 | זה מגיע עם עיצוב חומר וערכת נושא כהה כברירת מחדל, מספק חווית משתמש נהדרת לשימוש קל. היעדר גישה לאינטרנט נותן לך יותר פרטיות, אבטחה ויציבות מאשר אפליקציות אחרות. 8 | 9 | אינו מכיל פרסומות או הרשאות מיותרות. זה קוד פתוח לחלוטין, מספק צבעים הניתנים להתאמה אישית. 10 | 11 | בדוק את החבילה המלאה של כלים פשוטים כאן: 12 | https://www.simplemobiletools.com 13 | 14 | פייסבוק: 15 | https://www.facebook.com/simplemobiletools 16 | 17 | Reddit : 18 | https://www.reddit.com/r/SimpleMobileTools 19 | 20 | Telegram: 21 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/short_description.txt: -------------------------------------------------------------------------------- 1 | Una simple linterna sin anuncios. -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/title.txt: -------------------------------------------------------------------------------- 1 | פנס פשוט -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/full_description.txt: -------------------------------------------------------------------------------- 1 | 非常に明るいディスプレイを備えたクリーンなフラッシュライト、ストロボライト機能を備えたカスタマイズ可能なストロボスコープ、および事前定義されたSOSモード。 2 | 3 | このクイックスタートLED懐中電灯は、デバイス上で点灯し、暗闇の中で実際のLEDライトとして機能します。 4 | 5 | このスラッシュライトを使用すると、さまざまな状況で簡単に作業できます。このクイックスタートLED懐中電灯は、悲惨な状況にあるときに役立ちます。 6 | 7 | これらの機能はすべて、特定の状況下で非常に役立ちます。あなたが暗闇の中をさまよっており、道を見るためにLEDライトが必要な場合でも、暗い場所で何かを見つける必要がある場合でも、このクイックスタートフラッシュライトは、考えられるすべての状況で役立ちます。このアプリのストロボライトは、あなたが助けを必要としているときにあなたを助けることができます。クイックスタートフラッシュLEDライトは、必要に応じて救助を求めるのに役立ちます。 8 | 9 | ブライトディスプレイは色を変えることができ、可能な用途の新しい世界を開きます。目がくらむことなく、より広い距離を見たい場合に便利です。色違いで、友達とパーティーをしたいときにこのLEDライトを使うことができます。または、この機能を使用して、相手に応じて誰かに助けを求めることができます。 10 | 11 | ストロボスコープは、非常に速い点滅から時折の点滅まで、周波数を変更できます。このクイックスタートアプリは、ニーズに応じてカスタマイズできます。このアプリのすべての機能を必要に応じて問題なく変更できます。 12 | 13 | この無料のフラッシュライトが(ウィジェットではなく)アプリを介してオンになっている場合、デバイスがスリープ状態になるのを防ぎます。強力なトーチは、アプリの起動時にオプションでオンにすることができますが、必須ではありません。 14 | 15 | カスタマイズ可能な色と透明度を備えた1x1ウィジェットが付属しています。このウィジェットは、必要なときにいつでもLEDライトアプリをすばやく起動するのに役立ちます。 16 | 17 | デフォルトでマテリアルデザインとダークテーマが付属しており、使いやすい優れたユーザーエクスペリエンスを提供します。インターネットアクセスがないため、他のアプリよりもプライバシー、セキュリティ、安定性が向上します。 18 | 19 | 広告や不要な権限は含まれていません。完全にオープンソースで、カスタマイズ可能な色を提供します。 20 | 21 | ここでシンプルツールの完全なスイートを確認してください: 22 | https://www.simplemobiletools.com 23 | 24 | Facebook: 25 | https://www.facebook.com/simplemobiletools 26 | 27 | Reddit: 28 | https://www.reddit.com/r/SimpleMobileTools 29 | 30 | Telegram: 31 | https://t.me/SimpleMobileTools 32 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/phoneScreenshots/1_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/ja-JP/images/tenInchScreenshots/2_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/short_description.txt: -------------------------------------------------------------------------------- 1 | 無料の美しい懐中電灯、広告なし、 トーチ、SOS、ストロボ、明るいディスプレイ 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/title.txt: -------------------------------------------------------------------------------- 1 | シンプル懐中電灯 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/full_description.txt: -------------------------------------------------------------------------------- 1 | 선명한 디스플레이가 있는 깨끗한 손전등, 스트로브 조명 기능이 있는 맞춤형 스트로보스코프 및 사전 정의된 SOS 모드 2 | 3 | 이 빠른 시작 LED 플래쉬는 기기에 밝게 빛나 어두운 곳에서도 LED 조명으로 작동합니다. 이 백라이트를 사용하면 다른 상황에서 쉽게 작업할 수 있고 이 빠른 시작 LED 플래시는 당신이 비참한 상황에 있을 때 당신을 도울 수 있습니다. 4 | 5 | 이러한 모든 기능은 특정 상황에서 매우 유용할 수 있습니다. 어두운 곳에서 방황하는 경우 길을 보기 위해 LED 조명이 필요하거나 어두운 곳에서 무언가를 찾아야 하는 경우 이 빠른 시작 플래시 조명이 모든 가능한 상황에서 도움이 됩니다. 이 앱의 스트로브 표시등은 도움이 필요할 때 도움이 될 수 있습니다. 빠른 시작 플래시 LED 조명은 필요한 경우 구조를 요청하는 데 도움이 될 수 있습니다. 6 | 7 | 밝은 디스플레이는 색상을 변경할 수 있어 새로운 사용 환경을 열 수 있습니다. 이 기능은 눈을 멀게 하지 않고 더 넓은 거리를 보고 싶은 경우에 유용합니다. 친구와 함께 파티를 하고 싶을 때 다양한 색상의 LED 조명을 사용할 수 있습니다. 또는 이 기능을 사용하여 다른 사람에게 도움을 요청할 수 있습니다. 8 | 9 | Stroboscope의 주파수는 매우 빠르게 깜박이는 것에서부터 가끔 깜박이는 것까지 다양하게 변할 수 있습니다. 이 빠른 시작 앱은 필요에 따라 사용자 지정할 수 있습니다. 이 앱의 모든 기능을 필요에 따라 아무 문제 없이 변경할 수 있습니다. 10 | 11 | 이 무료 플래시 표시등이 위젯이 아닌 앱을 통해 켜지면 장치가 절전 상태로 전환되지 않습니다. 강력한 토치는 앱을 시작할 때 선택적으로 켤 수 있지만 필수 사항은 아닙니다. 12 | 13 | 맞춤형 색상과 투명도가 있는 1x1 위젯이 제공됩니다. 이 위젯은 필요할 때마다 LED 조명 앱을 빠르게 시작할 수 있도록 도와줍니다. 14 | 15 | 기본적으로 재질 디자인과 어두운 테마가 적용되어 사용이 간편한 뛰어난 사용자 환경을 제공합니다. 인터넷 액세스가 부족하면 다른 앱에 비해 개인 정보 보호, 보안 및 안정성이 향상됩니다. 16 | 17 | 광고 또는 불필요한 권한이 없습니다. 완전히 OpenSource이며 사용자 지정 가능한 색상을 제공합니다. 18 | 19 | 여기 에서 간단한 도구의 전체 제품군을 확인하십시오. 20 | https://www.simplemobiletools.com 21 | 22 | 페이스북: 23 | https://www.facebook.com/simplemobiletools 24 | 25 | Reddit: 26 | https://www.reddit.com/r/SimpleMobileTools 27 | 28 | 전신: 29 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/phoneScreenshots/1_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/ko-KR/images/phoneScreenshots/1_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/phoneScreenshots/2_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/ko-KR/images/phoneScreenshots/2_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/phoneScreenshots/3_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/ko-KR/images/phoneScreenshots/3_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/phoneScreenshots/4_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/ko-KR/images/phoneScreenshots/4_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/sevenInchScreenshots/1_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/ko-KR/images/sevenInchScreenshots/1_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/sevenInchScreenshots/2_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/ko-KR/images/sevenInchScreenshots/2_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/tenInchScreenshots/1_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/ko-KR/images/tenInchScreenshots/1_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/tenInchScreenshots/2_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/ko-KR/images/tenInchScreenshots/2_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/short_description.txt: -------------------------------------------------------------------------------- 1 | 강하고 밝은 손전등을 광고 없이 사용하세요. 토치 기능, 도움 요청 기능이 탑재되어 있으며, 밝은 -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/title.txt: -------------------------------------------------------------------------------- 1 | 단순 플래시라이트 -------------------------------------------------------------------------------- /fastlane/metadata/android/lt/short_description.txt: -------------------------------------------------------------------------------- 1 | Paprastas žibintuvėlis be reklamų. -------------------------------------------------------------------------------- /fastlane/metadata/android/lt/title.txt: -------------------------------------------------------------------------------- 1 | Paprastas žibintuvėlis -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/full_description.txt: -------------------------------------------------------------------------------- 1 | Een eenvoudige zaklamp met een extra fel scherm, een aanpasbare stroboscoop en een SOS-signaalmodus. 2 | 3 | De kleur van het felle scherm kan worden aangepast, wat een hoop nieuwe mogelijkheden geeft. Zo kan het uitstekend worden gebruikt om de directe omgeving te verkennen zonder dat het licht verblindend fel is. 4 | 5 | Bij de stroboscoop is de frequentie binnen een groot bereik aan te passen. 6 | 7 | Indien deze gratis zaklamp wordt aangezet via de app (dus niet de widget), zal worden voorkomen dat het scherm uitgaat. De sterke flitserlamp kan optioneel direct bij het starten de app worden ingeschakeld. 8 | 9 | Bevat een 1x1 widget met aanpasbare kleuren en transparantie. 10 | 11 | De app is ontworpen volgens material design en heeft standaard een donker thema. De app heeft geen toegang tot het internet nodig en voorziet van meer privacy, veiligheid en stabiliteit dan andere apps. 12 | 13 | Bevat geen advertenties of onnodige machtigingen. Volledig open-source. Kleuren van de app kunnen worden aangepast. 14 | 15 | Probeer ook eens de andere apps van Simple Tools: 16 | https://www.simplemobiletools.com 17 | 18 | Facebook: 19 | https://www.facebook.com/simplemobiletools 20 | 21 | Reddit: 22 | https://www.reddit.com/r/SimpleMobileTools 23 | 24 | Telegram: 25 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/images/phoneScreenshots/1_nl-NL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/nl-NL/images/phoneScreenshots/1_nl-NL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/images/phoneScreenshots/2_nl-NL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/nl-NL/images/phoneScreenshots/2_nl-NL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/images/phoneScreenshots/3_nl-NL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/nl-NL/images/phoneScreenshots/3_nl-NL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/images/phoneScreenshots/4_nl-NL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/nl-NL/images/phoneScreenshots/4_nl-NL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/images/sevenInchScreenshots/1_nl-NL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/nl-NL/images/sevenInchScreenshots/1_nl-NL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/images/sevenInchScreenshots/2_nl-NL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/nl-NL/images/sevenInchScreenshots/2_nl-NL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/images/tenInchScreenshots/1_nl-NL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/nl-NL/images/tenInchScreenshots/1_nl-NL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/images/tenInchScreenshots/2_nl-NL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/nl-NL/images/tenInchScreenshots/2_nl-NL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/short_description.txt: -------------------------------------------------------------------------------- 1 | Heldere zaklamp met een helder scherm, stroboscoop, zaklamp en sos-modus -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/title.txt: -------------------------------------------------------------------------------- 1 | Eenvoudige Zaklamp -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/full_description.txt: -------------------------------------------------------------------------------- 1 | Czysta latarka z bardzo jasnym wyświetlaczem, konfigurowalnym stroboskopem i predefiniowanym trybem SOS. 2 | 3 | Ta szybko uruchamiająca się latarka ledowa jest lekka dla Twojego urządzenia i działa jak prawdziwe światło ledowe w ciemności. Za jej pomocą możesz z łatwością pracować w różnych warunkach, a dzięki szybkiemu włączaniu może Ci pomóc, gdy jesteś w trudnej sytuacji. 4 | 5 | Wszystkie te funkcje mogą być bardzo pomocne w pewnych okolicznościach, niezależnie od tego, czy wędrujesz w ciemności i potrzebujesz światła ledowego, aby zobaczyć drogę, czy też musisz znaleźć coś w słabo oświetlonym miejscu. Światło stroboskopowe w tej aplikacji może się przydać, gdy potrzebujesz pomocy, i może nadać się do wezwania ratunku, jeśli istnieje taka konieczność. 6 | 7 | Jasny wyświetlacz może mieć zmieniany kolor, otwierając świat nowych możliwości. Może się przydać, jeśli chcesz szerzej zobaczyć to, co jest blisko, bez oślepiania siebie. Dzięki różnym kolorom możesz użyć tego światła ledowego, gdy jesteś z przyjaciółmi i chcesz urządzić imprezę, bądź aby wezwać kogoś po pomoc tak, jak chcesz. 8 | 9 | Stroboskop może mieć zmienianą częstotliwość w zakresie od naprawdę szybkiego migania do sporadycznego. Aplikację można dostosować do własnych potrzeb – bez problemu zmienisz wszystkie jej funkcje. 10 | 11 | Jeśli ta darmowa latarka zostanie włączona przez aplikację (nie widżet), zapobiegnie to przejściu urządzenia w tryb uśpienia. Mocna latarka może opcjonalnie włączać się przy uruchomieniu aplikacji, ale nie jest to obowiązkowe. 12 | 13 | Zawiera widżet 1x1 z konfigurowalnym kolorem i przezroczystością. Może on pomóc Ci w szybkim uruchomieniu latarki, gdy tylko jej potrzebujesz. 14 | 15 | Domyślnie jest wyposażona w Material Design i ciemny motyw, zapewniając doskonałe doświadczenie użytkownika dla łatwego użytkowania. Brak dostępu do Internetu zapewnia większą prywatność, bezpieczeństwo i stabilność niż inne aplikacje. 16 | 17 | Nie zawiera reklam ani niepotrzebnych uprawnień. Jest w pełni otwartoźródłowa, zapewnia konfigurowalną kolorystykę. 18 | 19 | Sprawdź pełen zestaw od Simple Tools tutaj: 20 | https://www.simplemobiletools.com 21 | 22 | Facebook: 23 | https://www.facebook.com/simplemobiletools 24 | 25 | Reddit: 26 | https://www.reddit.com/r/SimpleMobileTools 27 | 28 | Telegram: 29 | https://t.me/SimpleMobileTools 30 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/phoneScreenshots/1_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/2_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/short_description.txt: -------------------------------------------------------------------------------- 1 | Sterownik światła LED z regulacją jasności i konfigurowalnym kolorem, stroboskop 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/title.txt: -------------------------------------------------------------------------------- 1 | Prosta latarka 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/pt-BR/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/1_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/2_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- 1 | Lanterna forte com brilhante, estroboscópio, tocha, modo SOS, sem anúncios -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/title.txt: -------------------------------------------------------------------------------- 1 | Lanterna Simples: Luz LED -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/short_description.txt: -------------------------------------------------------------------------------- 1 | Lanterna forte com brilhante, estroboscópio, tocha, modo SOS, sem anúncios -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/title.txt: -------------------------------------------------------------------------------- 1 | Lanterna Simples: Luz LED -------------------------------------------------------------------------------- /fastlane/metadata/android/ro/short_description.txt: -------------------------------------------------------------------------------- 1 | Control lumină LED, luminozitate, culoare personalizabilă, stroboscop 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ro/title.txt: -------------------------------------------------------------------------------- 1 | Simple Flashlight 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/phoneScreenshots/1_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/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-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/2_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/short_description.txt: -------------------------------------------------------------------------------- 1 | Фонарик с ярким дисплеем, стробоскопом, режимом фонарика и sos, без рекламы -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/title.txt: -------------------------------------------------------------------------------- 1 | Простой фонарик -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/full_description.txt: -------------------------------------------------------------------------------- 1 | Čistá baterka s funkciou extra jasného displeja, voliteľným stroboskopom a SOS módom. 2 | 3 | Všetky tieto funkcie môžu byť v istých prípadoch veľmi užitočné. 4 | 5 | Jasný displej má meniteľnú farbu, čo vytvára celý svet nových možností. Viete si pomocou neho vysvietiť okolie bez toho, že by ste sa oslepili. 6 | 7 | Strokoskop má voliteľnú frekvenciu od veľmi rýchleho blikania po pomalé. 8 | 9 | Ak baterku zapnete štandardným spustením (not cez widget), zabráni uspatiu zariadenia. Baterka sa môže po spustení apky automaticky zapnúť, ale nie je to povinné. 10 | 11 | K dispozícií máte aj 1x1 widget s voliteľnou farbou a priesvitnosťou. 12 | 13 | Táto apka je založená na Material dizajne a má prednastavenú tmavú tému, poskytuje výbornú používateľskú skúsenosť pre ľahké používanie. Chýbajúci prístup k internetu garantuje lepšie súkromie, bezpečnosť a stabilitu ako ostatné apky. 14 | 15 | Neobsahuje žiadne reklamy a nepotrebné oprávnenia. Je opensource, poskytuje možnosť zmeny farieb. 16 | 17 | Pozrite si celú sadu aplikácií na: 18 | https://www.simplemobiletools.com 19 | 20 | Facebook: 21 | https://www.facebook.com/simplemobiletools 22 | 23 | Reddit: 24 | https://www.reddit.com/r/SimpleMobileTools 25 | 26 | Telegram: 27 | https://t.me/SimpleMobileTools 28 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/short_description.txt: -------------------------------------------------------------------------------- 1 | Moderná jednoduchá baterka s SOS, stroboskopom a jasným displejom bez reklám 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/title.txt: -------------------------------------------------------------------------------- 1 | Jednoduchá baterka 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sl/full_description.txt: -------------------------------------------------------------------------------- 1 | Čista svetilka ssvetlim zaslonom, prilagodljivim stroboskopom s funkcijo svetlobe in vnaprej določenim načinom SOS. 2 | 3 | Ta hitro zagonska led svetilka je lahka na vaši napravi in deluje kot led luč, ko je tema. Z uporabo lomljive svetilke brez težav delate v različnih okoliščinah, hitra zagonska led svetilka vam pomaga, ko ste v težkem položaju. 4 | 5 | Vse funkcije so v določenih okoliščinah koristne. Ne glede na to, ali tavate v temi in potrebujete led lučko, da vidite pot, ali morate nekaj najti na slabo osvetljenem mestu, vam ta bliskavica za zagon pomaga v vseh okoliščinah. Stroboskopska luč v aplikaciji lahko pomaga, ko potrebujete pomoč. Hitri zagon bliskovne led luči vam pomaga pri klicu na pomoč, če jo potrebujete. 6 | 7 | Svetlemu zaslonu spremenite barvo, s čimer se odpre nov svet možnih uporab. Priročen je lahko v primeru, ko želite videti svojo širšo bližino, ne da bi se oslepili. Z barvami led lučko uporabite, ko ste s prijatelji in se želite zabavati. Lahko pa to funkcijo uporabite tudi za to, da glede na osebo koga pokličete na pomoč. 8 | 9 | Stroboskopu lahko spreminjate frekvenco, od zelo hitrega utripanja do občasnega. To aplikacijo za hiter zagon lahko prilagodite glede na svoje potrebe. Vse funkcije te aplikacije lahko brez težav spremenite glede na svoje potrebe. 10 | 11 | Če je brezplačna utripalka vklopljena prek aplikacije (in ne pripomočka), bo preprečila, da bi naprava zaspala. Močna svetilka se lahko po želji vklopi ob zagonu aplikacije, vendar to ni obvezno. 12 | 13 | Priložen je gradnik 1x1 z možnostjo prilagajanja barve in prosojnosti. Ta gradnik vam pomaga pri hitrem zagonu aplikacije LED lučka, kadar koli jo potrebujete. 14 | 15 | Priložena je z materialnim oblikovanjem in temno temo po privzetem, ki zagotavlja uporabniško izkušnjo za enostavno uporabo. Pomanjkanje dostopa do interneta zagotavlja več zasebnosti, varnosti in stabilnosti kot druge aplikacije. 16 | 17 | Ne vsebuje oglasov ali nepotrebnih dovoljenj. Je v celoti odprtokodna, zagotavlja prilagodljive barve. 18 | 19 | Celoten nabor preprostih orodij si oglejte tukaj: 20 | https://www.simplemobiletools.com. 21 | 22 | Facebook: 23 | https://www.facebook.com/simplemobiletools 24 | 25 | Reddit: 26 | https://www.reddit.com/r/SimpleMobileTools 27 | 28 | Telegram: 29 | https://t.me/SimpleMobileTools 30 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sl/short_description.txt: -------------------------------------------------------------------------------- 1 | Led svetlobni krmilnik z nadzorom in prilagodljivo barvo, stroboskop 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sl/title.txt: -------------------------------------------------------------------------------- 1 | Enostavna svetilka 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sr/full_description.txt: -------------------------------------------------------------------------------- 1 | Чиста батеријска лампа са екстра светлим екраном, прилагодљивим стробоскопом са функцијом стробоскопа и унапред дефинисаним СОС режимом. 2 | 3 | Ова ЛЕД лампа за брзи почетак је лагана на вашем уређају и ради као право ЛЕД светло када је у мраку. Користећи ову косо светло, можете лако да радите у различитим околностима, а ова ЛЕД лампа за брзи почетак може вам помоћи када сте у тешкој ситуацији. 4 | 5 | Све ове функције могу бити од велике помоћи под одређеним околностима. Било да лутате у мраку и треба вам ЛЕД светло да видите пут, или морате да пронађете нешто на месту са слабом осветљеношћу, ово светло за брзо покретање може вам помоћи у свим могућим околностима. Стробоскопа у овој апликацији може вам помоћи када вам је потребна помоћ. ЛЕД светло за брзи почетак може помоћи да позовете спас ако вам затреба. 6 | 7 | Светли екран може да промени боју, отварајући нови свет могућих употреба. Може бити од користи у случају да желите да видите своју ширу близину без да се заслепите. Са различитим бојама, можете користити ово ЛЕД светло када сте са пријатељима и желите да имате забаву. Или можете користити ову функцију да позовете некога у помоћ према особи. 8 | 9 | Фреквенција стробоскопа може бити промењена, у распону од веома брзог трептања до повремених. Ова апликација за брзи почетак се може прилагодити вашим потребама. Можете променити све функције ове апликације у складу са својим потребама без икаквих проблема. 10 | 11 | Ако се овај бесплатни блиц укључи преко апликације (не виџета), то ће спречити уређај да заспи. Јака лампа се опционо може укључити приликом покретања апликације, али није обавезна. 12 | 13 | Долази са 1к1 виџетом са прилагодљивом бојом и транспарентношћу. Овај виџет вам може помоћи да брзо покренете апликацију за ЛЕД светло кад год вам затреба. 14 | 15 | Подразумевано долази са материјалним дизајном и тамном темом, пружа одлично корисничко искуство за једноставну употребу. Недостатак приступа интернету даје вам више приватности, сигурности и стабилности од других апликација. 16 | 17 | Не садржи огласе или непотребне дозволе. Потпуно је отвореног кода, пружа боје. 18 | 19 | Погледајте комплетан пакет једноставних алата овде: 20 | https://www.simplemobiletools.com 21 | 22 | Фејсбук: 23 | https://www.facebook.com/simplemobiletools 24 | 25 | Реддит: 26 | https://www.reddit.com/r/SimpleMobileTools 27 | 28 | Телеграм: 29 | https://t.me/SimpleMobileTools 30 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sr/short_description.txt: -------------------------------------------------------------------------------- 1 | Лед контролер светла са контролом осветљености и прилагодљивом бојом, стробоскоп 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sr/title.txt: -------------------------------------------------------------------------------- 1 | Лампа једноставна 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/full_description.txt: -------------------------------------------------------------------------------- 1 | En ren ficklampa med extra ljusstark display, anpassningsbart stroboskop med stroboskopfunktion och ett fördefinierat SOS-läge. 2 | 3 | Den här snabbstartade ledficklampan är lätt på din enhet och fungerar som en riktig ledlampa när det är mörkt. Med hjälp av den här snedslampan kan du enkelt arbeta under olika omständigheter och den här snabbstarts led ficklampan kan hjälpa dig när du befinner dig i en svår situation. 4 | 5 | Alla dessa funktioner kan vara enormt hjälpsamma under vissa omständigheter. Oavsett om du vandrar i mörker och behöver ett led-ljus för att se vägen, eller om du måste hitta något på en plats med dåligt ljus, kan denna snabbstartslampa hjälpa dig under alla tänkbara omständigheter. Stroboskopljuset i den här appen kan hjälpa dig när du är i behov av hjälp. Den snabbstartade blixtledslampan kan hjälpa dig att kalla på räddning om du behöver det. 6 | 7 | Den ljusa displayen kan få sin färg ändrad, vilket öppnar en ny värld av möjliga användningsområden. Det kan vara praktiskt om du vill se din större närhet utan att blända dig själv. Med olika färger kan du använda denna ledlampa när du är med vänner och vill ha en fest. Eller så kan du använda den här funktionen för att kalla någon på hjälp beroende på person. 8 | 9 | Stroboskopet kan få sin frekvens ändrad, allt från riktigt snabba blinkningar till tillfälliga blinkningar. Den här snabbstartsappen kan anpassas efter dina behov. Du kan ändra alla funktioner i den här appen enligt dina behov utan problem. 10 | 11 | Om den här gratis ficklampan slås på via appen (inte widgeten) förhindrar den att enheten somnar. Den starka ficklampan kan valfritt slås på vid start av appen, men det är inte obligatoriskt. 12 | 13 | Levereras med en 1x1 widget med anpassningsbar färg och transparens. Den här widgeten kan hjälpa dig att snabbt starta din ledljusapp när du behöver den. 14 | 15 | Den levereras med en materialdesign och ett mörkt tema som standard, vilket ger en bra användarupplevelse för enkel användning. Avsaknaden av internetåtkomst ger dig mer integritet, säkerhet och stabilitet än andra appar. 16 | 17 | Innehåller inga annonser eller onödiga behörigheter. Den är helt öppen källkod och ger anpassningsbara färger. 18 | 19 | Kolla in hela sviten av Simple Tools här: 20 | https://www.simplemobiletools.com 21 | 22 | Facebook: 23 | https://www.facebook.com/simplemobiletools 24 | 25 | Reddit: 26 | https://www.reddit.com/r/SimpleMobileTools 27 | 28 | Telegram: 29 | https://t.me/SimpleMobileTools 30 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/short_description.txt: -------------------------------------------------------------------------------- 1 | En ficklampa med ljustyrkekonstroll,ändringsbara färger och stroboskopfunktion 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/title.txt: -------------------------------------------------------------------------------- 1 | Simple Flashlight 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/short_description.txt: -------------------------------------------------------------------------------- 1 | Parlak ekran, stroboskop, meşale ve sos modu ile parlak el feneri, reklamsız 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/title.txt: -------------------------------------------------------------------------------- 1 | Basit Fener 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/short_description.txt: -------------------------------------------------------------------------------- 1 | Ліхтарик з регулюванням кольору та яскравости, світлодіодний ліхтар, без реклами 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/title.txt: -------------------------------------------------------------------------------- 1 | Простий Ліхтарик 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/full_description.txt: -------------------------------------------------------------------------------- 1 | 一个干净的手电筒,额外明亮的显示,可定制的频闪仪频闪灯功能和预定义的SOS模式。 2 | 3 | 这款快速启动的led手电筒是你的设备上的光,在黑暗中作为真正的led灯。使用这个斜线灯,你可以很容易地在不同的情况下工作,当你在一个可怕的情况下,这个快速启动led手电筒可以帮助你。 4 | 5 | 所有这些功能在某些情况下都非常有用。无论你是在黑暗中徘徊,需要一盏led灯来看路,还是你必须在一个光线较暗的地方找到什么东西,这快速启动的闪光灯可以在所有可能的情况下帮助你。当你需要帮助时,这个应用中的闪光灯可以帮助你。快速启动闪光led灯可以帮助呼叫救援,如果你需要它。 6 | 7 | Bright显示器可以改变其颜色,打开了一个新的可能用途的世界。如果你想看到更近的距离而又不想弄瞎自己,它可以派上用场。有不同的颜色,你可以使用这个led灯,当你和朋友在一起,想要有一个聚会。或者你也可以使用这个功能根据人打电话求助。 8 | 9 | 频闪镜可以改变频率,从非常快的闪烁到偶尔的闪烁。这个快速启动的应用可以根据您的需要定制。您可以根据您的需要更改本应用的所有功能,没有任何问题。 10 | 11 | 如果这个免费的闪光灯是通过应用(不是小部件)打开的,它将防止设备休眠。这个强大的手电筒可以在启动应用时打开,但不是强制的。 12 | 13 | 自带1x1小部件,可定制颜色和透明度。这个小工具可以帮助你在需要的时候快速启动你的led灯应用。 14 | 15 | 它自带Material设计,默认为深色主题,使用方便,用户体验极佳。与其他同类应用相比,没有互联网访问权给你更多的隐私、安全和稳定。 16 | 17 | 不包含广告或不必要的权限。它完全开源,提供可定制的颜色。 18 | 19 | 查看全套 Simple Tools: 20 | https://www.simplemobiletools.com 21 | 22 | Facebook: 23 | https://www.facebook.com/simplemobiletools 24 | 25 | Reddit: 26 | https://www.reddit.com/r/SimpleMobileTools 27 | 28 | Telegram: 29 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 带颜色和亮度控制的手电筒,led 手电筒 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | 简单手电筒 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/full_description.txt: -------------------------------------------------------------------------------- 1 | 一個有超亮螢幕和可自訂閃爍效果的乾淨手電筒。如果使用應用程式(不是小工具)打開手電筒,會防止裝置進入睡眠。 2 | 3 | 帶有一個可自訂顏色的1x1小工具。 4 | 5 | 不包含廣告及非必要的權限,而且完全開放原始碼,並提供自訂顏色。 6 | 7 | Check out the full suite of Simple Tools here: 8 | https://www.simplemobiletools.com 9 | 10 | Facebook: 11 | https://www.facebook.com/simplemobiletools 12 | 13 | Reddit: 14 | https://www.reddit.com/r/SimpleMobileTools 15 | 16 | Telegram: 17 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/short_description.txt: -------------------------------------------------------------------------------- 1 | 一個沒有廣告的簡易手電筒。 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/title.txt: -------------------------------------------------------------------------------- 1 | 簡易手電筒 - 不會在黑暗中迷路 -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | android.enableJetifier=true 2 | android.useAndroidX=true 3 | org.gradle.jvmargs=-Xmx4g 4 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat Nov 07 18:30:47 CET 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip 7 | -------------------------------------------------------------------------------- /graphics/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/graphics/app_icon.png -------------------------------------------------------------------------------- /graphics/featureGraphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/graphics/featureGraphic.jpg -------------------------------------------------------------------------------- /graphics/featureGraphic.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/graphics/featureGraphic.xcf -------------------------------------------------------------------------------- /graphics/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/graphics/icon.png -------------------------------------------------------------------------------- /graphics/promo_graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/graphics/promo_graphic.png -------------------------------------------------------------------------------- /graphics/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/graphics/square.png -------------------------------------------------------------------------------- /graphics/square.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/graphics/square.xcf -------------------------------------------------------------------------------- /graphics/tv_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Flashlight/ae9665b6912c117aa336834667eb6aee689a1bd3/graphics/tv_banner.png -------------------------------------------------------------------------------- /keystore.properties_sample: -------------------------------------------------------------------------------- 1 | storePassword=123456 2 | keyPassword=abcdef 3 | keyAlias=myAlias 4 | storeFile=../keystore.jks 5 | -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | google() 5 | mavenCentral() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | maven { setUrl("https://jitpack.io") } 14 | } 15 | } 16 | include(":app") 17 | --------------------------------------------------------------------------------