├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── build.gradle ├── proguard-project.txt └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ └── biz │ │ └── binarysolutions │ │ └── healthybatterycharging │ │ ├── MainActivity.java │ │ ├── receivers │ │ ├── AlarmReceiver.java │ │ ├── BootReceiver.java │ │ └── Notifications.java │ │ └── util │ │ ├── Battery.java │ │ ├── DefaultTextWatcher.java │ │ ├── IntentUtil.java │ │ ├── Logger.java │ │ ├── NotificationChannelUtil.java │ │ └── PreferencesUtil.java │ └── res │ ├── drawable-ldrtl │ ├── glow.png │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── background_gradient.xml │ ├── button_stroke.xml │ ├── button_text_colors.xml │ ├── glow.png │ ├── ic_launcher_foreground.xml │ └── rounded_button.xml │ ├── layout │ ├── activity_main.xml │ └── edittext_input.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-ldrtl-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-ldrtl-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-ldrtl-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-ldrtl-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-ldrtl-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-ldrtl-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── resources.properties │ ├── values-ar │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-eo │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-et │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-gl │ └── strings.xml │ ├── values-iw │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-ldrtl │ └── integers.xml │ ├── values-nb-rNO │ └── strings.xml │ ├── values-nl │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-ta │ └── strings.xml │ ├── values-tok │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ └── values │ ├── colors.xml │ ├── dimensions.xml │ ├── donottranslate.xml │ ├── integers.xml │ ├── strings.xml │ └── styles.xml ├── docs └── images │ └── extra-screenshots │ ├── app-info-notifications.png │ ├── app-main-screen-bottom.png │ └── app-main-screen-denied.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── metadata ├── ar │ ├── changelogs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── cs │ ├── changelogs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── de-DE │ ├── changelogs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── en-US │ ├── changelogs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── eo │ ├── full_description.txt │ ├── images │ │ └── featureGraphic.png │ ├── short_description.txt │ └── title.txt ├── es-ES │ ├── changelogs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── et │ ├── changelogs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── fr-FR │ ├── changelogs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── gl-ES │ ├── changelogs │ │ └── 1.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── iw-IL │ ├── changelogs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── ja-JP │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── nb │ ├── changelogs │ │ ├── 1.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ └── 5.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── nl │ └── images │ │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png ├── pl-PL │ ├── images │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── pt-BR │ ├── changelogs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── ru │ ├── changelogs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── ta │ └── images │ │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png ├── uk │ ├── changelogs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── zh-CN │ ├── changelogs │ │ ├── 1.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ └── 6.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt └── zh-TW │ ├── full_description.txt │ ├── images │ ├── featureGraphic.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── pair.ps1 └── settings.gradle /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/proguard-project.txt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/biz/binarysolutions/healthybatterycharging/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/java/biz/binarysolutions/healthybatterycharging/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/biz/binarysolutions/healthybatterycharging/receivers/AlarmReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/java/biz/binarysolutions/healthybatterycharging/receivers/AlarmReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/biz/binarysolutions/healthybatterycharging/receivers/BootReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/java/biz/binarysolutions/healthybatterycharging/receivers/BootReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/biz/binarysolutions/healthybatterycharging/receivers/Notifications.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/java/biz/binarysolutions/healthybatterycharging/receivers/Notifications.java -------------------------------------------------------------------------------- /app/src/main/java/biz/binarysolutions/healthybatterycharging/util/Battery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/java/biz/binarysolutions/healthybatterycharging/util/Battery.java -------------------------------------------------------------------------------- /app/src/main/java/biz/binarysolutions/healthybatterycharging/util/DefaultTextWatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/java/biz/binarysolutions/healthybatterycharging/util/DefaultTextWatcher.java -------------------------------------------------------------------------------- /app/src/main/java/biz/binarysolutions/healthybatterycharging/util/IntentUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/java/biz/binarysolutions/healthybatterycharging/util/IntentUtil.java -------------------------------------------------------------------------------- /app/src/main/java/biz/binarysolutions/healthybatterycharging/util/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/java/biz/binarysolutions/healthybatterycharging/util/Logger.java -------------------------------------------------------------------------------- /app/src/main/java/biz/binarysolutions/healthybatterycharging/util/NotificationChannelUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/java/biz/binarysolutions/healthybatterycharging/util/NotificationChannelUtil.java -------------------------------------------------------------------------------- /app/src/main/java/biz/binarysolutions/healthybatterycharging/util/PreferencesUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/java/biz/binarysolutions/healthybatterycharging/util/PreferencesUtil.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldrtl/glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/drawable-ldrtl/glow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldrtl/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/drawable-ldrtl/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/drawable/background_gradient.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_stroke.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/drawable/button_stroke.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_text_colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/drawable/button_text_colors.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/drawable/glow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/drawable/rounded_button.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/edittext_input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/layout/edittext_input.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-ldrtl-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-ldrtl-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-ldrtl-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-ldrtl-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-ldrtl-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-ldrtl-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-ldrtl-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-ldrtl-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-ldrtl-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-ldrtl-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-ldrtl-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-ldrtl-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-ldrtl-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-ldrtl-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-ldrtl-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-ldrtl-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-ldrtl-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-ldrtl-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-ldrtl-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-ldrtl-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-ldrtl-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-ldrtl-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-ldrtl-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-ldrtl-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/resources.properties: -------------------------------------------------------------------------------- 1 | unqualifiedResLocale=en-US -------------------------------------------------------------------------------- /app/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-eo/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-eo/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-gl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-gl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ldrtl/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-ldrtl/integers.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nb-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-nb-rNO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-ta/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tok/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-tok/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values/dimensions.xml -------------------------------------------------------------------------------- /app/src/main/res/values/donottranslate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values/donottranslate.xml -------------------------------------------------------------------------------- /app/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /docs/images/extra-screenshots/app-info-notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/docs/images/extra-screenshots/app-info-notifications.png -------------------------------------------------------------------------------- /docs/images/extra-screenshots/app-main-screen-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/docs/images/extra-screenshots/app-main-screen-bottom.png -------------------------------------------------------------------------------- /docs/images/extra-screenshots/app-main-screen-denied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/docs/images/extra-screenshots/app-main-screen-denied.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/gradlew -------------------------------------------------------------------------------- /metadata/ar/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | 1.0 (2017.09.18) 2 | 3 | * الإصدار الأولي 4 | -------------------------------------------------------------------------------- /metadata/ar/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/changelogs/10.txt -------------------------------------------------------------------------------- /metadata/ar/changelogs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/changelogs/11.txt -------------------------------------------------------------------------------- /metadata/ar/changelogs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/changelogs/12.txt -------------------------------------------------------------------------------- /metadata/ar/changelogs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/changelogs/13.txt -------------------------------------------------------------------------------- /metadata/ar/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/changelogs/14.txt -------------------------------------------------------------------------------- /metadata/ar/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/changelogs/15.txt -------------------------------------------------------------------------------- /metadata/ar/changelogs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/changelogs/2.txt -------------------------------------------------------------------------------- /metadata/ar/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/changelogs/3.txt -------------------------------------------------------------------------------- /metadata/ar/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/changelogs/4.txt -------------------------------------------------------------------------------- /metadata/ar/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/changelogs/5.txt -------------------------------------------------------------------------------- /metadata/ar/changelogs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/changelogs/6.txt -------------------------------------------------------------------------------- /metadata/ar/changelogs/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/changelogs/7.txt -------------------------------------------------------------------------------- /metadata/ar/changelogs/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/changelogs/8.txt -------------------------------------------------------------------------------- /metadata/ar/changelogs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/changelogs/9.txt -------------------------------------------------------------------------------- /metadata/ar/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/full_description.txt -------------------------------------------------------------------------------- /metadata/ar/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/ar/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/images/icon.png -------------------------------------------------------------------------------- /metadata/ar/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/ar/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/ar/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/ar/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/ar/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ar/short_description.txt -------------------------------------------------------------------------------- /metadata/ar/title.txt: -------------------------------------------------------------------------------- 1 | سلامة شحن البطارية 2 | -------------------------------------------------------------------------------- /metadata/cs/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | 1.0 (2017.09.18) 2 | 3 | * initial release 4 | -------------------------------------------------------------------------------- /metadata/cs/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/cs/changelogs/10.txt -------------------------------------------------------------------------------- /metadata/cs/changelogs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/cs/changelogs/11.txt -------------------------------------------------------------------------------- /metadata/cs/changelogs/12.txt: -------------------------------------------------------------------------------- 1 | 2.0.10 (2025.01.04) 2 | 3 | * Adding Tamil translation 4 | -------------------------------------------------------------------------------- /metadata/cs/changelogs/13.txt: -------------------------------------------------------------------------------- 1 | 2.0.11 (2025.01.10) 2 | 3 | * Adding Dutch translation 4 | -------------------------------------------------------------------------------- /metadata/cs/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/cs/changelogs/14.txt -------------------------------------------------------------------------------- /metadata/cs/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/cs/changelogs/15.txt -------------------------------------------------------------------------------- /metadata/cs/changelogs/16.txt: -------------------------------------------------------------------------------- 1 | 2.0.14 (2025.01.27) 2 | 3 | * Adding Polish translation 4 | -------------------------------------------------------------------------------- /metadata/cs/changelogs/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/cs/changelogs/17.txt -------------------------------------------------------------------------------- /metadata/cs/changelogs/18.txt: -------------------------------------------------------------------------------- 1 | 2.0.16 (2025.03.23) 2 | 3 | * Přidána čeština 4 | -------------------------------------------------------------------------------- /metadata/cs/changelogs/19.txt: -------------------------------------------------------------------------------- 1 | 2.0.17 (2025.03.24) 2 | 3 | * Přidána galicijština 4 | -------------------------------------------------------------------------------- /metadata/cs/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | 2.0 (2024.04.14) 2 | 3 | * complete redesign 4 | * targeting Android API level 34 5 | -------------------------------------------------------------------------------- /metadata/cs/changelogs/3.txt: -------------------------------------------------------------------------------- 1 | 2.0.1 (2024.06.03) 2 | 3 | * adding a note on battery optimization 4 | -------------------------------------------------------------------------------- /metadata/cs/changelogs/4.txt: -------------------------------------------------------------------------------- 1 | 2.0.2 (2024.06.11) 2 | 3 | * expanding notes on app functionality 4 | -------------------------------------------------------------------------------- /metadata/cs/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/cs/changelogs/5.txt -------------------------------------------------------------------------------- /metadata/cs/changelogs/6.txt: -------------------------------------------------------------------------------- 1 | 2.0.4 (2024.06.25) 2 | 3 | * Adding Arabic translation 4 | -------------------------------------------------------------------------------- /metadata/cs/changelogs/7.txt: -------------------------------------------------------------------------------- 1 | 2.0.5 (2024.07.12) 2 | 3 | * Adding Chinese (Simplified) translation 4 | -------------------------------------------------------------------------------- /metadata/cs/changelogs/8.txt: -------------------------------------------------------------------------------- 1 | 2.0.6 (2024.07.31) 2 | 3 | * Adding Portuguese (Brazilian) translation 4 | -------------------------------------------------------------------------------- /metadata/cs/changelogs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/cs/changelogs/9.txt -------------------------------------------------------------------------------- /metadata/cs/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/cs/full_description.txt -------------------------------------------------------------------------------- /metadata/cs/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/cs/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/cs/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/cs/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/cs/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/cs/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/cs/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/cs/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/cs/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/cs/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/cs/short_description.txt: -------------------------------------------------------------------------------- 1 | Prodlužte životnost baterie udržováním úrovně nabití mezi 40 a 80 % 2 | -------------------------------------------------------------------------------- /metadata/cs/title.txt: -------------------------------------------------------------------------------- 1 | Zdravé nabíjení baterie 2 | -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | 1.0 (2017.09.18) 2 | 3 | * Erstveröffentlichung 4 | -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/changelogs/10.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/changelogs/11.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/12.txt: -------------------------------------------------------------------------------- 1 | 2.0.10 (2025.01.04) 2 | 3 | * Hinzufügen der tamilischen Übersetzung 4 | -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/13.txt: -------------------------------------------------------------------------------- 1 | 2.0.11 (2025.01.10) 2 | 3 | * Hinzufügen der niederländischen Übersetzung 4 | -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/14.txt: -------------------------------------------------------------------------------- 1 | 2.0.12 (2025.01.13) 2 | 3 | * Hinzufügen der chinesischen (traditionell) Übersetzung 4 | -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/changelogs/15.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/16.txt: -------------------------------------------------------------------------------- 1 | 2.0.14 (2025.01.27) 2 | 3 | * Hinzufügen der polnischen Übersetzung 4 | -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/changelogs/2.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/changelogs/3.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/changelogs/4.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/changelogs/5.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/6.txt: -------------------------------------------------------------------------------- 1 | 2.0.4 (2024.06.25) 2 | 3 | * Hinzufügen der arabischen Übersetzung 4 | -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/7.txt: -------------------------------------------------------------------------------- 1 | 2.0.5 (2024.07.12) 2 | 3 | * Hinzufügen der chinesischen (vereinfachten) Übersetzung 4 | -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/changelogs/8.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/changelogs/9.txt -------------------------------------------------------------------------------- /metadata/de-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/full_description.txt -------------------------------------------------------------------------------- /metadata/de-DE/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/de-DE/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/de-DE/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/de-DE/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/de-DE/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/de-DE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/de-DE/short_description.txt -------------------------------------------------------------------------------- /metadata/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Schonendes Laden 2 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | 1.0 (2017.09.18) 2 | 3 | * initial release 4 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/changelogs/10.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/changelogs/11.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/12.txt: -------------------------------------------------------------------------------- 1 | 2.0.10 (2025.01.04) 2 | 3 | * Adding Tamil translation -------------------------------------------------------------------------------- /metadata/en-US/changelogs/13.txt: -------------------------------------------------------------------------------- 1 | 2.0.11 (2025.01.10) 2 | 3 | * Adding Dutch translation -------------------------------------------------------------------------------- /metadata/en-US/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/changelogs/14.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/changelogs/15.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/16.txt: -------------------------------------------------------------------------------- 1 | 2.0.14 (2025.01.27) 2 | 3 | * Adding Polish translation 4 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/changelogs/17.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/18.txt: -------------------------------------------------------------------------------- 1 | 2.0.16 (2025.03.23) 2 | 3 | * Adding Czech translation 4 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/19.txt: -------------------------------------------------------------------------------- 1 | 2.0.17 (2025.03.24) 2 | 3 | * Adding Galician translation 4 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | 2.0 (2024.04.14) 2 | 3 | * complete redesign 4 | * targeting Android API level 34 5 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/20.txt: -------------------------------------------------------------------------------- 1 | 2.0.18 (2025.03.27) 2 | 3 | * Adding Hebrew translation 4 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/3.txt: -------------------------------------------------------------------------------- 1 | 2.0.1 (2024.06.03) 2 | 3 | * adding a note on battery optimization 4 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/4.txt: -------------------------------------------------------------------------------- 1 | 2.0.2 (2024.06.11) 2 | 3 | * expanding notes on app functionality 4 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/changelogs/5.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/6.txt: -------------------------------------------------------------------------------- 1 | 2.0.4 (2024.06.25) 2 | 3 | * Adding Arabic translation 4 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/7.txt: -------------------------------------------------------------------------------- 1 | 2.0.5 (2024.07.12) 2 | 3 | * Adding Chinese (Simplified) translation 4 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/8.txt: -------------------------------------------------------------------------------- 1 | 2.0.6 (2024.07.31) 2 | 3 | * Adding Portuguese (Brazilian) translation 4 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/changelogs/9.txt -------------------------------------------------------------------------------- /metadata/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/full_description.txt -------------------------------------------------------------------------------- /metadata/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/images/icon.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/en-US/short_description.txt -------------------------------------------------------------------------------- /metadata/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Healthy Battery Charging -------------------------------------------------------------------------------- /metadata/eo/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/eo/full_description.txt -------------------------------------------------------------------------------- /metadata/eo/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/eo/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/eo/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/eo/short_description.txt -------------------------------------------------------------------------------- /metadata/eo/title.txt: -------------------------------------------------------------------------------- 1 | Sana Bateria Ŝargado 2 | -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | 1.0 (2017.09.18) 2 | 3 | * Versión inicial 4 | -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/es-ES/changelogs/10.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/es-ES/changelogs/11.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | 2.0 (2024.04.14) 2 | 3 | * Rediseño completo 4 | * Apuntar a Android API 34 5 | -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/3.txt: -------------------------------------------------------------------------------- 1 | 2.0.1 (2024.06.03) 2 | 3 | * Añadir una nota en la optimización de la batería 4 | -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/es-ES/changelogs/4.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/es-ES/changelogs/5.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/6.txt: -------------------------------------------------------------------------------- 1 | 2.0.4 (2024.06.25) 2 | 3 | * Añadida traducción al árabe 4 | -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/7.txt: -------------------------------------------------------------------------------- 1 | 2.0.5 (2024.07.12) 2 | 3 | * Añadida traducción al chino (simplificado) 4 | -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/8.txt: -------------------------------------------------------------------------------- 1 | 2.0.6 (2024.07.31) 2 | 3 | * Añadida traducción al portugués (Brasil) 4 | -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/es-ES/changelogs/9.txt -------------------------------------------------------------------------------- /metadata/es-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/es-ES/full_description.txt -------------------------------------------------------------------------------- /metadata/es-ES/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/es-ES/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/es-ES/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/es-ES/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/es-ES/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/es-ES/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/es-ES/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/es-ES/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/es-ES/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/es-ES/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/es-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/es-ES/short_description.txt -------------------------------------------------------------------------------- /metadata/es-ES/title.txt: -------------------------------------------------------------------------------- 1 | Healthy Battery Charging 2 | -------------------------------------------------------------------------------- /metadata/et/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | 1.0 (2017.09.18) 2 | 3 | * algne versioon 4 | -------------------------------------------------------------------------------- /metadata/et/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/changelogs/10.txt -------------------------------------------------------------------------------- /metadata/et/changelogs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/changelogs/11.txt -------------------------------------------------------------------------------- /metadata/et/changelogs/12.txt: -------------------------------------------------------------------------------- 1 | 2.0.10 (2025.01.04) 2 | 3 | * lisasime tamili keele tõlke 4 | -------------------------------------------------------------------------------- /metadata/et/changelogs/13.txt: -------------------------------------------------------------------------------- 1 | 2.0.11 (2025.01.10) 2 | 3 | * Lisasime hollandi keele tõlke 4 | -------------------------------------------------------------------------------- /metadata/et/changelogs/14.txt: -------------------------------------------------------------------------------- 1 | 2.0.12 (2025.01.13) 2 | 3 | * Lisasime traditsioonilise hiina keele tõlke 4 | -------------------------------------------------------------------------------- /metadata/et/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/changelogs/15.txt -------------------------------------------------------------------------------- /metadata/et/changelogs/16.txt: -------------------------------------------------------------------------------- 1 | 2.0.14 (2025.01.27) 2 | 3 | * Lisasime poola keele tõlke 4 | -------------------------------------------------------------------------------- /metadata/et/changelogs/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/changelogs/17.txt -------------------------------------------------------------------------------- /metadata/et/changelogs/18.txt: -------------------------------------------------------------------------------- 1 | 2.0.16 (2025.03.23) 2 | 3 | * lisasime tšehhi keele tõlke 4 | -------------------------------------------------------------------------------- /metadata/et/changelogs/19.txt: -------------------------------------------------------------------------------- 1 | 2.0.17 (2025.03.24) 2 | 3 | * lisasime galeegi keele tõlke 4 | -------------------------------------------------------------------------------- /metadata/et/changelogs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/changelogs/2.txt -------------------------------------------------------------------------------- /metadata/et/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/changelogs/3.txt -------------------------------------------------------------------------------- /metadata/et/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/changelogs/4.txt -------------------------------------------------------------------------------- /metadata/et/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/changelogs/5.txt -------------------------------------------------------------------------------- /metadata/et/changelogs/6.txt: -------------------------------------------------------------------------------- 1 | 2.0.4 (2024.06.25) 2 | 3 | * lisasime araabia keele tõlke 4 | -------------------------------------------------------------------------------- /metadata/et/changelogs/7.txt: -------------------------------------------------------------------------------- 1 | 2.0.5 (2024.07.12) 2 | 3 | * lisasime hiina keele tõlke (lihtsustatud kirjas) 4 | -------------------------------------------------------------------------------- /metadata/et/changelogs/8.txt: -------------------------------------------------------------------------------- 1 | 2.0.6 (2024.07.31) 2 | 3 | * lisasime Brasiilia portugali keele tõlke 4 | -------------------------------------------------------------------------------- /metadata/et/changelogs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/changelogs/9.txt -------------------------------------------------------------------------------- /metadata/et/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/full_description.txt -------------------------------------------------------------------------------- /metadata/et/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/et/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/et/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/et/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/et/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/et/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/et/short_description.txt -------------------------------------------------------------------------------- /metadata/et/title.txt: -------------------------------------------------------------------------------- 1 | Healthy Battery Charging 2 | -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | 1.0 (18/09/2017) 2 | 3 | * version initiale 4 | -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/changelogs/10.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/changelogs/11.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/12.txt: -------------------------------------------------------------------------------- 1 | 2.0.10 (04/01/2025) 2 | 3 | * Ajout de la traduction en tamoul 4 | -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/13.txt: -------------------------------------------------------------------------------- 1 | 2.0.11 (10/01/2025) 2 | 3 | * Ajout de la traduction en Néerlandais 4 | -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/changelogs/14.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/changelogs/15.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | 2.0 (14.4.2024) 2 | 3 | * refonte complète 4 | * ciblage du niveau 34 de l'API Android 5 | -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/changelogs/3.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/changelogs/4.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/changelogs/5.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/6.txt: -------------------------------------------------------------------------------- 1 | 2.0.4 (25/06/2024) 2 | 3 | * Ajout de la traduction en Arabe 4 | -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/7.txt: -------------------------------------------------------------------------------- 1 | 2.0.5 (12/07/2024) 2 | 3 | * Ajout de la traduction en Chinois (simplifié) 4 | -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/8.txt: -------------------------------------------------------------------------------- 1 | 2.0.6 (31/07/2024) 2 | 3 | * Ajout de la traduction en Portugais (Brésilien) 4 | -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/changelogs/9.txt -------------------------------------------------------------------------------- /metadata/fr-FR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/full_description.txt -------------------------------------------------------------------------------- /metadata/fr-FR/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/fr-FR/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/fr-FR/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/fr-FR/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/fr-FR/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/fr-FR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/fr-FR/short_description.txt -------------------------------------------------------------------------------- /metadata/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Healthy Battery Charging 2 | -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | 1.0 (2017.09.18) 2 | 3 | * versión inicial 4 | -------------------------------------------------------------------------------- /metadata/gl-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/gl-ES/full_description.txt -------------------------------------------------------------------------------- /metadata/gl-ES/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/gl-ES/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/gl-ES/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/gl-ES/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/gl-ES/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/gl-ES/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/gl-ES/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/gl-ES/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/gl-ES/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/gl-ES/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/gl-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/gl-ES/short_description.txt -------------------------------------------------------------------------------- /metadata/gl-ES/title.txt: -------------------------------------------------------------------------------- 1 | Carga Saudábel da Batería 2 | -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | 1.0 (2017.09.18) 2 | 3 | * שחרור ראשוני 4 | -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/changelogs/10.txt -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/changelogs/11.txt -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/12.txt: -------------------------------------------------------------------------------- 1 | 2.0.10 (2025.01.04) 2 | 3 | * הוספת תרגום לטמילית 4 | -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/13.txt: -------------------------------------------------------------------------------- 1 | 2.0.11 (2025.01.10) 2 | 3 | * הוספת תרגום הולנדית 4 | -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/changelogs/14.txt -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/changelogs/15.txt -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/16.txt: -------------------------------------------------------------------------------- 1 | 2.0.14 (2025.01.27) 2 | 3 | * הוספת תרגום לפולנית 4 | -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/changelogs/17.txt -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/18.txt: -------------------------------------------------------------------------------- 1 | 2.0.16 (2025.03.23) 2 | 3 | * הוספת תרגום לצ'כית 4 | -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/changelogs/19.txt -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/changelogs/2.txt -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/changelogs/3.txt -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/changelogs/4.txt -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/changelogs/5.txt -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/6.txt: -------------------------------------------------------------------------------- 1 | 2.0.4 (2024.06.25) 2 | 3 | * הוספת תרגום לערבית 4 | -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/changelogs/7.txt -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/changelogs/8.txt -------------------------------------------------------------------------------- /metadata/iw-IL/changelogs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/changelogs/9.txt -------------------------------------------------------------------------------- /metadata/iw-IL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/full_description.txt -------------------------------------------------------------------------------- /metadata/iw-IL/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/iw-IL/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/iw-IL/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/iw-IL/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/iw-IL/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/iw-IL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/iw-IL/short_description.txt -------------------------------------------------------------------------------- /metadata/iw-IL/title.txt: -------------------------------------------------------------------------------- 1 | טעינת סוללה בריאה 2 | -------------------------------------------------------------------------------- /metadata/ja-JP/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ja-JP/full_description.txt -------------------------------------------------------------------------------- /metadata/ja-JP/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ja-JP/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/ja-JP/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ja-JP/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/ja-JP/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ja-JP/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/ja-JP/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ja-JP/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/ja-JP/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ja-JP/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/ja-JP/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ja-JP/short_description.txt -------------------------------------------------------------------------------- /metadata/ja-JP/title.txt: -------------------------------------------------------------------------------- 1 | 健康的なバッテリー充電 2 | -------------------------------------------------------------------------------- /metadata/nb/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | 1.0 (2017.09.18) 2 | 3 | * Opprinnelig utgave 4 | -------------------------------------------------------------------------------- /metadata/nb/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | 2.0 (2024.04.14) 2 | 3 | * fullstendig redesign 4 | * innrettet til Android API-nivå 34 5 | -------------------------------------------------------------------------------- /metadata/nb/changelogs/3.txt: -------------------------------------------------------------------------------- 1 | 2.0.1 (2024.06.03) 2 | 3 | * instruks om batterioptimalisering tillagt 4 | -------------------------------------------------------------------------------- /metadata/nb/changelogs/4.txt: -------------------------------------------------------------------------------- 1 | 2.0.2 (2024.06.11) 2 | 3 | * utvidet instruks om programfunksjonalitet 4 | -------------------------------------------------------------------------------- /metadata/nb/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/nb/changelogs/5.txt -------------------------------------------------------------------------------- /metadata/nb/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/nb/full_description.txt -------------------------------------------------------------------------------- /metadata/nb/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/nb/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/nb/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/nb/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/nb/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/nb/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/nb/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/nb/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/nb/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/nb/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/nb/short_description.txt: -------------------------------------------------------------------------------- 1 | Forleng batteriets levetid ved å holde oppladingen mellom 40 og 80% 2 | -------------------------------------------------------------------------------- /metadata/nb/title.txt: -------------------------------------------------------------------------------- 1 | Sunn batterilading 2 | -------------------------------------------------------------------------------- /metadata/nl/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/nl/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/nl/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/nl/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/nl/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/nl/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/nl/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/nl/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/pl-PL/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pl-PL/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/pl-PL/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pl-PL/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/pl-PL/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pl-PL/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/pl-PL/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pl-PL/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/pl-PL/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pl-PL/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/pl-PL/short_description.txt: -------------------------------------------------------------------------------- 1 | Przedłuż żywotność swojego akumulatora, utrzymując go naładowanym w zakresie od 40% do 80% 2 | -------------------------------------------------------------------------------- /metadata/pl-PL/title.txt: -------------------------------------------------------------------------------- 1 | Zdrowe Ładowanie Baterii 2 | -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | 1.0 (2017.09.18) 2 | 3 | * versão inicial 4 | -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/changelogs/10.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/changelogs/11.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/changelogs/12.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/changelogs/13.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/changelogs/14.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/changelogs/15.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/changelogs/16.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/changelogs/17.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/changelogs/18.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/19.txt: -------------------------------------------------------------------------------- 1 | 2.0.17 (2025.03.24) 2 | 3 | * Adicionando tradução galega 4 | -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | 2.0 (2024.04.14) 2 | 3 | * Reformulação completa 4 | * voltada para o nível 34 da API do Android 5 | -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/3.txt: -------------------------------------------------------------------------------- 1 | 2.0.1 (2024.06.03) 2 | 3 | * Adicionado uma nota sobre a otimização da bateria 4 | -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/4.txt: -------------------------------------------------------------------------------- 1 | 2.0.2 (2024.06.11) 2 | 3 | * expansão das notas sobre a funcionalidade do aplicativo 4 | -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/changelogs/5.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/6.txt: -------------------------------------------------------------------------------- 1 | 2.0.4 (2024.06.25) * 2 | 3 | Adicionado tradução em árabe 4 | -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/7.txt: -------------------------------------------------------------------------------- 1 | 2.0.5 (2024.07.12) 2 | 3 | * Adicionado tradução em chinês (simplificado) 4 | -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/8.txt: -------------------------------------------------------------------------------- 1 | 2.0.6 (2024.07.31) 2 | 3 | * Adicionado tradução em português (brasileiro) 4 | -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/changelogs/9.txt -------------------------------------------------------------------------------- /metadata/pt-BR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/full_description.txt -------------------------------------------------------------------------------- /metadata/pt-BR/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/pt-BR/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/pt-BR/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/pt-BR/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/pt-BR/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/pt-BR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/pt-BR/short_description.txt -------------------------------------------------------------------------------- /metadata/pt-BR/title.txt: -------------------------------------------------------------------------------- 1 | Healthy Battery Charging 2 | -------------------------------------------------------------------------------- /metadata/ru/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | 1.0 (18.09.2017) 2 | 3 | * начальная версия 4 | -------------------------------------------------------------------------------- /metadata/ru/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/changelogs/10.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/changelogs/11.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/changelogs/12.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/changelogs/13.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/changelogs/14.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | 2.0 (14.04.2024) 2 | 3 | * полный редизайн 4 | * таргетинг на Android API уровня 34 5 | -------------------------------------------------------------------------------- /metadata/ru/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/changelogs/3.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/changelogs/4.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/changelogs/5.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/changelogs/6.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/changelogs/7.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/changelogs/8.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/changelogs/9.txt -------------------------------------------------------------------------------- /metadata/ru/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/full_description.txt -------------------------------------------------------------------------------- /metadata/ru/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/ru/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/ru/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/ru/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/ru/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/ru/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ru/short_description.txt -------------------------------------------------------------------------------- /metadata/ru/title.txt: -------------------------------------------------------------------------------- 1 | Healthy Battery Charging 2 | -------------------------------------------------------------------------------- /metadata/ta/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ta/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/ta/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ta/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/ta/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ta/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/ta/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/ta/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/uk/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | 1.0 (18.09.2017) 2 | 3 | * початковий випуск 4 | -------------------------------------------------------------------------------- /metadata/uk/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/changelogs/10.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/changelogs/2.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/changelogs/3.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/changelogs/4.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/changelogs/5.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/changelogs/6.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/changelogs/7.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/changelogs/8.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/changelogs/9.txt -------------------------------------------------------------------------------- /metadata/uk/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/full_description.txt -------------------------------------------------------------------------------- /metadata/uk/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/uk/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/uk/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/uk/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/uk/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/uk/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/uk/short_description.txt -------------------------------------------------------------------------------- /metadata/uk/title.txt: -------------------------------------------------------------------------------- 1 | Healthy Battery Charging 2 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | 1.0 (2017.09.18) 2 | 3 | * 首次发布 4 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | 2.0 (2024.04.14) 2 | 3 | * 全部重新设计 4 | * 针对 Android API 级别 34 开发优化 5 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/3.txt: -------------------------------------------------------------------------------- 1 | 2.0.1 (2024.06.03) 2 | 3 | * 给电池优化添加说明 4 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/4.txt: -------------------------------------------------------------------------------- 1 | 2.0.2 (2024.06.11) 2 | 3 | * 扩充应用功能说明 4 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/5.txt: -------------------------------------------------------------------------------- 1 | 2.0.3 (2024.06.22) 2 | 3 | * 挪威博克马尔语、乌克兰语和俄语翻译 4 | * 支持按应用程序的语言设置 5 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/6.txt: -------------------------------------------------------------------------------- 1 | 2.0.4 (2024.06.25) 2 | 3 | * 阿拉伯语翻译 4 | -------------------------------------------------------------------------------- /metadata/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/zh-CN/full_description.txt -------------------------------------------------------------------------------- /metadata/zh-CN/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/zh-CN/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/zh-CN/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/zh-CN/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/zh-CN/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/zh-CN/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/zh-CN/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/zh-CN/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/zh-CN/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/zh-CN/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/zh-CN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/zh-CN/short_description.txt -------------------------------------------------------------------------------- /metadata/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | 健康电池充电 2 | -------------------------------------------------------------------------------- /metadata/zh-TW/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/zh-TW/full_description.txt -------------------------------------------------------------------------------- /metadata/zh-TW/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/zh-TW/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/zh-TW/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/zh-TW/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/zh-TW/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/zh-TW/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/zh-TW/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/zh-TW/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/zh-TW/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/metadata/zh-TW/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/zh-TW/short_description.txt: -------------------------------------------------------------------------------- 1 | 將電池電量保持在 40% 至 80% 之間可延長電池壽命 2 | -------------------------------------------------------------------------------- /metadata/zh-TW/title.txt: -------------------------------------------------------------------------------- 1 | 健康電池充電 2 | -------------------------------------------------------------------------------- /pair.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbresan/HealthyBatteryCharging/HEAD/pair.ps1 -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------