├── .gitattributes ├── .gitea ├── issue_template │ ├── bug_report.yml │ ├── config.yml │ ├── device_request.yml │ └── feature_request.yml └── pull_request_template.md ├── .gitignore ├── .gitmodules ├── .idea ├── dictionaries │ └── t.xml └── icon.svg ├── .woodpecker ├── can_master_build.yml ├── nightly.yml ├── run_lint.yml └── run_tests.yml ├── CHANGELOG.md ├── CONTRIBUTORS.rst ├── GBDaoGenerator ├── .gitignore ├── build.gradle └── src │ └── nodomain │ └── freeyourgadget │ └── gadgetbridge │ └── daogen │ └── GBDaoGenerator.java ├── LICENSE ├── LICENSE.artwork ├── README.md ├── app ├── build.gradle ├── lint-baseline.xml ├── proguard-rules.pro └── src │ ├── banglejs │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable │ │ └── ic_launcher_foreground.xml │ │ └── values │ │ └── strings.xml │ ├── banglejsNightly │ └── res │ │ └── values │ │ └── strings.xml │ ├── main │ ├── AndroidManifest.xml │ ├── aidl │ │ ├── com │ │ │ └── android │ │ │ │ └── internal │ │ │ │ └── telephony │ │ │ │ └── ITelephony.aidl │ │ ├── lineageos │ │ │ ├── weather │ │ │ │ ├── ILineageWeatherManager.aidl │ │ │ │ ├── IRequestInfoListener.aidl │ │ │ │ ├── IWeatherServiceProviderChangeListener.aidl │ │ │ │ ├── RequestInfo.aidl │ │ │ │ ├── WeatherInfo.aidl │ │ │ │ └── WeatherLocation.aidl │ │ │ └── weatherservice │ │ │ │ ├── IWeatherProviderService.aidl │ │ │ │ ├── IWeatherProviderServiceClient.aidl │ │ │ │ └── ServiceRequestResult.aidl │ │ └── net │ │ │ └── osmand │ │ │ └── aidlapi │ │ │ ├── IOsmAndAidlCallback.aidl │ │ │ ├── IOsmAndAidlInterface.aidl │ │ │ ├── gpx │ │ │ └── AGpxBitmap.aidl │ │ │ ├── navigation │ │ │ ├── ADirectionInfo.aidl │ │ │ ├── ANavigationUpdateParams.aidl │ │ │ ├── ANavigationVoiceRouterMessageParams.aidl │ │ │ └── OnVoiceNavigationParams.aidl │ │ │ └── search │ │ │ └── SearchResult.aidl │ ├── assets │ │ ├── activity.svg │ │ ├── activity_stacked.svg │ │ ├── app_config │ │ │ ├── configure.html │ │ │ └── js │ │ │ │ ├── Uri.js │ │ │ │ └── gadgetbridge_boilerplate.js │ │ ├── buds_pro_case.svg │ │ ├── buds_pro_left.svg │ │ ├── buds_pro_right.svg │ │ ├── calendar_sync.svg │ │ ├── devintro.png │ │ ├── devintro.xmi │ │ ├── filter_alt_plus.svg │ │ ├── fossil_hr │ │ │ ├── battery_layout.json │ │ │ ├── complication_layout.json │ │ │ ├── default_background.png │ │ │ ├── icActiveMins.rle │ │ │ ├── icBattCharging.rle │ │ │ ├── icBattEmpty.rle │ │ │ ├── icBattery.rle │ │ │ ├── icCalories.rle │ │ │ ├── icHeart.rle │ │ │ ├── icRainChance.rle │ │ │ ├── icSpO2.rle │ │ │ ├── icSteps.rle │ │ │ ├── icTrophy.rle │ │ │ ├── icWthClearDay.rle │ │ │ ├── icWthClearNite.rle │ │ │ ├── icWthCloudy.rle │ │ │ ├── icWthPartCloudyDay.rle │ │ │ ├── icWthPartCloudyNite.rle │ │ │ ├── icWthRainy.rle │ │ │ ├── icWthSnowy.rle │ │ │ ├── icWthStormy.rle │ │ │ ├── icWthWindy.rle │ │ │ ├── image_layout.json │ │ │ ├── menu_layout.json │ │ │ ├── navigationApp.wapp │ │ │ ├── openSourceWatchface.bin │ │ │ ├── widget2ndTZ.bin │ │ │ ├── widget2ndTZ_preview.png │ │ │ ├── widgetActiveMins.bin │ │ │ ├── widgetActiveMins_preview.png │ │ │ ├── widgetBattery.bin │ │ │ ├── widgetBattery_preview.png │ │ │ ├── widgetCalories.bin │ │ │ ├── widgetCalories_preview.png │ │ │ ├── widgetChanceOfRain.bin │ │ │ ├── widgetChanceOfRain_preview.png │ │ │ ├── widgetCustom.bin │ │ │ ├── widgetCustom_preview.png │ │ │ ├── widgetDate.bin │ │ │ ├── widgetDate_preview.png │ │ │ ├── widgetHR.bin │ │ │ ├── widgetHR_preview.png │ │ │ ├── widgetSpO2.bin │ │ │ ├── widgetSpO2_preview.png │ │ │ ├── widgetSteps.bin │ │ │ ├── widgetSteps_preview.png │ │ │ ├── widgetUV.bin │ │ │ ├── widgetUV_preview.png │ │ │ ├── widgetWeather.bin │ │ │ ├── widgetWeather_preview.png │ │ │ ├── widget_bg_dashed_circle.png │ │ │ ├── widget_bg_double_circle.png │ │ │ ├── widget_bg_error.rle │ │ │ └── widget_bg_thin_circle.png │ │ ├── galaxy_buds.svg │ │ ├── gps_edit.svg │ │ ├── ic_activity_bike_trainer.svg │ │ ├── ic_activity_eliptical.svg │ │ ├── ic_activity_rope_jump.svg │ │ ├── ic_activity_threadmill.svg │ │ ├── ic_device_flipper.svg │ │ ├── ic_device_flipper_disabled.svg │ │ ├── ic_device_galaxy_buds.svg │ │ ├── ic_device_galaxy_buds_disabled.svg │ │ ├── ic_device_galaxy_buds_live.svg │ │ ├── ic_device_galaxy_buds_live_disabled.svg │ │ ├── ic_device_galaxy_buds_pro.svg │ │ ├── ic_device_galaxy_buds_pro_disabled.svg │ │ ├── ic_device_miband6.svg │ │ ├── ic_device_miband6_disabled.svg │ │ ├── ic_device_sony_800n.svg │ │ ├── ic_device_sony_800n_disabled.svg │ │ ├── ic_device_sony_overhead.svg │ │ ├── ic_device_sony_overhead_disabled.svg │ │ ├── ic_device_supercars.svg │ │ ├── ic_device_supercars_disabled.svg │ │ ├── ic_device_unknown.svg │ │ ├── ic_device_unknown_disabled.svg │ │ ├── ic_device_vesc.svg │ │ ├── ic_device_vesc_disabled.svg │ │ ├── ic_distance.svg │ │ ├── ic_distance_total.svg │ │ ├── ic_galaxy_buds_l.svg │ │ ├── ic_galaxy_buds_live.svg │ │ ├── ic_galaxy_buds_live_l.svg │ │ ├── ic_galaxy_buds_live_r.svg │ │ ├── ic_galaxy_buds_r.svg │ │ ├── ic_heartrate.svg │ │ ├── ic_intensity.svg │ │ ├── ic_intensity_hollow.svg │ │ ├── ic_launcher.svg │ │ ├── ic_launcher_neon.svg │ │ ├── ic_no_watch.svg │ │ ├── ic_shoe.svg │ │ ├── ic_shoe_prints_many.svg │ │ ├── ic_sony_wf_800n_left.svg │ │ ├── ic_sony_wf_800n_right.svg │ │ ├── logback.xml │ │ ├── migrations │ │ │ └── devicetype.json │ │ ├── nothing_ear_l.svg │ │ ├── nothing_ear_r.svg │ │ ├── olive_laurel.svg │ │ ├── shortcut_black.svg │ │ ├── sony_800n.svg │ │ ├── sony_800n_case.svg │ │ ├── sports_badmington.svg │ │ ├── sports_pingpong.svg │ │ ├── tws_bud.svg │ │ └── tws_case.svg │ ├── java │ │ ├── com │ │ │ ├── google │ │ │ │ └── gson │ │ │ │ │ └── typeadapters │ │ │ │ │ └── RuntimeTypeAdapterFactory.java │ │ │ └── mobeta │ │ │ │ └── android │ │ │ │ └── dslv │ │ │ │ ├── CheckableLinearLayout.java │ │ │ │ ├── DragSortController.java │ │ │ │ ├── DragSortCursorAdapter.java │ │ │ │ ├── DragSortItemView.java │ │ │ │ ├── DragSortItemViewCheckable.java │ │ │ │ ├── DragSortListPreference.java │ │ │ │ ├── DragSortListPreferenceFragment.java │ │ │ │ ├── DragSortListView.java │ │ │ │ ├── ResourceDragSortCursorAdapter.java │ │ │ │ ├── SimpleDragSortCursorAdapter.java │ │ │ │ └── SimpleFloatViewManager.java │ │ ├── lineageos │ │ │ ├── app │ │ │ │ └── LineageContextConstants.java │ │ │ ├── os │ │ │ │ ├── Build.java │ │ │ │ └── Concierge.java │ │ │ ├── providers │ │ │ │ └── WeatherContract.java │ │ │ ├── weather │ │ │ │ ├── LineageWeatherManager.java │ │ │ │ ├── RequestInfo.java │ │ │ │ ├── WeatherInfo.java │ │ │ │ ├── WeatherLocation.java │ │ │ │ └── util │ │ │ │ │ └── WeatherUtils.java │ │ │ └── weatherservice │ │ │ │ ├── ServiceRequest.java │ │ │ │ ├── ServiceRequestResult.java │ │ │ │ └── WeatherProviderService.java │ │ ├── net │ │ │ └── osmand │ │ │ │ └── aidlapi │ │ │ │ ├── AidlParams.java │ │ │ │ ├── gpx │ │ │ │ └── AGpxBitmap.java │ │ │ │ ├── navigation │ │ │ │ ├── ADirectionInfo.java │ │ │ │ ├── ANavigationUpdateParams.java │ │ │ │ ├── ANavigationVoiceRouterMessageParams.java │ │ │ │ └── OnVoiceNavigationParams.java │ │ │ │ └── search │ │ │ │ └── SearchResult.java │ │ ├── nodomain │ │ │ └── freeyourgadget │ │ │ │ └── gadgetbridge │ │ │ │ ├── GBApplication.java │ │ │ │ ├── GBEnvironment.java │ │ │ │ ├── GBException.java │ │ │ │ ├── GBExceptionHandler.java │ │ │ │ ├── LockHandler.java │ │ │ │ ├── Logging.java │ │ │ │ ├── SleepAlarmWidget.java │ │ │ │ ├── Widget.java │ │ │ │ ├── activities │ │ │ │ ├── AboutActivity.java │ │ │ │ ├── AboutUserPreferencesActivity.java │ │ │ │ ├── AbstractFragmentPagerAdapter.java │ │ │ │ ├── AbstractGBActivity.java │ │ │ │ ├── AbstractGBFragment.java │ │ │ │ ├── AbstractGBFragmentActivity.java │ │ │ │ ├── AbstractListActivity.java │ │ │ │ ├── AbstractPreferenceFragment.java │ │ │ │ ├── AbstractSettingsActivityV2.java │ │ │ │ ├── ActivitySummariesActivity.java │ │ │ │ ├── ActivitySummariesChartFragment.java │ │ │ │ ├── ActivitySummariesFilter.java │ │ │ │ ├── ActivitySummariesGpsFragment.java │ │ │ │ ├── ActivitySummaryDetail.java │ │ │ │ ├── AlarmDetails.java │ │ │ │ ├── AndroidPairingActivity.java │ │ │ │ ├── AppBlacklistActivity.java │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ ├── BackupRestoreProgressActivity.java │ │ │ │ ├── BatteryInfoActivity.java │ │ │ │ ├── BatteryInfoChartFragment.java │ │ │ │ ├── CalBlacklistActivity.java │ │ │ │ ├── CameraActivity.java │ │ │ │ ├── ConfigureAlarms.java │ │ │ │ ├── ConfigureContacts.java │ │ │ │ ├── ConfigureReminders.java │ │ │ │ ├── ConfigureWorldClocks.java │ │ │ │ ├── ContactDetails.java │ │ │ │ ├── ControlCenterv2.java │ │ │ │ ├── DashboardFragment.java │ │ │ │ ├── DashboardPreferencesActivity.java │ │ │ │ ├── DataManagementActivity.java │ │ │ │ ├── DebugActivity.java │ │ │ │ ├── DevicesFragment.java │ │ │ │ ├── ExternalPebbleJSActivity.java │ │ │ │ ├── FindPhoneActivity.java │ │ │ │ ├── FwAppInstallerActivity.java │ │ │ │ ├── GBActivity.java │ │ │ │ ├── GpxReceiverActivity.java │ │ │ │ ├── HeartRateDialog.java │ │ │ │ ├── HeartRateUtils.java │ │ │ │ ├── InstallActivity.java │ │ │ │ ├── NotificationFilterActivity.java │ │ │ │ ├── NotificationManagementActivity.java │ │ │ │ ├── OpenFwAppInstallerActivity.java │ │ │ │ ├── PermissionsActivity.java │ │ │ │ ├── ReminderDetails.java │ │ │ │ ├── SettingsActivity.java │ │ │ │ ├── SleepAlarmWidgetConfigurationActivity.java │ │ │ │ ├── SleepAsAndroidPreferencesActivity.java │ │ │ │ ├── TextReceiverActivity.java │ │ │ │ ├── VibrationActivity.java │ │ │ │ ├── WakeActivity.java │ │ │ │ ├── WidgetAlarmsActivity.java │ │ │ │ ├── WidgetConfigurationActivity.java │ │ │ │ ├── WorldClockDetails.java │ │ │ │ ├── app_specific_notifications │ │ │ │ │ ├── AppSpecificNotificationSettingsActivity.java │ │ │ │ │ └── AppSpecificNotificationSettingsDetailActivity.java │ │ │ │ ├── appmanager │ │ │ │ │ ├── AbstractAppManagerFragment.java │ │ │ │ │ ├── AppManagerActivity.java │ │ │ │ │ ├── AppManagerFragmentCache.java │ │ │ │ │ ├── AppManagerFragmentInstalledApps.java │ │ │ │ │ └── AppManagerFragmentInstalledWatchfaces.java │ │ │ │ ├── charts │ │ │ │ │ ├── AbstractActivityChartFragment.java │ │ │ │ │ ├── AbstractChartFragment.java │ │ │ │ │ ├── AbstractChartsActivity.java │ │ │ │ │ ├── AbstractCollectionFragment.java │ │ │ │ │ ├── AbstractWeekChartFragment.java │ │ │ │ │ ├── ActivityAnalysis.java │ │ │ │ │ ├── ActivityChartsActivity.java │ │ │ │ │ ├── ActivityListingAdapter.java │ │ │ │ │ ├── ActivityListingChartFragment.java │ │ │ │ │ ├── ActivityListingDashboard.java │ │ │ │ │ ├── ActivityListingDetail.java │ │ │ │ │ ├── ActivitySleepChartFragment.java │ │ │ │ │ ├── AngledLabelsChartRenderer.java │ │ │ │ │ ├── BarChartStackedTimeValueFormatter.java │ │ │ │ │ ├── BodyEnergyFragment.java │ │ │ │ │ ├── CaloriesDailyFragment.java │ │ │ │ │ ├── ChartsData.java │ │ │ │ │ ├── ChartsHost.java │ │ │ │ │ ├── ChartsPreferencesActivity.java │ │ │ │ │ ├── CustomBarChart.java │ │ │ │ │ ├── CyclingChartFragment.java │ │ │ │ │ ├── DaySleepChartFragment.java │ │ │ │ │ ├── DefaultChartsData.java │ │ │ │ │ ├── HRVStatusFragment.java │ │ │ │ │ ├── HeartRateDailyFragment.java │ │ │ │ │ ├── LiveActivityFragment.java │ │ │ │ │ ├── NonSwipeableViewPager.java │ │ │ │ │ ├── PaiChartFragment.java │ │ │ │ │ ├── PreformattedXIndexLabelFormatter.java │ │ │ │ │ ├── RespiratoryRateCollectionFragment.java │ │ │ │ │ ├── RespiratoryRateDailyFragment.java │ │ │ │ │ ├── RespiratoryRateFragment.java │ │ │ │ │ ├── RespiratoryRatePeriodFragment.java │ │ │ │ │ ├── SampleXLabelFormatter.java │ │ │ │ │ ├── ShowDurationDialog.java │ │ │ │ │ ├── SingleEntryValueAnimator.java │ │ │ │ │ ├── SleepAnalysis.java │ │ │ │ │ ├── SleepCollectionFragment.java │ │ │ │ │ ├── SpeedZonesFragment.java │ │ │ │ │ ├── Spo2ChartFragment.java │ │ │ │ │ ├── StepAnalysis.java │ │ │ │ │ ├── StepStreaksDashboard.java │ │ │ │ │ ├── StepsCollectionFragment.java │ │ │ │ │ ├── StepsDailyFragment.java │ │ │ │ │ ├── StepsFragment.java │ │ │ │ │ ├── StepsPeriodFragment.java │ │ │ │ │ ├── StressChartFragment.java │ │ │ │ │ ├── TemperatureChartFragment.java │ │ │ │ │ ├── TemperatureDailyFragment.java │ │ │ │ │ ├── TimestampTranslation.java │ │ │ │ │ ├── TimestampValueFormatter.java │ │ │ │ │ ├── TrailingActivitySample.java │ │ │ │ │ ├── VO2MaxFragment.java │ │ │ │ │ ├── WeekSleepChartFragment.java │ │ │ │ │ └── WeightChartFragment.java │ │ │ │ ├── dashboard │ │ │ │ │ ├── AbstractDashboardVO2MaxWidget.java │ │ │ │ │ ├── AbstractDashboardWidget.java │ │ │ │ │ ├── AbstractGaugeWidget.java │ │ │ │ │ ├── DashboardActiveTimeWidget.java │ │ │ │ │ ├── DashboardBodyEnergyWidget.java │ │ │ │ │ ├── DashboardCalendarActivity.java │ │ │ │ │ ├── DashboardCaloriesActiveGoalWidget.java │ │ │ │ │ ├── DashboardCaloriesTotalSegmentedWidget.java │ │ │ │ │ ├── DashboardDistanceWidget.java │ │ │ │ │ ├── DashboardGoalsWidget.java │ │ │ │ │ ├── DashboardHrvWidget.java │ │ │ │ │ ├── DashboardSleepScoreWidget.java │ │ │ │ │ ├── DashboardSleepWidget.java │ │ │ │ │ ├── DashboardStepsWidget.java │ │ │ │ │ ├── DashboardStressBreakdownWidget.java │ │ │ │ │ ├── DashboardStressSegmentedWidget.java │ │ │ │ │ ├── DashboardStressSimpleWidget.java │ │ │ │ │ ├── DashboardTodayWidget.java │ │ │ │ │ ├── DashboardVO2MaxAnyWidget.java │ │ │ │ │ ├── DashboardVO2MaxCyclingWidget.java │ │ │ │ │ ├── DashboardVO2MaxRunningWidget.java │ │ │ │ │ ├── DashboardVO2MaxWidgetInterface.java │ │ │ │ │ ├── GaugeDrawer.java │ │ │ │ │ └── data │ │ │ │ │ │ └── DashboardStressData.java │ │ │ │ ├── devicesettings │ │ │ │ │ ├── DeviceSettingsActivity.java │ │ │ │ │ ├── DeviceSettingsPreferenceConst.java │ │ │ │ │ ├── DeviceSettingsUtils.java │ │ │ │ │ ├── DeviceSpecificSettings.java │ │ │ │ │ ├── DeviceSpecificSettingsCustomizer.java │ │ │ │ │ ├── DeviceSpecificSettingsFragment.java │ │ │ │ │ ├── DeviceSpecificSettingsHandler.java │ │ │ │ │ └── DeviceSpecificSettingsScreen.java │ │ │ │ ├── discovery │ │ │ │ │ ├── DiscoveryActivityV2.java │ │ │ │ │ ├── DiscoveryPairingPreferenceActivity.java │ │ │ │ │ ├── GBScanEvent.java │ │ │ │ │ └── GBScanEventProcessor.java │ │ │ │ ├── files │ │ │ │ │ ├── FileManagerActivity.java │ │ │ │ │ └── FileManagerAdapter.java │ │ │ │ ├── loyaltycards │ │ │ │ │ ├── LoyaltyCardsSettingsActivity.java │ │ │ │ │ ├── LoyaltyCardsSettingsConst.java │ │ │ │ │ └── LoyaltyCardsSettingsFragment.java │ │ │ │ ├── musicmanager │ │ │ │ │ └── MusicManagerActivity.java │ │ │ │ ├── welcome │ │ │ │ │ ├── WelcomeActivity.java │ │ │ │ │ ├── WelcomeFragmentDocsSource.java │ │ │ │ │ ├── WelcomeFragmentGetStarted.java │ │ │ │ │ ├── WelcomeFragmentIntro.java │ │ │ │ │ ├── WelcomeFragmentOverview.java │ │ │ │ │ ├── WelcomeFragmentPermissions.java │ │ │ │ │ └── WelcomePageIndicator.java │ │ │ │ ├── widgets │ │ │ │ │ ├── WidgetScreenDetailsActivity.java │ │ │ │ │ ├── WidgetScreenListAdapter.java │ │ │ │ │ └── WidgetScreensListActivity.java │ │ │ │ └── workouts │ │ │ │ │ ├── WorkoutValueFormatter.java │ │ │ │ │ └── entries │ │ │ │ │ ├── ActivitySummaryEntry.java │ │ │ │ │ ├── ActivitySummaryProgressEntry.java │ │ │ │ │ ├── ActivitySummarySimpleEntry.java │ │ │ │ │ ├── ActivitySummaryTableRowEntry.java │ │ │ │ │ └── ActivitySummaryValue.java │ │ │ │ ├── adapter │ │ │ │ ├── AbstractActivityListingAdapter.java │ │ │ │ ├── AbstractItemAdapter.java │ │ │ │ ├── ActivitySummariesAdapter.java │ │ │ │ ├── AppBlacklistAdapter.java │ │ │ │ ├── AppSpecificNotificationSettingsAppListAdapter.java │ │ │ │ ├── DeviceCandidateAdapter.java │ │ │ │ ├── GBAlarmListAdapter.java │ │ │ │ ├── GBContactListAdapter.java │ │ │ │ ├── GBDeviceAdapterv2.java │ │ │ │ ├── GBDeviceAppAdapter.java │ │ │ │ ├── GBReminderListAdapter.java │ │ │ │ ├── GBWorldClockListAdapter.java │ │ │ │ ├── ItemWithDetailsAdapter.java │ │ │ │ ├── MusicListAdapter.java │ │ │ │ ├── NestedFragmentAdapter.java │ │ │ │ ├── RespiratoryRateFragmentAdapter.java │ │ │ │ ├── SleepFragmentAdapter.java │ │ │ │ ├── SpinnerWithIconAdapter.java │ │ │ │ ├── SpinnerWithIconItem.java │ │ │ │ └── StepsFragmentAdapter.java │ │ │ │ ├── capabilities │ │ │ │ ├── GpsCapability.java │ │ │ │ ├── HeartRateCapability.java │ │ │ │ ├── WorkoutDetectionCapability.java │ │ │ │ ├── loyaltycards │ │ │ │ │ ├── BarcodeFormat.java │ │ │ │ │ ├── CatimaContentProvider.java │ │ │ │ │ ├── CatimaManager.java │ │ │ │ │ └── LoyaltyCard.java │ │ │ │ ├── password │ │ │ │ │ └── PasswordCapabilityImpl.java │ │ │ │ └── widgets │ │ │ │ │ ├── WidgetLayout.java │ │ │ │ │ ├── WidgetManager.java │ │ │ │ │ ├── WidgetPart.java │ │ │ │ │ ├── WidgetPartSubtype.java │ │ │ │ │ ├── WidgetScreen.java │ │ │ │ │ └── WidgetType.java │ │ │ │ ├── contentprovider │ │ │ │ └── PebbleContentProvider.java │ │ │ │ ├── database │ │ │ │ ├── AppSpecificNotificationSettingsRepository.java │ │ │ │ ├── DBAccess.java │ │ │ │ ├── DBHandler.java │ │ │ │ ├── DBHelper.java │ │ │ │ ├── DBOpenHelper.java │ │ │ │ ├── DBUpdateScript.java │ │ │ │ ├── PeriodicExporter.java │ │ │ │ └── schema │ │ │ │ │ ├── GadgetbridgeUpdate_14.java │ │ │ │ │ ├── GadgetbridgeUpdate_15.java │ │ │ │ │ ├── GadgetbridgeUpdate_17.java │ │ │ │ │ ├── GadgetbridgeUpdate_22.java │ │ │ │ │ ├── GadgetbridgeUpdate_23.java │ │ │ │ │ ├── GadgetbridgeUpdate_24.java │ │ │ │ │ ├── GadgetbridgeUpdate_26.java │ │ │ │ │ ├── GadgetbridgeUpdate_27.java │ │ │ │ │ ├── GadgetbridgeUpdate_29.java │ │ │ │ │ ├── GadgetbridgeUpdate_30.java │ │ │ │ │ ├── GadgetbridgeUpdate_35.java │ │ │ │ │ ├── GadgetbridgeUpdate_42.java │ │ │ │ │ ├── GadgetbridgeUpdate_44.java │ │ │ │ │ ├── GadgetbridgeUpdate_45.java │ │ │ │ │ ├── GadgetbridgeUpdate_51.java │ │ │ │ │ ├── GadgetbridgeUpdate_62.java │ │ │ │ │ ├── GadgetbridgeUpdate_66.java │ │ │ │ │ ├── GadgetbridgeUpdate_71.java │ │ │ │ │ ├── GadgetbridgeUpdate_72.java │ │ │ │ │ ├── GadgetbridgeUpdate_73.java │ │ │ │ │ ├── GadgetbridgeUpdate_79.java │ │ │ │ │ ├── GadgetbridgeUpdate_80.java │ │ │ │ │ ├── GadgetbridgeUpdate_83.java │ │ │ │ │ ├── GadgetbridgeUpdate_84.java │ │ │ │ │ ├── GadgetbridgeUpdate_85.java │ │ │ │ │ ├── GadgetbridgeUpdate_89.java │ │ │ │ │ └── SchemaMigration.java │ │ │ │ ├── deviceevents │ │ │ │ ├── GBDeviceEvent.java │ │ │ │ ├── GBDeviceEventAppInfo.java │ │ │ │ ├── GBDeviceEventAppManagement.java │ │ │ │ ├── GBDeviceEventAppMessage.java │ │ │ │ ├── GBDeviceEventBatteryInfo.java │ │ │ │ ├── GBDeviceEventCallControl.java │ │ │ │ ├── GBDeviceEventCameraRemote.java │ │ │ │ ├── GBDeviceEventDisplayMessage.java │ │ │ │ ├── GBDeviceEventFindPhone.java │ │ │ │ ├── GBDeviceEventFmFrequency.java │ │ │ │ ├── GBDeviceEventLEDColor.java │ │ │ │ ├── GBDeviceEventMusicControl.java │ │ │ │ ├── GBDeviceEventNotificationControl.java │ │ │ │ ├── GBDeviceEventScreenshot.java │ │ │ │ ├── GBDeviceEventSendBytes.java │ │ │ │ ├── GBDeviceEventSilentMode.java │ │ │ │ ├── GBDeviceEventSleepStateDetection.java │ │ │ │ ├── GBDeviceEventUpdateDeviceInfo.java │ │ │ │ ├── GBDeviceEventUpdateDeviceState.java │ │ │ │ ├── GBDeviceEventUpdatePreferences.java │ │ │ │ ├── GBDeviceEventVersionInfo.java │ │ │ │ ├── GBDeviceEventWearState.java │ │ │ │ ├── GBDeviceMusicData.java │ │ │ │ ├── GBDeviceMusicUpdate.java │ │ │ │ └── pebble │ │ │ │ │ └── GBDeviceEventDataLogging.java │ │ │ │ ├── devices │ │ │ │ ├── AbstractBLClassicDeviceCoordinator.java │ │ │ │ ├── AbstractBLEDeviceCoordinator.java │ │ │ │ ├── AbstractDeviceCoordinator.java │ │ │ │ ├── AbstractSampleProvider.java │ │ │ │ ├── AbstractSampleToTimeSampleProvider.java │ │ │ │ ├── AbstractTimeSampleProvider.java │ │ │ │ ├── DefaultRestingMetabolicRateProvider.java │ │ │ │ ├── DeviceCoordinator.java │ │ │ │ ├── DeviceManager.java │ │ │ │ ├── EventHandler.java │ │ │ │ ├── HeartPulseSampleProvider.java │ │ │ │ ├── InstallHandler.java │ │ │ │ ├── PendingFileProvider.java │ │ │ │ ├── SampleProvider.java │ │ │ │ ├── SleepAsAndroidFeature.java │ │ │ │ ├── TimeSampleProvider.java │ │ │ │ ├── UnknownDeviceCoordinator.java │ │ │ │ ├── Vo2MaxSampleProvider.java │ │ │ │ ├── WorkoutVo2MaxSampleProvider.java │ │ │ │ ├── amazfitbip │ │ │ │ │ └── BipActivitySummary.java │ │ │ │ ├── asteroidos │ │ │ │ │ ├── AsteroidOSConstants.java │ │ │ │ │ ├── AsteroidOSDeviceCoordinator.java │ │ │ │ │ ├── AsteroidOSMediaCommand.java │ │ │ │ │ ├── AsteroidOSNotification.java │ │ │ │ │ └── AsteroidOSWeather.java │ │ │ │ ├── bandwpseries │ │ │ │ │ └── BandWPSeriesDeviceCoordinator.java │ │ │ │ ├── banglejs │ │ │ │ │ ├── AppsManagementActivity.java │ │ │ │ │ ├── BangleJSActivityPoint.java │ │ │ │ │ ├── BangleJSConstants.java │ │ │ │ │ ├── BangleJSCoordinator.java │ │ │ │ │ ├── BangleJSSampleProvider.java │ │ │ │ │ ├── BangleJSSettingsCustomizer.java │ │ │ │ │ └── BangleJSWorkoutParser.java │ │ │ │ ├── binary_sensor │ │ │ │ │ ├── activity │ │ │ │ │ │ └── DataActivity.java │ │ │ │ │ └── coordinator │ │ │ │ │ │ └── BinarySensorCoordinator.java │ │ │ │ ├── casio │ │ │ │ │ ├── Casio2C2DDeviceCoordinator.java │ │ │ │ │ ├── CasioConstants.java │ │ │ │ │ ├── CasioDeviceCoordinator.java │ │ │ │ │ ├── ecbs100 │ │ │ │ │ │ └── CasioECBS100DeviceCoordinator.java │ │ │ │ │ ├── gb6900 │ │ │ │ │ │ └── CasioGB6900DeviceCoordinator.java │ │ │ │ │ ├── gbx100 │ │ │ │ │ │ ├── CasioGBX100DeviceCoordinator.java │ │ │ │ │ │ └── CasioGBX100SampleProvider.java │ │ │ │ │ └── gwb5600 │ │ │ │ │ │ ├── CasioGMWB5000DeviceCoordinator.java │ │ │ │ │ │ └── CasioGWB5600DeviceCoordinator.java │ │ │ │ ├── cmfwatchpro │ │ │ │ │ ├── CmfWatchPro2Coordinator.java │ │ │ │ │ ├── CmfWatchProCoordinator.java │ │ │ │ │ ├── CmfWatchProSettingsCustomizer.java │ │ │ │ │ ├── samples │ │ │ │ │ │ ├── CmfActivitySampleProvider.java │ │ │ │ │ │ ├── CmfHeartRateSampleProvider.java │ │ │ │ │ │ ├── CmfSleepSessionSampleProvider.java │ │ │ │ │ │ ├── CmfSleepStageSampleProvider.java │ │ │ │ │ │ ├── CmfSpo2SampleProvider.java │ │ │ │ │ │ ├── CmfStressSampleProvider.java │ │ │ │ │ │ └── CmfWorkoutGpsSampleProvider.java │ │ │ │ │ └── workout │ │ │ │ │ │ └── CmfWorkoutSummaryParser.java │ │ │ │ ├── colmi │ │ │ │ │ ├── AbstractColmiR0xCoordinator.java │ │ │ │ │ ├── ColmiR02Coordinator.java │ │ │ │ │ ├── ColmiR03Coordinator.java │ │ │ │ │ ├── ColmiR06Coordinator.java │ │ │ │ │ ├── ColmiR09Coordinator.java │ │ │ │ │ ├── ColmiR0xConstants.java │ │ │ │ │ ├── ColmiR0xPacketHandler.java │ │ │ │ │ ├── ColmiR10Coordinator.java │ │ │ │ │ └── samples │ │ │ │ │ │ ├── ColmiActivitySampleProvider.java │ │ │ │ │ │ ├── ColmiHeartRateSampleProvider.java │ │ │ │ │ │ ├── ColmiHrvSummarySampleProvider.java │ │ │ │ │ │ ├── ColmiHrvValueSampleProvider.java │ │ │ │ │ │ ├── ColmiSleepSessionSampleProvider.java │ │ │ │ │ │ ├── ColmiSleepStageSampleProvider.java │ │ │ │ │ │ ├── ColmiSpo2SampleProvider.java │ │ │ │ │ │ └── ColmiStressSampleProvider.java │ │ │ │ ├── cycling_sensor │ │ │ │ │ ├── activity │ │ │ │ │ │ └── CyclingLiveDataActivity.java │ │ │ │ │ ├── coordinator │ │ │ │ │ │ └── CyclingSensorCoordinator.java │ │ │ │ │ └── db │ │ │ │ │ │ └── CyclingSampleProvider.java │ │ │ │ ├── divoom │ │ │ │ │ ├── PixooCoordinator.java │ │ │ │ │ └── PixooInstallHandler.java │ │ │ │ ├── domyos │ │ │ │ │ └── DomyosT540Coordinator.java │ │ │ │ ├── femometer │ │ │ │ │ ├── FemometerVinca2DeviceCoordinator.java │ │ │ │ │ └── FemometerVinca2SampleProvider.java │ │ │ │ ├── fitpro │ │ │ │ │ ├── FitProConstants.java │ │ │ │ │ ├── FitProDeviceCoordinator.java │ │ │ │ │ ├── FitProSampleProvider.java │ │ │ │ │ └── colacao │ │ │ │ │ │ ├── ColaCao21Coordinator.java │ │ │ │ │ │ └── ColaCao23Coordinator.java │ │ │ │ ├── flipper │ │ │ │ │ └── zero │ │ │ │ │ │ └── FlipperZeroCoordinator.java │ │ │ │ ├── galaxy_buds │ │ │ │ │ ├── GalaxyBuds2DeviceCoordinator.java │ │ │ │ │ ├── GalaxyBuds2ProDeviceCoordinator.java │ │ │ │ │ ├── GalaxyBudsDeviceCoordinator.java │ │ │ │ │ ├── GalaxyBudsGenericCoordinator.java │ │ │ │ │ ├── GalaxyBudsLiveDeviceCoordinator.java │ │ │ │ │ ├── GalaxyBudsProDeviceCoordinator.java │ │ │ │ │ └── GalaxyBudsSettingsCustomizer.java │ │ │ │ ├── garmin │ │ │ │ │ ├── GarminActivitySampleProvider.java │ │ │ │ │ ├── GarminBodyEnergySampleProvider.java │ │ │ │ │ ├── GarminCoordinator.java │ │ │ │ │ ├── GarminEventSampleProvider.java │ │ │ │ │ ├── GarminFitFileInstallHandler.java │ │ │ │ │ ├── GarminGpxRouteInstallHandler.java │ │ │ │ │ ├── GarminHeartRateRestingSampleProvider.java │ │ │ │ │ ├── GarminHrvSummarySampleProvider.java │ │ │ │ │ ├── GarminHrvValueSampleProvider.java │ │ │ │ │ ├── GarminIntensityMinutesSampleProvider.java │ │ │ │ │ ├── GarminPaiSampleProvider.java │ │ │ │ │ ├── GarminPreferences.java │ │ │ │ │ ├── GarminRealtimeSettingsActivity.java │ │ │ │ │ ├── GarminRealtimeSettingsFragment.java │ │ │ │ │ ├── GarminRespiratoryRateSampleProvider.java │ │ │ │ │ ├── GarminRestingMetabolicRateSampleProvider.java │ │ │ │ │ ├── GarminSettingsCustomizer.java │ │ │ │ │ ├── GarminSleepStageSampleProvider.java │ │ │ │ │ ├── GarminSleepStatsSampleProvider.java │ │ │ │ │ ├── GarminSpo2SampleProvider.java │ │ │ │ │ ├── GarminStressSampleProvider.java │ │ │ │ │ ├── GarminWorkoutParser.java │ │ │ │ │ └── watches │ │ │ │ │ │ ├── enduro │ │ │ │ │ │ └── GarminEnduro3Coordinator.java │ │ │ │ │ │ ├── epix │ │ │ │ │ │ └── GarminEpixProCoordinator.java │ │ │ │ │ │ ├── fenix │ │ │ │ │ │ ├── GarminFenix5Coordinator.java │ │ │ │ │ │ ├── GarminFenix5PlusCoordinator.java │ │ │ │ │ │ ├── GarminFenix5XPlusCoordinator.java │ │ │ │ │ │ ├── GarminFenix6Coordinator.java │ │ │ │ │ │ ├── GarminFenix6SProCoordinator.java │ │ │ │ │ │ ├── GarminFenix6SSapphireCoordinator.java │ │ │ │ │ │ ├── GarminFenix6SapphireCoordinator.java │ │ │ │ │ │ ├── GarminFenix7Coordinator.java │ │ │ │ │ │ ├── GarminFenix7ProCoordinator.java │ │ │ │ │ │ ├── GarminFenix7SCoordinator.java │ │ │ │ │ │ ├── GarminFenix7XCoordinator.java │ │ │ │ │ │ └── GarminFenix8Coordinator.java │ │ │ │ │ │ ├── forerunner │ │ │ │ │ │ ├── GarminForerunner165Coordinator.java │ │ │ │ │ │ ├── GarminForerunner235Coordinator.java │ │ │ │ │ │ ├── GarminForerunner245Coordinator.java │ │ │ │ │ │ ├── GarminForerunner245MusicCoordinator.java │ │ │ │ │ │ ├── GarminForerunner255Coordinator.java │ │ │ │ │ │ ├── GarminForerunner255MusicCoordinator.java │ │ │ │ │ │ ├── GarminForerunner255SCoordinator.java │ │ │ │ │ │ ├── GarminForerunner255SMusicCoordinator.java │ │ │ │ │ │ ├── GarminForerunner265Coordinator.java │ │ │ │ │ │ ├── GarminForerunner265SCoordinator.java │ │ │ │ │ │ ├── GarminForerunner55Coordinator.java │ │ │ │ │ │ ├── GarminForerunner620Coordinator.java │ │ │ │ │ │ ├── GarminForerunner955Coordinator.java │ │ │ │ │ │ └── GarminForerunner965Coordinator.java │ │ │ │ │ │ ├── instinct │ │ │ │ │ │ ├── GarminInstinct2Coordinator.java │ │ │ │ │ │ ├── GarminInstinct2SCoordinator.java │ │ │ │ │ │ ├── GarminInstinct2SSolarCoordinator.java │ │ │ │ │ │ ├── GarminInstinct2SolTacCoordinator.java │ │ │ │ │ │ ├── GarminInstinct2SolarCoordinator.java │ │ │ │ │ │ ├── GarminInstinct2XSolarCoordinator.java │ │ │ │ │ │ ├── GarminInstinctCoordinator.java │ │ │ │ │ │ ├── GarminInstinctCrossoverCoordinator.java │ │ │ │ │ │ └── GarminInstinctSolarCoordinator.java │ │ │ │ │ │ ├── swim │ │ │ │ │ │ └── GarminSwim2Coordinator.java │ │ │ │ │ │ ├── venu │ │ │ │ │ │ ├── GarminVenu2Coordinator.java │ │ │ │ │ │ ├── GarminVenu2PlusCoordinator.java │ │ │ │ │ │ ├── GarminVenu2SCoordinator.java │ │ │ │ │ │ ├── GarminVenu3Coordinator.java │ │ │ │ │ │ ├── GarminVenu3SCoordinator.java │ │ │ │ │ │ ├── GarminVenuCoordinator.java │ │ │ │ │ │ ├── GarminVenuSq2Coordinator.java │ │ │ │ │ │ └── GarminVenuSqCoordinator.java │ │ │ │ │ │ ├── vivoactive │ │ │ │ │ │ ├── GarminVivoActive3Coordinator.java │ │ │ │ │ │ ├── GarminVivoActive4Coordinator.java │ │ │ │ │ │ ├── GarminVivoActive4SCoordinator.java │ │ │ │ │ │ └── GarminVivoActive5Coordinator.java │ │ │ │ │ │ ├── vivomove │ │ │ │ │ │ ├── GarminVivomoveHrCoordinator.java │ │ │ │ │ │ ├── GarminVivomoveStyleCoordinator.java │ │ │ │ │ │ └── GarminVivomoveTrendCoordinator.java │ │ │ │ │ │ ├── vivosmart │ │ │ │ │ │ └── GarminVivosmart5Coordinator.java │ │ │ │ │ │ └── vivosport │ │ │ │ │ │ └── GarminVivosportCoordinator.java │ │ │ │ ├── hama │ │ │ │ │ └── fit6900 │ │ │ │ │ │ ├── HamaFit6900Constants.java │ │ │ │ │ │ ├── HamaFit6900DeviceCoordinator.java │ │ │ │ │ │ └── Message.java │ │ │ │ ├── hplus │ │ │ │ │ ├── EXRIZUK8Coordinator.java │ │ │ │ │ ├── HPlusConstants.java │ │ │ │ │ ├── HPlusCoordinator.java │ │ │ │ │ ├── HPlusHealthSampleProvider.java │ │ │ │ │ ├── HPlusWeatherCode.java │ │ │ │ │ ├── MakibesF68Coordinator.java │ │ │ │ │ ├── Q8Coordinator.java │ │ │ │ │ └── SG2Coordinator.java │ │ │ │ ├── huami │ │ │ │ │ ├── ActivateDisplayOnLift.java │ │ │ │ │ ├── ActivateDisplayOnLiftSensitivity.java │ │ │ │ │ ├── AlwaysOnDisplay.java │ │ │ │ │ ├── DisconnectNotificationSetting.java │ │ │ │ │ ├── Huami2021Service.java │ │ │ │ │ ├── HuamiActivitySummaryParser.java │ │ │ │ │ ├── HuamiConst.java │ │ │ │ │ ├── HuamiCoordinator.java │ │ │ │ │ ├── HuamiExtendedSampleProvider.java │ │ │ │ │ ├── HuamiFWHelper.java │ │ │ │ │ ├── HuamiHeartRateManualSampleProvider.java │ │ │ │ │ ├── HuamiHeartRateMaxSampleProvider.java │ │ │ │ │ ├── HuamiHeartRateRestingSampleProvider.java │ │ │ │ │ ├── HuamiPaiSampleProvider.java │ │ │ │ │ ├── HuamiService.java │ │ │ │ │ ├── HuamiSettingsCustomizer.java │ │ │ │ │ ├── HuamiSleepRespiratoryRateSampleProvider.java │ │ │ │ │ ├── HuamiSpo2SampleProvider.java │ │ │ │ │ ├── HuamiStressSampleProvider.java │ │ │ │ │ ├── HuamiWeatherConditions.java │ │ │ │ │ ├── amazfitactive │ │ │ │ │ │ └── AmazfitActiveCoordinator.java │ │ │ │ │ ├── amazfitactiveedge │ │ │ │ │ │ └── AmazfitActiveEdgeCoordinator.java │ │ │ │ │ ├── amazfitbalance │ │ │ │ │ │ └── AmazfitBalanceCoordinator.java │ │ │ │ │ ├── amazfitband5 │ │ │ │ │ │ ├── AmazfitBand5Coordinator.java │ │ │ │ │ │ ├── AmazfitBand5FWHelper.java │ │ │ │ │ │ └── AmazfitBand5FWInstallHandler.java │ │ │ │ │ ├── amazfitband7 │ │ │ │ │ │ └── AmazfitBand7Coordinator.java │ │ │ │ │ ├── amazfitbip │ │ │ │ │ │ ├── AmazfitBipCoordinator.java │ │ │ │ │ │ ├── AmazfitBipFWHelper.java │ │ │ │ │ │ ├── AmazfitBipFWInstallHandler.java │ │ │ │ │ │ ├── AmazfitBipLiteCoordinator.java │ │ │ │ │ │ ├── AmazfitBipLiteFWHelper.java │ │ │ │ │ │ ├── AmazfitBipLiteFWInstallHandler.java │ │ │ │ │ │ └── AmazfitBipService.java │ │ │ │ │ ├── amazfitbip3 │ │ │ │ │ │ ├── AmazfitBip3Coordinator.java │ │ │ │ │ │ ├── AmazfitBip3FWHelper.java │ │ │ │ │ │ └── AmazfitBip3FWInstallHandler.java │ │ │ │ │ ├── amazfitbip3pro │ │ │ │ │ │ ├── AmazfitBip3ProCoordinator.java │ │ │ │ │ │ ├── AmazfitBip3ProFWHelper.java │ │ │ │ │ │ └── AmazfitBip3ProFWInstallHandler.java │ │ │ │ │ ├── amazfitbip5 │ │ │ │ │ │ └── AmazfitBip5Coordinator.java │ │ │ │ │ ├── amazfitbip5unity │ │ │ │ │ │ └── AmazfitBip5UnityCoordinator.java │ │ │ │ │ ├── amazfitbips │ │ │ │ │ │ ├── AmazfitBipSCoordinator.java │ │ │ │ │ │ ├── AmazfitBipSFWHelper.java │ │ │ │ │ │ ├── AmazfitBipSFWInstallHandler.java │ │ │ │ │ │ ├── AmazfitBipSLiteCoordinator.java │ │ │ │ │ │ ├── AmazfitBipSLiteFWHelper.java │ │ │ │ │ │ └── AmazfitBipSLiteFWInstallHandler.java │ │ │ │ │ ├── amazfitbipu │ │ │ │ │ │ ├── AmazfitBipUCoordinator.java │ │ │ │ │ │ ├── AmazfitBipUFWHelper.java │ │ │ │ │ │ └── AmazfitBipUFWInstallHandler.java │ │ │ │ │ ├── amazfitbipupro │ │ │ │ │ │ ├── AmazfitBipUProCoordinator.java │ │ │ │ │ │ ├── AmazfitBipUProFWHelper.java │ │ │ │ │ │ └── AmazfitBipUProFWInstallHandler.java │ │ │ │ │ ├── amazfitcheetahpro │ │ │ │ │ │ └── AmazfitCheetahProCoordinator.java │ │ │ │ │ ├── amazfitcheetahround │ │ │ │ │ │ └── AmazfitCheetahRoundCoordinator.java │ │ │ │ │ ├── amazfitcheetahsquare │ │ │ │ │ │ └── AmazfitCheetahSquareCoordinator.java │ │ │ │ │ ├── amazfitcor │ │ │ │ │ │ ├── AmazfitCorCoordinator.java │ │ │ │ │ │ ├── AmazfitCorFWHelper.java │ │ │ │ │ │ └── AmazfitCorFWInstallHandler.java │ │ │ │ │ ├── amazfitcor2 │ │ │ │ │ │ ├── AmazfitCor2Coordinator.java │ │ │ │ │ │ ├── AmazfitCor2FWHelper.java │ │ │ │ │ │ └── AmazfitCor2FWInstallHandler.java │ │ │ │ │ ├── amazfitfalcon │ │ │ │ │ │ └── AmazfitFalconCoordinator.java │ │ │ │ │ ├── amazfitgtr │ │ │ │ │ │ ├── AmazfitGTRCoordinator.java │ │ │ │ │ │ ├── AmazfitGTRFWHelper.java │ │ │ │ │ │ ├── AmazfitGTRFWInstallHandler.java │ │ │ │ │ │ ├── AmazfitGTRLiteCoordinator.java │ │ │ │ │ │ ├── AmazfitGTRLiteFWHelper.java │ │ │ │ │ │ └── AmazfitGTRLiteFWInstallHandler.java │ │ │ │ │ ├── amazfitgtr2 │ │ │ │ │ │ ├── AmazfitGTR2Coordinator.java │ │ │ │ │ │ ├── AmazfitGTR2FWHelper.java │ │ │ │ │ │ ├── AmazfitGTR2FWInstallHandler.java │ │ │ │ │ │ ├── AmazfitGTR2eCoordinator.java │ │ │ │ │ │ ├── AmazfitGTR2eFWHelper.java │ │ │ │ │ │ └── AmazfitGTR2eFWInstallHandler.java │ │ │ │ │ ├── amazfitgtr3 │ │ │ │ │ │ └── AmazfitGTR3Coordinator.java │ │ │ │ │ ├── amazfitgtr3pro │ │ │ │ │ │ └── AmazfitGTR3ProCoordinator.java │ │ │ │ │ ├── amazfitgtr4 │ │ │ │ │ │ └── AmazfitGTR4Coordinator.java │ │ │ │ │ ├── amazfitgtrmini │ │ │ │ │ │ └── AmazfitGTRMiniCoordinator.java │ │ │ │ │ ├── amazfitgts │ │ │ │ │ │ ├── AmazfitGTSCoordinator.java │ │ │ │ │ │ ├── AmazfitGTSFWHelper.java │ │ │ │ │ │ └── AmazfitGTSFWInstallHandler.java │ │ │ │ │ ├── amazfitgts2 │ │ │ │ │ │ ├── AmazfitGTS2Coordinator.java │ │ │ │ │ │ ├── AmazfitGTS2FWHelper.java │ │ │ │ │ │ ├── AmazfitGTS2FWInstallHandler.java │ │ │ │ │ │ ├── AmazfitGTS2MiniCoordinator.java │ │ │ │ │ │ ├── AmazfitGTS2MiniFWHelper.java │ │ │ │ │ │ ├── AmazfitGTS2MiniFWInstallHandler.java │ │ │ │ │ │ ├── AmazfitGTS2eCoordinator.java │ │ │ │ │ │ ├── AmazfitGTS2eFWHelper.java │ │ │ │ │ │ └── AmazfitGTS2eFWInstallHandler.java │ │ │ │ │ ├── amazfitgts3 │ │ │ │ │ │ └── AmazfitGTS3Coordinator.java │ │ │ │ │ ├── amazfitgts4 │ │ │ │ │ │ └── AmazfitGTS4Coordinator.java │ │ │ │ │ ├── amazfitgts4mini │ │ │ │ │ │ └── AmazfitGTS4MiniCoordinator.java │ │ │ │ │ ├── amazfitneo │ │ │ │ │ │ ├── AmazfitNeoCoordinator.java │ │ │ │ │ │ ├── AmazfitNeoFWHelper.java │ │ │ │ │ │ └── AmazfitNeoFWInstallHandler.java │ │ │ │ │ ├── amazfitpop │ │ │ │ │ │ ├── AmazfitPopCoordinator.java │ │ │ │ │ │ ├── AmazfitPopFWHelper.java │ │ │ │ │ │ └── AmazfitPopFWInstallHandler.java │ │ │ │ │ ├── amazfitpoppro │ │ │ │ │ │ ├── AmazfitPopProCoordinator.java │ │ │ │ │ │ ├── AmazfitPopProFWHelper.java │ │ │ │ │ │ └── AmazfitPopProFWInstallHandler.java │ │ │ │ │ ├── amazfittrex │ │ │ │ │ │ ├── AmazfitTRexCoordinator.java │ │ │ │ │ │ ├── AmazfitTRexFWHelper.java │ │ │ │ │ │ └── AmazfitTRexFWInstallHandler.java │ │ │ │ │ ├── amazfittrex2 │ │ │ │ │ │ └── AmazfitTRex2Coordinator.java │ │ │ │ │ ├── amazfittrex3 │ │ │ │ │ │ └── AmazfitTRex3Coordinator.java │ │ │ │ │ ├── amazfittrexpro │ │ │ │ │ │ ├── AmazfitTRexProCoordinator.java │ │ │ │ │ │ ├── AmazfitTRexProFWHelper.java │ │ │ │ │ │ └── AmazfitTRexProFWInstallHandler.java │ │ │ │ │ ├── amazfittrexultra │ │ │ │ │ │ └── AmazfitTRexUltraCoordinator.java │ │ │ │ │ ├── amazfitvergel │ │ │ │ │ │ ├── AmazfitVergeLCoordinator.java │ │ │ │ │ │ ├── AmazfitVergeLFWHelper.java │ │ │ │ │ │ └── AmazfitVergeLFWInstallHandler.java │ │ │ │ │ ├── amazfitx │ │ │ │ │ │ ├── AmazfitXCoordinator.java │ │ │ │ │ │ ├── AmazfitXFWHelper.java │ │ │ │ │ │ └── AmazfitXFWInstallHandler.java │ │ │ │ │ ├── miband2 │ │ │ │ │ │ ├── MiBand2Coordinator.java │ │ │ │ │ │ ├── MiBand2FWHelper.java │ │ │ │ │ │ ├── MiBand2FWInstallHandler.java │ │ │ │ │ │ └── MiBand2HRXCoordinator.java │ │ │ │ │ ├── miband3 │ │ │ │ │ │ ├── MiBand3Coordinator.java │ │ │ │ │ │ ├── MiBand3FWHelper.java │ │ │ │ │ │ ├── MiBand3FWInstallHandler.java │ │ │ │ │ │ └── MiBand3Service.java │ │ │ │ │ ├── miband4 │ │ │ │ │ │ ├── MiBand4Coordinator.java │ │ │ │ │ │ ├── MiBand4FWHelper.java │ │ │ │ │ │ └── MiBand4FWInstallHandler.java │ │ │ │ │ ├── miband5 │ │ │ │ │ │ ├── MiBand5Coordinator.java │ │ │ │ │ │ ├── MiBand5FWHelper.java │ │ │ │ │ │ └── MiBand5FWInstallHandler.java │ │ │ │ │ ├── miband6 │ │ │ │ │ │ ├── MiBand6Coordinator.java │ │ │ │ │ │ ├── MiBand6FWHelper.java │ │ │ │ │ │ └── MiBand6FWInstallHandler.java │ │ │ │ │ ├── miband7 │ │ │ │ │ │ └── MiBand7Coordinator.java │ │ │ │ │ ├── zeppe │ │ │ │ │ │ ├── ZeppECoordinator.java │ │ │ │ │ │ ├── ZeppEFWHelper.java │ │ │ │ │ │ └── ZeppEFWInstallHandler.java │ │ │ │ │ └── zeppos │ │ │ │ │ │ ├── ZeppOsActivitySummaryParser.java │ │ │ │ │ │ ├── ZeppOsAgpsInstallHandler.java │ │ │ │ │ │ ├── ZeppOsCoordinator.java │ │ │ │ │ │ ├── ZeppOsFwHelper.java │ │ │ │ │ │ ├── ZeppOsGpxRouteInstallHandler.java │ │ │ │ │ │ └── ZeppOsSettingsCustomizer.java │ │ │ │ ├── huawei │ │ │ │ │ ├── HeartRateZonesConfig.java │ │ │ │ │ ├── HuaweiBRCoordinator.java │ │ │ │ │ ├── HuaweiBinAppParser.java │ │ │ │ │ ├── HuaweiConstants.java │ │ │ │ │ ├── HuaweiCoordinator.java │ │ │ │ │ ├── HuaweiCoordinatorSupplier.java │ │ │ │ │ ├── HuaweiCrypto.java │ │ │ │ │ ├── HuaweiDictTypes.java │ │ │ │ │ ├── HuaweiFreebudsCoordinator.java │ │ │ │ │ ├── HuaweiGpsParser.java │ │ │ │ │ ├── HuaweiInstallHandler.java │ │ │ │ │ ├── HuaweiLECoordinator.java │ │ │ │ │ ├── HuaweiMusicUtils.java │ │ │ │ │ ├── HuaweiPacket.java │ │ │ │ │ ├── HuaweiReportThreshold.java │ │ │ │ │ ├── HuaweiRunPaceConfig.java │ │ │ │ │ ├── HuaweiSampleProvider.java │ │ │ │ │ ├── HuaweiSettingsCustomizer.java │ │ │ │ │ ├── HuaweiSpo2SampleProvider.java │ │ │ │ │ ├── HuaweiSportHRZones.java │ │ │ │ │ ├── HuaweiTLV.java │ │ │ │ │ ├── HuaweiTemperatureSampleProvider.java │ │ │ │ │ ├── HuaweiTruSleepParser.java │ │ │ │ │ ├── HuaweiUtil.java │ │ │ │ │ ├── freebuds5i │ │ │ │ │ │ └── HuaweiFreebuds5iCoordinator.java │ │ │ │ │ ├── honorband3 │ │ │ │ │ │ └── HonorBand3Coordinator.java │ │ │ │ │ ├── honorband4 │ │ │ │ │ │ └── HonorBand4Coordinator.java │ │ │ │ │ ├── honorband5 │ │ │ │ │ │ └── HonorBand5Coordinator.java │ │ │ │ │ ├── honorband6 │ │ │ │ │ │ └── HonorBand6Coordinator.java │ │ │ │ │ ├── honorband7 │ │ │ │ │ │ └── HonorBand7Coordinator.java │ │ │ │ │ ├── honormagicwatch2 │ │ │ │ │ │ └── HonorMagicWatch2Coordinator.java │ │ │ │ │ ├── honorwatchgs3 │ │ │ │ │ │ └── HonorWatchGS3Coordinator.java │ │ │ │ │ ├── honorwatchgspro │ │ │ │ │ │ └── HonorWatchGSProCoordinator.java │ │ │ │ │ ├── huaweiband2pro │ │ │ │ │ │ └── HuaweiBand2ProCoordinator.java │ │ │ │ │ ├── huaweiband3pro │ │ │ │ │ │ └── HuaweiBand3ProCoordinator.java │ │ │ │ │ ├── huaweiband4pro │ │ │ │ │ │ └── HuaweiBand4ProCoordinator.java │ │ │ │ │ ├── huaweiband6 │ │ │ │ │ │ └── HuaweiBand6Coordinator.java │ │ │ │ │ ├── huaweiband7 │ │ │ │ │ │ └── HuaweiBand7Coordinator.java │ │ │ │ │ ├── huaweiband8 │ │ │ │ │ │ └── HuaweiBand8Coordinator.java │ │ │ │ │ ├── huaweiband9 │ │ │ │ │ │ └── HuaweiBand9Coordinator.java │ │ │ │ │ ├── huaweibandaw70 │ │ │ │ │ │ └── HuaweiBandAw70Coordinator.java │ │ │ │ │ ├── huaweitalkbandb6 │ │ │ │ │ │ └── HuaweiTalkBandB6Coordinator.java │ │ │ │ │ ├── huaweiwatch3 │ │ │ │ │ │ └── HuaweiWatch3Coordinator.java │ │ │ │ │ ├── huaweiwatch4pro │ │ │ │ │ │ └── HuaweiWatch4ProCoordinator.java │ │ │ │ │ ├── huaweiwatchd2 │ │ │ │ │ │ └── HuaweiWatchD2Coordinator.java │ │ │ │ │ ├── huaweiwatchfit │ │ │ │ │ │ └── HuaweiWatchFitCoordinator.java │ │ │ │ │ ├── huaweiwatchfit2 │ │ │ │ │ │ └── HuaweiWatchFit2Coordinator.java │ │ │ │ │ ├── huaweiwatchfit3 │ │ │ │ │ │ └── HuaweiWatchFit3Coordinator.java │ │ │ │ │ ├── huaweiwatchgt │ │ │ │ │ │ └── HuaweiWatchGTCoordinator.java │ │ │ │ │ ├── huaweiwatchgt2 │ │ │ │ │ │ └── HuaweiWatchGT2Coordinator.java │ │ │ │ │ ├── huaweiwatchgt2e │ │ │ │ │ │ └── HuaweiWatchGT2eCoordinator.java │ │ │ │ │ ├── huaweiwatchgt3 │ │ │ │ │ │ └── HuaweiWatchGT3Coordinator.java │ │ │ │ │ ├── huaweiwatchgt4 │ │ │ │ │ │ └── HuaweiWatchGT4Coordinator.java │ │ │ │ │ ├── huaweiwatchgt5 │ │ │ │ │ │ └── HuaweiWatchGT5Coordinator.java │ │ │ │ │ ├── huaweiwatchgtcyber │ │ │ │ │ │ └── HuaweiWatchGTCyberCoordinator.java │ │ │ │ │ ├── huaweiwatchgtrunner │ │ │ │ │ │ └── HuaweiWatchGTRunnerCoordinator.java │ │ │ │ │ ├── huaweiwatchultimate │ │ │ │ │ │ └── HuaweiWatchUltimateCoordinator.java │ │ │ │ │ └── packets │ │ │ │ │ │ ├── AccountRelated.java │ │ │ │ │ │ ├── Alarms.java │ │ │ │ │ │ ├── App.java │ │ │ │ │ │ ├── Calls.java │ │ │ │ │ │ ├── CameraRemote.java │ │ │ │ │ │ ├── Contacts.java │ │ │ │ │ │ ├── DeviceConfig.java │ │ │ │ │ │ ├── DisconnectNotification.java │ │ │ │ │ │ ├── Earphones.java │ │ │ │ │ │ ├── Ephemeris.java │ │ │ │ │ │ ├── EphemerisFileUpload.java │ │ │ │ │ │ ├── FileDownloadService0A.java │ │ │ │ │ │ ├── FileDownloadService2C.java │ │ │ │ │ │ ├── FileUpload.java │ │ │ │ │ │ ├── FindPhone.java │ │ │ │ │ │ ├── FitnessData.java │ │ │ │ │ │ ├── GpsAndTime.java │ │ │ │ │ │ ├── LocaleConfig.java │ │ │ │ │ │ ├── Menstrual.java │ │ │ │ │ │ ├── MusicControl.java │ │ │ │ │ │ ├── Notifications.java │ │ │ │ │ │ ├── P2P.java │ │ │ │ │ │ ├── Watchface.java │ │ │ │ │ │ ├── Weather.java │ │ │ │ │ │ ├── WorkMode.java │ │ │ │ │ │ └── Workout.java │ │ │ │ ├── id115 │ │ │ │ │ ├── ID115Constants.java │ │ │ │ │ ├── ID115Coordinator.java │ │ │ │ │ └── ID115SampleProvider.java │ │ │ │ ├── idasen │ │ │ │ │ ├── IdasenConstants.java │ │ │ │ │ ├── IdasenControlActivity.java │ │ │ │ │ ├── IdasenCoordinator.java │ │ │ │ │ └── IdasenSettingsCustomizer.java │ │ │ │ ├── itag │ │ │ │ │ ├── ITagConstants.java │ │ │ │ │ └── ITagCoordinator.java │ │ │ │ ├── jyou │ │ │ │ │ ├── BFH16Constants.java │ │ │ │ │ ├── BFH16DeviceCoordinator.java │ │ │ │ │ ├── JYouConstants.java │ │ │ │ │ ├── JYouSampleProvider.java │ │ │ │ │ ├── TeclastH30 │ │ │ │ │ │ └── TeclastH30Coordinator.java │ │ │ │ │ └── y5 │ │ │ │ │ │ └── Y5Coordinator.java │ │ │ │ ├── lefun │ │ │ │ │ ├── BohemicSmartBraceletDeviceCoordinator.java │ │ │ │ │ ├── LefunConstants.java │ │ │ │ │ ├── LefunDeviceCoordinator.java │ │ │ │ │ ├── LefunFeatureSupport.java │ │ │ │ │ ├── LefunSampleProvider.java │ │ │ │ │ ├── VivitarHrBpMonitorActivityTrackerCoordinator.java │ │ │ │ │ └── commands │ │ │ │ │ │ ├── AlarmCommand.java │ │ │ │ │ │ ├── BaseCommand.java │ │ │ │ │ │ ├── Cmd22Command.java │ │ │ │ │ │ ├── Cmd25Command.java │ │ │ │ │ │ ├── FeaturesCommand.java │ │ │ │ │ │ ├── FindDeviceCommand.java │ │ │ │ │ │ ├── FindPhoneCommand.java │ │ │ │ │ │ ├── GetActivityDataCommand.java │ │ │ │ │ │ ├── GetBatteryLevelCommand.java │ │ │ │ │ │ ├── GetFirmwareInfoCommand.java │ │ │ │ │ │ ├── GetPpgDataCommand.java │ │ │ │ │ │ ├── GetSleepDataCommand.java │ │ │ │ │ │ ├── GetSleepTimeCommand.java │ │ │ │ │ │ ├── GetStepsDataCommand.java │ │ │ │ │ │ ├── HydrationReminderIntervalCommand.java │ │ │ │ │ │ ├── NotificationCommand.java │ │ │ │ │ │ ├── PpgResultCommand.java │ │ │ │ │ │ ├── ProfileCommand.java │ │ │ │ │ │ ├── RemoteCameraTriggeredCommand.java │ │ │ │ │ │ ├── RequestBondingCommand.java │ │ │ │ │ │ ├── SedentaryReminderIntervalCommand.java │ │ │ │ │ │ ├── SetLanguageCommand.java │ │ │ │ │ │ ├── SetRemoteCameraCommand.java │ │ │ │ │ │ ├── SettingsCommand.java │ │ │ │ │ │ ├── StartPpgSensingCommand.java │ │ │ │ │ │ ├── TimeCommand.java │ │ │ │ │ │ └── UiPagesCommand.java │ │ │ │ ├── lenovo │ │ │ │ │ ├── DataType.java │ │ │ │ │ ├── LenovoWatchCalibrationActivity.java │ │ │ │ │ ├── LenovoWatchConstants.java │ │ │ │ │ ├── LenovoWatchPairingActivity.java │ │ │ │ │ └── watchxplus │ │ │ │ │ │ ├── WatchXPlusConstants.java │ │ │ │ │ │ ├── WatchXPlusDeviceCoordinator.java │ │ │ │ │ │ └── WatchXPlusSampleProvider.java │ │ │ │ ├── liveview │ │ │ │ │ ├── LiveviewConstants.java │ │ │ │ │ └── LiveviewCoordinator.java │ │ │ │ ├── makibeshr3 │ │ │ │ │ ├── MakibesHR3Constants.java │ │ │ │ │ ├── MakibesHR3Coordinator.java │ │ │ │ │ └── MakibesHR3SampleProvider.java │ │ │ │ ├── marstek │ │ │ │ │ ├── MarstekB2500DeviceCoordinator.java │ │ │ │ │ └── SolarEquipmentStatusActivity.java │ │ │ │ ├── miband │ │ │ │ │ ├── AbstractMiBandFWHelper.java │ │ │ │ │ ├── AbstractMiBandFWInstallHandler.java │ │ │ │ │ ├── AbstractMiBandSampleProvider.java │ │ │ │ │ ├── DateTimeDisplay.java │ │ │ │ │ ├── DoNotDisturb.java │ │ │ │ │ ├── MiBand2SampleProvider.java │ │ │ │ │ ├── MiBandConst.java │ │ │ │ │ ├── MiBandCoordinator.java │ │ │ │ │ ├── MiBandDateConverter.java │ │ │ │ │ ├── MiBandFWHelper.java │ │ │ │ │ ├── MiBandFWInstallHandler.java │ │ │ │ │ ├── MiBandPairingActivity.java │ │ │ │ │ ├── MiBandSampleProvider.java │ │ │ │ │ ├── MiBandService.java │ │ │ │ │ ├── MiBandSettingsCustomizer.java │ │ │ │ │ ├── UserInfo.java │ │ │ │ │ ├── VibrationProfile.java │ │ │ │ │ └── miligatt.txt │ │ │ │ ├── mijia_lywsd │ │ │ │ │ ├── AbstractMijiaLywsdCoordinator.java │ │ │ │ │ ├── MijiaLywsd02Coordinator.java │ │ │ │ │ ├── MijiaLywsd03Coordinator.java │ │ │ │ │ ├── MijiaLywsdSettingsCustomizer.java │ │ │ │ │ ├── MijiaMhoC303Coordinator.java │ │ │ │ │ └── MijiaXmwsdj04Coordinator.java │ │ │ │ ├── miscale │ │ │ │ │ ├── MiCompositionScaleCoordinator.java │ │ │ │ │ ├── MiScaleSampleProvider.java │ │ │ │ │ └── MiSmartScaleCoordinator.java │ │ │ │ ├── moondrop │ │ │ │ │ └── MoondropSpaceTravelCoordinator.java │ │ │ │ ├── no1f1 │ │ │ │ │ ├── No1F1Constants.java │ │ │ │ │ ├── No1F1Coordinator.java │ │ │ │ │ └── No1F1SampleProvider.java │ │ │ │ ├── nothing │ │ │ │ │ ├── AbstractEarCoordinator.java │ │ │ │ │ ├── CmfBudsPro2Coordinator.java │ │ │ │ │ ├── Ear1Coordinator.java │ │ │ │ │ ├── Ear2Coordinator.java │ │ │ │ │ ├── EarSettingsCustomizer.java │ │ │ │ │ └── EarStickCoordinator.java │ │ │ │ ├── nut │ │ │ │ │ ├── NutConstants.java │ │ │ │ │ ├── NutCoordinator.java │ │ │ │ │ └── NutKey.java │ │ │ │ ├── oppo │ │ │ │ │ ├── OppoEncoAir2Coordinator.java │ │ │ │ │ ├── OppoEncoAirCoordinator.java │ │ │ │ │ ├── OppoHeadphonesCoordinator.java │ │ │ │ │ ├── OppoHeadphonesPreferences.java │ │ │ │ │ └── OppoHeadphonesSettingsCustomizer.java │ │ │ │ ├── pebble │ │ │ │ │ ├── PBWInstallHandler.java │ │ │ │ │ ├── PBWReader.java │ │ │ │ │ ├── PebbleColor.java │ │ │ │ │ ├── PebbleCoordinator.java │ │ │ │ │ ├── PebbleHealthSampleProvider.java │ │ │ │ │ ├── PebbleIconID.java │ │ │ │ │ ├── PebbleInstallable.java │ │ │ │ │ ├── PebbleMisfitSampleProvider.java │ │ │ │ │ ├── PebbleMorpheuzSampleProvider.java │ │ │ │ │ ├── PebblePairingActivity.java │ │ │ │ │ ├── PebbleSettingsCustomizer.java │ │ │ │ │ └── STM32CRC.java │ │ │ │ ├── pinetime │ │ │ │ │ ├── InfiniTimeDFUPackage.java │ │ │ │ │ ├── PineTimeActivitySampleProvider.java │ │ │ │ │ ├── PineTimeDFUService.java │ │ │ │ │ ├── PineTimeInstallHandler.java │ │ │ │ │ ├── PineTimeJFConstants.java │ │ │ │ │ ├── PineTimeJFCoordinator.java │ │ │ │ │ └── weather │ │ │ │ │ │ └── WeatherData.java │ │ │ │ ├── qc35 │ │ │ │ │ └── QC35Coordinator.java │ │ │ │ ├── qhybrid │ │ │ │ │ ├── AppsManagementActivity.java │ │ │ │ │ ├── CalibrationActivity.java │ │ │ │ │ ├── CommuteActionsActivity.java │ │ │ │ │ ├── CommuteActionsListAdapter.java │ │ │ │ │ ├── FileManagementActivity.java │ │ │ │ │ ├── FossilAppWriter.java │ │ │ │ │ ├── FossilFileReader.java │ │ │ │ │ ├── FossilHRInstallHandler.java │ │ │ │ │ ├── FossilInstallHandler.java │ │ │ │ │ ├── HRConfigActivity.java │ │ │ │ │ ├── HybridHRActivitySampleProvider.java │ │ │ │ │ ├── HybridHRSpo2SampleProvider.java │ │ │ │ │ ├── HybridHRWatchfaceDesignerActivity.java │ │ │ │ │ ├── HybridHRWatchfaceFactory.java │ │ │ │ │ ├── HybridHRWatchfaceSettings.java │ │ │ │ │ ├── HybridHRWatchfaceSettingsActivity.java │ │ │ │ │ ├── HybridHRWatchfaceWidget.java │ │ │ │ │ ├── HybridHRWatchfaceWidgetActivity.java │ │ │ │ │ ├── HybridHRWidgetPosition.java │ │ │ │ │ ├── ImageEditActivity.java │ │ │ │ │ ├── NotificationConfiguration.java │ │ │ │ │ ├── NotificationHRConfiguration.java │ │ │ │ │ ├── PackageConfigHelper.java │ │ │ │ │ ├── QHybridAppChoserActivity.java │ │ │ │ │ ├── QHybridConfigActivity.java │ │ │ │ │ ├── QHybridConstants.java │ │ │ │ │ ├── QHybridCoordinator.java │ │ │ │ │ ├── QHybridSettingsCustomizer.java │ │ │ │ │ ├── TimePicker.java │ │ │ │ │ └── WidgetSettingsActivity.java │ │ │ │ ├── realme │ │ │ │ │ └── RealmeBudsT110Coordinator.java │ │ │ │ ├── roidmi │ │ │ │ │ ├── Roidmi1Coordinator.java │ │ │ │ │ ├── Roidmi3Coordinator.java │ │ │ │ │ ├── RoidmiConst.java │ │ │ │ │ └── RoidmiCoordinator.java │ │ │ │ ├── scannable │ │ │ │ │ └── ScannableDeviceCoordinator.java │ │ │ │ ├── smaq2oss │ │ │ │ │ ├── SMAQ2OSSConstants.java │ │ │ │ │ ├── SMAQ2OSSCoordinator.java │ │ │ │ │ └── SMAQ2OSSSupport.java │ │ │ │ ├── soflow │ │ │ │ │ └── SoFlowCoordinator.java │ │ │ │ ├── sony │ │ │ │ │ ├── headphones │ │ │ │ │ │ ├── SonyHeadphonesCapabilities.java │ │ │ │ │ │ ├── SonyHeadphonesCoordinator.java │ │ │ │ │ │ ├── SonyHeadphonesSettingsCustomizer.java │ │ │ │ │ │ ├── coordinators │ │ │ │ │ │ │ ├── SonyLinkBudsCoordinator.java │ │ │ │ │ │ │ ├── SonyLinkBudsSCoordinator.java │ │ │ │ │ │ │ ├── SonyWF1000XM3Coordinator.java │ │ │ │ │ │ │ ├── SonyWF1000XM4Coordinator.java │ │ │ │ │ │ │ ├── SonyWF1000XM5Coordinator.java │ │ │ │ │ │ │ ├── SonyWFC500Coordinator.java │ │ │ │ │ │ │ ├── SonyWFC700NCoordinator.java │ │ │ │ │ │ │ ├── SonyWFSP800NCoordinator.java │ │ │ │ │ │ │ ├── SonyWH1000XM2Coordinator.java │ │ │ │ │ │ │ ├── SonyWH1000XM3Coordinator.java │ │ │ │ │ │ │ ├── SonyWH1000XM4Coordinator.java │ │ │ │ │ │ │ ├── SonyWH1000XM5Coordinator.java │ │ │ │ │ │ │ ├── SonyWIC100Coordinator.java │ │ │ │ │ │ │ └── SonyWISP600NCoordinator.java │ │ │ │ │ │ └── prefs │ │ │ │ │ │ │ ├── AdaptiveVolumeControl.java │ │ │ │ │ │ │ ├── AmbientSoundControl.java │ │ │ │ │ │ │ ├── AmbientSoundControlButtonMode.java │ │ │ │ │ │ │ ├── AudioUpsampling.java │ │ │ │ │ │ │ ├── AutomaticPowerOff.java │ │ │ │ │ │ │ ├── ButtonModes.java │ │ │ │ │ │ │ ├── EqualizerCustomBands.java │ │ │ │ │ │ │ ├── EqualizerPreset.java │ │ │ │ │ │ │ ├── PauseWhenTakenOff.java │ │ │ │ │ │ │ ├── QuickAccess.java │ │ │ │ │ │ │ ├── SoundPosition.java │ │ │ │ │ │ │ ├── SpeakToChatConfig.java │ │ │ │ │ │ │ ├── SpeakToChatEnabled.java │ │ │ │ │ │ │ ├── SurroundMode.java │ │ │ │ │ │ │ ├── TouchSensor.java │ │ │ │ │ │ │ ├── VoiceNotifications.java │ │ │ │ │ │ │ └── WideAreaTap.java │ │ │ │ │ └── wena3 │ │ │ │ │ │ ├── SonyWena3ActivitySampleCombiner.java │ │ │ │ │ │ ├── SonyWena3ActivitySampleProvider.java │ │ │ │ │ │ ├── SonyWena3BehaviorSampleProvider.java │ │ │ │ │ │ ├── SonyWena3CaloriesSampleProvider.java │ │ │ │ │ │ ├── SonyWena3Constants.java │ │ │ │ │ │ ├── SonyWena3Coordinator.java │ │ │ │ │ │ ├── SonyWena3EnergySampleProvider.java │ │ │ │ │ │ ├── SonyWena3HeartRateSampleProvider.java │ │ │ │ │ │ ├── SonyWena3SettingKeys.java │ │ │ │ │ │ ├── SonyWena3SettingsCustomizer.java │ │ │ │ │ │ ├── SonyWena3StressSampleProvider.java │ │ │ │ │ │ └── SonyWena3Vo2SampleProvider.java │ │ │ │ ├── sonyswr12 │ │ │ │ │ ├── SonySWR12DeviceCoordinator.java │ │ │ │ │ └── SonySWR12SampleProvider.java │ │ │ │ ├── soundcore │ │ │ │ │ ├── liberty3_pro │ │ │ │ │ │ └── SoundcoreLiberty3ProCoordinator.java │ │ │ │ │ ├── liberty4_nc │ │ │ │ │ │ └── SoundcoreLiberty4NCCoordinator.java │ │ │ │ │ └── motion300 │ │ │ │ │ │ ├── SoundcoreMotion300Coordinator.java │ │ │ │ │ │ └── SoundcoreMotion300SettingsCustomizer.java │ │ │ │ ├── supercars │ │ │ │ │ ├── ControlActivity.java │ │ │ │ │ ├── JoystickView.java │ │ │ │ │ ├── SuperCarsConstants.java │ │ │ │ │ └── SuperCarsCoordinator.java │ │ │ │ ├── test │ │ │ │ │ ├── TestDeviceConst.java │ │ │ │ │ ├── TestDeviceCoordinator.java │ │ │ │ │ ├── TestDeviceRand.java │ │ │ │ │ ├── TestDeviceSpecificSettingsCustomizer.java │ │ │ │ │ ├── TestFeature.java │ │ │ │ │ ├── activity │ │ │ │ │ │ └── TestActivitySummaryParser.java │ │ │ │ │ └── samples │ │ │ │ │ │ ├── AbstractTestSampleProvider.java │ │ │ │ │ │ ├── TestBodyEnergySampleProvider.java │ │ │ │ │ │ ├── TestHrvSummarySampleProvider.java │ │ │ │ │ │ ├── TestHrvValueSampleProvider.java │ │ │ │ │ │ ├── TestPaiSampleProvider.java │ │ │ │ │ │ ├── TestRespiratoryRateSampleProvider.java │ │ │ │ │ │ ├── TestSampleProvider.java │ │ │ │ │ │ ├── TestSpo2SampleProvider.java │ │ │ │ │ │ ├── TestStressSampleProvider.java │ │ │ │ │ │ └── TestTemperatureSampleProvider.java │ │ │ │ ├── tlw64 │ │ │ │ │ ├── TLW64Constants.java │ │ │ │ │ ├── TLW64Coordinator.java │ │ │ │ │ └── TLW64SampleProvider.java │ │ │ │ ├── um25 │ │ │ │ │ ├── Activity │ │ │ │ │ │ └── DataActivity.java │ │ │ │ │ └── Coordinator │ │ │ │ │ │ └── UM25Coordinator.java │ │ │ │ ├── vesc │ │ │ │ │ ├── VescControlActivity.java │ │ │ │ │ └── VescCoordinator.java │ │ │ │ ├── vibratissimo │ │ │ │ │ └── VibratissimoCoordinator.java │ │ │ │ ├── vivomovehr │ │ │ │ │ ├── GarminCapability.java │ │ │ │ │ └── VivomoveHrSampleProvider.java │ │ │ │ ├── waspos │ │ │ │ │ ├── WaspOSConstants.java │ │ │ │ │ └── WaspOSCoordinator.java │ │ │ │ ├── watch9 │ │ │ │ │ ├── Watch9CalibrationActivity.java │ │ │ │ │ ├── Watch9Constants.java │ │ │ │ │ ├── Watch9DeviceCoordinator.java │ │ │ │ │ └── Watch9PairingActivity.java │ │ │ │ ├── withingssteelhr │ │ │ │ │ ├── RotaryControl.java │ │ │ │ │ ├── WithingsCalibrationActivity.java │ │ │ │ │ ├── WithingsSteelHRDeviceCoordinator.java │ │ │ │ │ └── WithingsSteelHRSampleProvider.java │ │ │ │ ├── xiaomi │ │ │ │ │ ├── XiaomiCoordinator.java │ │ │ │ │ ├── XiaomiDailySummarySampleProvider.java │ │ │ │ │ ├── XiaomiFWHelper.java │ │ │ │ │ ├── XiaomiHeartRateRestingSampleProvider.java │ │ │ │ │ ├── XiaomiInstallHandler.java │ │ │ │ │ ├── XiaomiManualSampleProvider.java │ │ │ │ │ ├── XiaomiPaiSampleProvider.java │ │ │ │ │ ├── XiaomiSampleProvider.java │ │ │ │ │ ├── XiaomiSettingsCustomizer.java │ │ │ │ │ ├── XiaomiSleepStageSampleProvider.java │ │ │ │ │ ├── XiaomiSleepTimeSampleProvider.java │ │ │ │ │ ├── XiaomiSpo2SampleProvider.java │ │ │ │ │ ├── XiaomiStressSampleProvider.java │ │ │ │ │ ├── XiaomiTemperatureSampleProvider.java │ │ │ │ │ ├── XiaomiWeatherConditions.java │ │ │ │ │ ├── XiaomiWidgetManager.java │ │ │ │ │ ├── XiaomiWorkoutType.java │ │ │ │ │ ├── miband7pro │ │ │ │ │ │ └── MiBand7ProCoordinator.java │ │ │ │ │ ├── miband8 │ │ │ │ │ │ └── MiBand8Coordinator.java │ │ │ │ │ ├── miband8active │ │ │ │ │ │ └── MiBand8ActiveCoordinator.java │ │ │ │ │ ├── miband8pro │ │ │ │ │ │ └── MiBand8ProCoordinator.java │ │ │ │ │ ├── miband9 │ │ │ │ │ │ └── MiBand9Coordinator.java │ │ │ │ │ ├── miband9pro │ │ │ │ │ │ └── MiBand9ProCoordinator.java │ │ │ │ │ ├── miwatch │ │ │ │ │ │ └── MiWatchLiteCoordinator.java │ │ │ │ │ ├── miwatchcolorsport │ │ │ │ │ │ └── MiWatchColorSportCoordinator.java │ │ │ │ │ ├── redmibuds5pro │ │ │ │ │ │ ├── RedmiBuds5ProCoordinator.java │ │ │ │ │ │ ├── RedmiBuds5ProSettingsCustomizer.java │ │ │ │ │ │ └── prefs │ │ │ │ │ │ │ ├── Configuration.java │ │ │ │ │ │ │ └── Gestures.java │ │ │ │ │ ├── redmismartband2 │ │ │ │ │ │ └── RedmiSmartBand2Coordinator.java │ │ │ │ │ ├── redmismartbandpro │ │ │ │ │ │ └── RedmiSmartBandProCoordinator.java │ │ │ │ │ ├── redmiwatch2 │ │ │ │ │ │ └── RedmiWatch2Coordinator.java │ │ │ │ │ ├── redmiwatch2lite │ │ │ │ │ │ └── RedmiWatch2LiteCoordinator.java │ │ │ │ │ ├── redmiwatch3 │ │ │ │ │ │ └── RedmiWatch3Coordinator.java │ │ │ │ │ ├── redmiwatch3active │ │ │ │ │ │ └── RedmiWatch3ActiveCoordinator.java │ │ │ │ │ ├── redmiwatch4 │ │ │ │ │ │ └── RedmiWatch4Coordinator.java │ │ │ │ │ ├── redmiwatch5active │ │ │ │ │ │ └── RedmiWatch5ActiveCoordinator.java │ │ │ │ │ ├── redmiwatch5lite │ │ │ │ │ │ └── RedmiWatch5LiteCoordinator.java │ │ │ │ │ ├── watchs1 │ │ │ │ │ │ └── XiaomiWatchS1Coordinator.java │ │ │ │ │ ├── watchs1active │ │ │ │ │ │ └── XiaomiWatchS1ActiveCoordinator.java │ │ │ │ │ ├── watchs1pro │ │ │ │ │ │ └── XiaomiWatchS1ProCoordinator.java │ │ │ │ │ └── watchs3 │ │ │ │ │ │ └── XiaomiWatchS3Coordinator.java │ │ │ │ ├── xwatch │ │ │ │ │ ├── XWatchCoordinator.java │ │ │ │ │ ├── XWatchSampleProvider.java │ │ │ │ │ └── XWatchService.java │ │ │ │ └── zetime │ │ │ │ │ ├── ZeTimeConstants.java │ │ │ │ │ ├── ZeTimeCoordinator.java │ │ │ │ │ ├── ZeTimeSampleProvider.java │ │ │ │ │ └── ZeTimeSettingsCustomizer.java │ │ │ │ ├── entities │ │ │ │ ├── .gitignore │ │ │ │ ├── AbstractActivitySample.java │ │ │ │ ├── AbstractBodyEnergySample.java │ │ │ │ ├── AbstractColmiActivitySample.java │ │ │ │ ├── AbstractFitProActivitySample.java │ │ │ │ ├── AbstractGBX100ActivitySample.java │ │ │ │ ├── AbstractHeartRateSample.java │ │ │ │ ├── AbstractHrvSummarySample.java │ │ │ │ ├── AbstractHrvValueSample.java │ │ │ │ ├── AbstractHybridHRActivitySample.java │ │ │ │ ├── AbstractPaiSample.java │ │ │ │ ├── AbstractPebbleHealthActivitySample.java │ │ │ │ ├── AbstractPebbleMisfitActivitySample.java │ │ │ │ ├── AbstractPebbleMorpheuzActivitySample.java │ │ │ │ ├── AbstractRespiratoryRateSample.java │ │ │ │ ├── AbstractSpo2Sample.java │ │ │ │ ├── AbstractStressSample.java │ │ │ │ ├── AbstractTemperatureSample.java │ │ │ │ ├── AbstractTimeSample.java │ │ │ │ └── AbstractWeightSample.java │ │ │ │ ├── export │ │ │ │ ├── ActivityTrackExporter.java │ │ │ │ └── GPXExporter.java │ │ │ │ ├── externalevents │ │ │ │ ├── AlarmClockReceiver.java │ │ │ │ ├── AlarmReceiver.java │ │ │ │ ├── AutoStartReceiver.java │ │ │ │ ├── BluetoothConnectReceiver.java │ │ │ │ ├── BluetoothPairingRequestReceiver.java │ │ │ │ ├── BluetoothStateChangeReceiver.java │ │ │ │ ├── CMWeatherReceiver.java │ │ │ │ ├── CalendarReceiver.java │ │ │ │ ├── DeviceSettingsReceiver.java │ │ │ │ ├── GenericWeatherReceiver.java │ │ │ │ ├── IntentApiReceiver.java │ │ │ │ ├── LineageOsWeatherReceiver.java │ │ │ │ ├── MusicPlaybackReceiver.java │ │ │ │ ├── NotificationListener.java │ │ │ │ ├── OmniJawsObserver.java │ │ │ │ ├── OsmandEventReceiver.java │ │ │ │ ├── PebbleReceiver.java │ │ │ │ ├── PhoneCallReceiver.java │ │ │ │ ├── SMSReceiver.java │ │ │ │ ├── SilentModeReceiver.java │ │ │ │ ├── TimeChangeReceiver.java │ │ │ │ ├── TinyWeatherForecastGermanyReceiver.java │ │ │ │ ├── WeatherNotificationConfig.java │ │ │ │ ├── WeatherNotificationReceiver.java │ │ │ │ ├── gps │ │ │ │ │ ├── GBLocationListener.java │ │ │ │ │ ├── GBLocationProvider.java │ │ │ │ │ ├── GBLocationProviderType.java │ │ │ │ │ ├── GBLocationService.java │ │ │ │ │ └── providers │ │ │ │ │ │ ├── MockLocationProvider.java │ │ │ │ │ │ └── PhoneLocationProvider.java │ │ │ │ ├── notifications │ │ │ │ │ └── GoogleMapsNotificationHandler.java │ │ │ │ ├── opentracks │ │ │ │ │ ├── OpenTracksContentObserver.java │ │ │ │ │ ├── OpenTracksController.java │ │ │ │ │ ├── Track.java │ │ │ │ │ └── TrackStatistics.java │ │ │ │ └── sleepasandroid │ │ │ │ │ ├── SleepAsAndroidAction.java │ │ │ │ │ └── SleepAsAndroidReceiver.java │ │ │ │ ├── impl │ │ │ │ ├── GBDevice.java │ │ │ │ ├── GBDeviceApp.java │ │ │ │ ├── GBDeviceCandidate.java │ │ │ │ ├── GBDeviceFolder.java │ │ │ │ ├── GBDeviceMusic.java │ │ │ │ ├── GBDeviceMusicPlaylist.java │ │ │ │ ├── GBDeviceService.java │ │ │ │ └── GBSummaryOfDay.java │ │ │ │ ├── model │ │ │ │ ├── AbstractNotificationPattern.java │ │ │ │ ├── ActivityAmount.java │ │ │ │ ├── ActivityAmounts.java │ │ │ │ ├── ActivityKind.java │ │ │ │ ├── ActivityListItem.java │ │ │ │ ├── ActivityPoint.java │ │ │ │ ├── ActivitySample.java │ │ │ │ ├── ActivitySession.java │ │ │ │ ├── ActivitySummary.java │ │ │ │ ├── ActivitySummaryData.java │ │ │ │ ├── ActivitySummaryEntries.java │ │ │ │ ├── ActivitySummaryItems.java │ │ │ │ ├── ActivitySummaryJsonSummary.java │ │ │ │ ├── ActivitySummaryParser.java │ │ │ │ ├── ActivityTrack.java │ │ │ │ ├── ActivityUser.java │ │ │ │ ├── Alarm.java │ │ │ │ ├── AppNotificationType.java │ │ │ │ ├── BatteryConfig.java │ │ │ │ ├── BatteryState.java │ │ │ │ ├── BodyEnergySample.java │ │ │ │ ├── CalendarEventSpec.java │ │ │ │ ├── CallSpec.java │ │ │ │ ├── CannedMessagesSpec.java │ │ │ │ ├── Contact.java │ │ │ │ ├── DailyTotals.java │ │ │ │ ├── DeviceService.java │ │ │ │ ├── DeviceType.java │ │ │ │ ├── GPSCoordinate.java │ │ │ │ ├── GenericItem.java │ │ │ │ ├── HeartRateSample.java │ │ │ │ ├── HrvSummarySample.java │ │ │ │ ├── HrvValueSample.java │ │ │ │ ├── ItemWithDetails.java │ │ │ │ ├── Measurement.java │ │ │ │ ├── MusicSpec.java │ │ │ │ ├── MusicStateSpec.java │ │ │ │ ├── NavigationInfoSpec.java │ │ │ │ ├── NotificationSpec.java │ │ │ │ ├── NotificationType.java │ │ │ │ ├── PaiSample.java │ │ │ │ ├── RecordedDataTypes.java │ │ │ │ ├── Reminder.java │ │ │ │ ├── RespiratoryRateSample.java │ │ │ │ ├── RestingMetabolicRateSample.java │ │ │ │ ├── SleepScoreSample.java │ │ │ │ ├── SleepState.java │ │ │ │ ├── Spo2Sample.java │ │ │ │ ├── StressSample.java │ │ │ │ ├── SummaryOfDay.java │ │ │ │ ├── TemperatureSample.java │ │ │ │ ├── TimeSample.java │ │ │ │ ├── TimeStamped.java │ │ │ │ ├── ValidByDate.java │ │ │ │ ├── Vo2MaxSample.java │ │ │ │ ├── WearingState.java │ │ │ │ ├── Weather.java │ │ │ │ ├── WeatherSpec.java │ │ │ │ ├── WeightSample.java │ │ │ │ └── WorldClock.java │ │ │ │ ├── service │ │ │ │ ├── AbstractDeviceSupport.java │ │ │ │ ├── AbstractHeadphoneDeviceSupport.java │ │ │ │ ├── DeviceCommunicationService.java │ │ │ │ ├── DeviceSupport.java │ │ │ │ ├── DeviceSupportFactory.java │ │ │ │ ├── HeadphoneHelper.java │ │ │ │ ├── NotificationCollectorMonitorService.java │ │ │ │ ├── ServiceDeviceSupport.java │ │ │ │ ├── SleepAsAndroidSender.java │ │ │ │ ├── btbr │ │ │ │ │ ├── AbstractBTBRDeviceSupport.java │ │ │ │ │ ├── AbstractTransaction.java │ │ │ │ │ ├── BtBRAction.java │ │ │ │ │ ├── BtBRQueue.java │ │ │ │ │ ├── SocketCallback.java │ │ │ │ │ ├── Transaction.java │ │ │ │ │ ├── TransactionBuilder.java │ │ │ │ │ └── actions │ │ │ │ │ │ ├── AbortTransactionAction.java │ │ │ │ │ │ ├── CheckInitializedAction.java │ │ │ │ │ │ ├── PlainAction.java │ │ │ │ │ │ ├── SetDeviceBusyAction.java │ │ │ │ │ │ ├── SetDeviceStateAction.java │ │ │ │ │ │ ├── SetProgressAction.java │ │ │ │ │ │ ├── WaitAction.java │ │ │ │ │ │ └── WriteAction.java │ │ │ │ ├── btclassic │ │ │ │ │ └── BtClassicIoThread.java │ │ │ │ ├── btle │ │ │ │ │ ├── AbstractBTLEDeviceSupport.java │ │ │ │ │ ├── AbstractBTLEOperation.java │ │ │ │ │ ├── AbstractGattCallback.java │ │ │ │ │ ├── AbstractTransaction.java │ │ │ │ │ ├── BLEScanService.java │ │ │ │ │ ├── BLETypeConversions.java │ │ │ │ │ ├── BTLEOperation.java │ │ │ │ │ ├── BleIntentApi.java │ │ │ │ │ ├── BleNamesResolver.java │ │ │ │ │ ├── BtLEAction.java │ │ │ │ │ ├── BtLEQueue.java │ │ │ │ │ ├── BtLEServerAction.java │ │ │ │ │ ├── GattCallback.java │ │ │ │ │ ├── GattCharacteristic.java │ │ │ │ │ ├── GattDescriptor.java │ │ │ │ │ ├── GattListenerAction.java │ │ │ │ │ ├── GattServerCallback.java │ │ │ │ │ ├── GattService.java │ │ │ │ │ ├── ServerTransaction.java │ │ │ │ │ ├── ServerTransactionBuilder.java │ │ │ │ │ ├── Transaction.java │ │ │ │ │ ├── TransactionBuilder.java │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── AbortTransactionAction.java │ │ │ │ │ │ ├── AbstractGattListenerWriteAction.java │ │ │ │ │ │ ├── BondAction.java │ │ │ │ │ │ ├── CheckInitializedAction.java │ │ │ │ │ │ ├── ConditionalWriteAction.java │ │ │ │ │ │ ├── FunctionAction.java │ │ │ │ │ │ ├── NotifyAction.java │ │ │ │ │ │ ├── PlainAction.java │ │ │ │ │ │ ├── ReadAction.java │ │ │ │ │ │ ├── RequestConnectionPriorityAction.java │ │ │ │ │ │ ├── RequestMtuAction.java │ │ │ │ │ │ ├── ServerResponseAction.java │ │ │ │ │ │ ├── SetDeviceBusyAction.java │ │ │ │ │ │ ├── SetDeviceStateAction.java │ │ │ │ │ │ ├── SetProgressAction.java │ │ │ │ │ │ ├── WaitAction.java │ │ │ │ │ │ └── WriteAction.java │ │ │ │ │ └── profiles │ │ │ │ │ │ ├── AbstractBleProfile.java │ │ │ │ │ │ ├── IntentListener.java │ │ │ │ │ │ ├── ValueDecoder.java │ │ │ │ │ │ ├── alertnotification │ │ │ │ │ │ ├── AlertCategory.java │ │ │ │ │ │ ├── AlertLevel.java │ │ │ │ │ │ ├── AlertNotificationControl.java │ │ │ │ │ │ ├── AlertNotificationProfile.java │ │ │ │ │ │ ├── AlertStatus.java │ │ │ │ │ │ ├── Command.java │ │ │ │ │ │ ├── NewAlert.java │ │ │ │ │ │ ├── OverflowStrategy.java │ │ │ │ │ │ └── SupportedNewAlertCategory.java │ │ │ │ │ │ ├── battery │ │ │ │ │ │ ├── BatteryInfo.java │ │ │ │ │ │ └── BatteryInfoProfile.java │ │ │ │ │ │ ├── deviceinfo │ │ │ │ │ │ ├── DeviceInfo.java │ │ │ │ │ │ └── DeviceInfoProfile.java │ │ │ │ │ │ ├── healthThermometer │ │ │ │ │ │ ├── HealthThermometerProfile.java │ │ │ │ │ │ └── TemperatureInfo.java │ │ │ │ │ │ └── heartrate │ │ │ │ │ │ ├── BodySensorLocation.java │ │ │ │ │ │ └── HeartRateProfile.java │ │ │ │ ├── devices │ │ │ │ │ ├── asteroidos │ │ │ │ │ │ └── AsteroidOSDeviceSupport.java │ │ │ │ │ ├── bandwpseries │ │ │ │ │ │ ├── BandWBLEProfile.java │ │ │ │ │ │ ├── BandWMessageType.java │ │ │ │ │ │ ├── BandWPSeriesDeviceSupport.java │ │ │ │ │ │ ├── BandWPSeriesRequest.java │ │ │ │ │ │ └── BandWPSeriesResponse.java │ │ │ │ │ ├── banglejs │ │ │ │ │ │ ├── BangleJSActivityTrack.java │ │ │ │ │ │ └── BangleJSDeviceSupport.java │ │ │ │ │ ├── binary_sensor │ │ │ │ │ │ ├── BinarySensorBaseSupport.java │ │ │ │ │ │ ├── BinarySensorSupport.java │ │ │ │ │ │ └── protocol │ │ │ │ │ │ │ ├── constants │ │ │ │ │ │ │ ├── MessageId.java │ │ │ │ │ │ │ ├── ParameterId.java │ │ │ │ │ │ │ ├── ReportState.java │ │ │ │ │ │ │ ├── ResultCode.java │ │ │ │ │ │ │ ├── SensorState.java │ │ │ │ │ │ │ └── SensorType.java │ │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ ├── GetSensorRequest.java │ │ │ │ │ │ │ ├── Message.java │ │ │ │ │ │ │ ├── Response.java │ │ │ │ │ │ │ └── SetSensorRequest.java │ │ │ │ │ │ │ └── parameter │ │ │ │ │ │ │ ├── Parameter.java │ │ │ │ │ │ │ ├── ReportStatus.java │ │ │ │ │ │ │ ├── ResultCode.java │ │ │ │ │ │ │ ├── SensorState.java │ │ │ │ │ │ │ └── SensorType.java │ │ │ │ │ ├── casio │ │ │ │ │ │ ├── BasicCasio2C2DSupport.java │ │ │ │ │ │ ├── Casio2C2DSupport.java │ │ │ │ │ │ ├── CasioSupport.java │ │ │ │ │ │ ├── CasioTimeZone.java │ │ │ │ │ │ ├── ecbs100 │ │ │ │ │ │ │ └── CasioECBS100DeviceSupport.java │ │ │ │ │ │ ├── gb6900 │ │ │ │ │ │ │ ├── CasioGB6900DeviceSupport.java │ │ │ │ │ │ │ ├── CasioGB6900HandlerThread.java │ │ │ │ │ │ │ ├── InitOperation.java │ │ │ │ │ │ │ └── SetAlarmOperation.java │ │ │ │ │ │ ├── gbx100 │ │ │ │ │ │ │ ├── CasioGBX100DeviceSupport.java │ │ │ │ │ │ │ ├── FetchStepCountDataOperation.java │ │ │ │ │ │ │ ├── GetConfigurationOperation.java │ │ │ │ │ │ │ ├── InitOperation.java │ │ │ │ │ │ │ └── SetConfigurationOperation.java │ │ │ │ │ │ └── gwb5600 │ │ │ │ │ │ │ └── CasioGWB5600DeviceSupport.java │ │ │ │ │ ├── cmfwatchpro │ │ │ │ │ │ ├── CmfActivitySync.java │ │ │ │ │ │ ├── CmfActivityType.java │ │ │ │ │ │ ├── CmfCharacteristic.java │ │ │ │ │ │ ├── CmfCommand.java │ │ │ │ │ │ ├── CmfDataUploader.java │ │ │ │ │ │ ├── CmfFwHelper.java │ │ │ │ │ │ ├── CmfInstallHandler.java │ │ │ │ │ │ ├── CmfNotificationIcon.java │ │ │ │ │ │ ├── CmfPreferences.java │ │ │ │ │ │ └── CmfWatchProSupport.java │ │ │ │ │ ├── colmi │ │ │ │ │ │ └── ColmiR0xDeviceSupport.java │ │ │ │ │ ├── common │ │ │ │ │ │ └── SimpleNotification.java │ │ │ │ │ ├── cycling_sensor │ │ │ │ │ │ └── support │ │ │ │ │ │ │ ├── CyclingSensorBaseSupport.java │ │ │ │ │ │ │ └── CyclingSensorSupport.java │ │ │ │ │ ├── divoom │ │ │ │ │ │ ├── PixooIOThread.java │ │ │ │ │ │ ├── PixooProtocol.java │ │ │ │ │ │ └── PixooSupport.java │ │ │ │ │ ├── domyos │ │ │ │ │ │ └── DomyosT540Support.java │ │ │ │ │ ├── femometer │ │ │ │ │ │ └── FemometerVinca2DeviceSupport.java │ │ │ │ │ ├── fitpro │ │ │ │ │ │ └── FitProDeviceSupport.java │ │ │ │ │ ├── flipper │ │ │ │ │ │ └── zero │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ ├── FlipperZeroBaseSupport.java │ │ │ │ │ │ │ └── FlipperZeroSupport.java │ │ │ │ │ ├── galaxy_buds │ │ │ │ │ │ ├── GalaxyBudsDeviceSupport.java │ │ │ │ │ │ ├── GalaxyBudsIOThread.java │ │ │ │ │ │ └── GalaxyBudsProtocol.java │ │ │ │ │ ├── garmin │ │ │ │ │ │ ├── ChecksumCalculator.java │ │ │ │ │ │ ├── FileTransferHandler.java │ │ │ │ │ │ ├── FileType.java │ │ │ │ │ │ ├── GarminByteBufferReader.java │ │ │ │ │ │ ├── GarminSupport.java │ │ │ │ │ │ ├── GarminTimeUtils.java │ │ │ │ │ │ ├── GarminUtils.java │ │ │ │ │ │ ├── MessageHandler.java │ │ │ │ │ │ ├── NotificationsHandler.java │ │ │ │ │ │ ├── ProtocolBufferHandler.java │ │ │ │ │ │ ├── agps │ │ │ │ │ │ │ ├── AgpsHandler.java │ │ │ │ │ │ │ ├── GarminAgpsDataType.java │ │ │ │ │ │ │ ├── GarminAgpsFile.java │ │ │ │ │ │ │ └── GarminAgpsStatus.java │ │ │ │ │ │ ├── communicator │ │ │ │ │ │ │ ├── CobsCoDec.java │ │ │ │ │ │ │ ├── ICommunicator.java │ │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ │ └── CommunicatorV1.java │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ │ └── CommunicatorV2.java │ │ │ │ │ │ ├── deviceevents │ │ │ │ │ │ │ ├── CapabilitiesDeviceEvent.java │ │ │ │ │ │ │ ├── FileDownloadedDeviceEvent.java │ │ │ │ │ │ │ ├── NotificationSubscriptionDeviceEvent.java │ │ │ │ │ │ │ ├── SupportedFileTypesDeviceEvent.java │ │ │ │ │ │ │ └── WeatherRequestDeviceEvent.java │ │ │ │ │ │ ├── fit │ │ │ │ │ │ │ ├── DevFieldDefinition.java │ │ │ │ │ │ │ ├── FieldDefinition.java │ │ │ │ │ │ │ ├── FieldDefinitionFactory.java │ │ │ │ │ │ │ ├── FieldInterface.java │ │ │ │ │ │ │ ├── FitAsyncProcessor.java │ │ │ │ │ │ │ ├── FitFile.java │ │ │ │ │ │ │ ├── FitImporter.java │ │ │ │ │ │ │ ├── GlobalFITMessage.java │ │ │ │ │ │ │ ├── GpxRouteFileConverter.java │ │ │ │ │ │ │ ├── PredefinedLocalMessage.java │ │ │ │ │ │ │ ├── RecordData.java │ │ │ │ │ │ │ ├── RecordDefinition.java │ │ │ │ │ │ │ ├── RecordHeader.java │ │ │ │ │ │ │ ├── baseTypes │ │ │ │ │ │ │ │ ├── BaseType.java │ │ │ │ │ │ │ │ ├── BaseTypeByte.java │ │ │ │ │ │ │ │ ├── BaseTypeDouble.java │ │ │ │ │ │ │ │ ├── BaseTypeFloat.java │ │ │ │ │ │ │ │ ├── BaseTypeInt.java │ │ │ │ │ │ │ │ ├── BaseTypeInterface.java │ │ │ │ │ │ │ │ ├── BaseTypeLong.java │ │ │ │ │ │ │ │ └── BaseTypeShort.java │ │ │ │ │ │ │ ├── codegen │ │ │ │ │ │ │ │ └── FitCodeGen.java │ │ │ │ │ │ │ ├── enums │ │ │ │ │ │ │ │ └── GarminSport.java │ │ │ │ │ │ │ ├── fieldDefinitions │ │ │ │ │ │ │ │ ├── FieldDefinitionAlarm.java │ │ │ │ │ │ │ │ ├── FieldDefinitionArray.java │ │ │ │ │ │ │ │ ├── FieldDefinitionCoordinate.java │ │ │ │ │ │ │ │ ├── FieldDefinitionDayOfWeek.java │ │ │ │ │ │ │ │ ├── FieldDefinitionFileType.java │ │ │ │ │ │ │ │ ├── FieldDefinitionGoalSource.java │ │ │ │ │ │ │ │ ├── FieldDefinitionGoalType.java │ │ │ │ │ │ │ │ ├── FieldDefinitionHrTimeInZone.java │ │ │ │ │ │ │ │ ├── FieldDefinitionHrZoneHighBoundary.java │ │ │ │ │ │ │ │ ├── FieldDefinitionHrvStatus.java │ │ │ │ │ │ │ │ ├── FieldDefinitionLanguage.java │ │ │ │ │ │ │ │ ├── FieldDefinitionMeasurementSystem.java │ │ │ │ │ │ │ │ ├── FieldDefinitionSleepStage.java │ │ │ │ │ │ │ │ ├── FieldDefinitionTemperature.java │ │ │ │ │ │ │ │ ├── FieldDefinitionTimestamp.java │ │ │ │ │ │ │ │ ├── FieldDefinitionWeatherAqi.java │ │ │ │ │ │ │ │ └── FieldDefinitionWeatherCondition.java │ │ │ │ │ │ │ └── messages │ │ │ │ │ │ │ │ ├── FitAlarmSettings.java │ │ │ │ │ │ │ │ ├── FitConnectivity.java │ │ │ │ │ │ │ │ ├── FitCourse.java │ │ │ │ │ │ │ │ ├── FitDeveloperData.java │ │ │ │ │ │ │ │ ├── FitDeviceInfo.java │ │ │ │ │ │ │ │ ├── FitDeviceSettings.java │ │ │ │ │ │ │ │ ├── FitEvent.java │ │ │ │ │ │ │ │ ├── FitFieldDescription.java │ │ │ │ │ │ │ │ ├── FitFileCreator.java │ │ │ │ │ │ │ │ ├── FitFileId.java │ │ │ │ │ │ │ │ ├── FitGoals.java │ │ │ │ │ │ │ │ ├── FitGpsMetadata.java │ │ │ │ │ │ │ │ ├── FitHrvSummary.java │ │ │ │ │ │ │ │ ├── FitHrvValue.java │ │ │ │ │ │ │ │ ├── FitLap.java │ │ │ │ │ │ │ │ ├── FitMonitoring.java │ │ │ │ │ │ │ │ ├── FitMonitoringHrData.java │ │ │ │ │ │ │ │ ├── FitMonitoringInfo.java │ │ │ │ │ │ │ │ ├── FitPhysiologicalMetrics.java │ │ │ │ │ │ │ │ ├── FitRecord.java │ │ │ │ │ │ │ │ ├── FitRecordDataFactory.java │ │ │ │ │ │ │ │ ├── FitRespirationRate.java │ │ │ │ │ │ │ │ ├── FitSession.java │ │ │ │ │ │ │ │ ├── FitSet.java │ │ │ │ │ │ │ │ ├── FitSkinTempOvernight.java │ │ │ │ │ │ │ │ ├── FitSkinTempRaw.java │ │ │ │ │ │ │ │ ├── FitSleepDataInfo.java │ │ │ │ │ │ │ │ ├── FitSleepDataRaw.java │ │ │ │ │ │ │ │ ├── FitSleepStage.java │ │ │ │ │ │ │ │ ├── FitSleepStats.java │ │ │ │ │ │ │ │ ├── FitSpo2.java │ │ │ │ │ │ │ │ ├── FitSport.java │ │ │ │ │ │ │ │ ├── FitStressLevel.java │ │ │ │ │ │ │ │ ├── FitTimeInZone.java │ │ │ │ │ │ │ │ ├── FitTimestampCorrelation.java │ │ │ │ │ │ │ │ ├── FitUserProfile.java │ │ │ │ │ │ │ │ ├── FitWatchfaceSettings.java │ │ │ │ │ │ │ │ ├── FitWeather.java │ │ │ │ │ │ │ │ ├── FitWorkout.java │ │ │ │ │ │ │ │ └── FitZonesTarget.java │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ ├── ContactsHandler.java │ │ │ │ │ │ │ ├── DataTransferHandler.java │ │ │ │ │ │ │ ├── GarminHttpRequest.java │ │ │ │ │ │ │ ├── GarminHttpResponse.java │ │ │ │ │ │ │ ├── HttpHandler.java │ │ │ │ │ │ │ └── WeatherHandler.java │ │ │ │ │ │ └── messages │ │ │ │ │ │ │ ├── AuthNegotiationMessage.java │ │ │ │ │ │ │ ├── ConfigurationMessage.java │ │ │ │ │ │ │ ├── CreateFileMessage.java │ │ │ │ │ │ │ ├── CurrentTimeRequestMessage.java │ │ │ │ │ │ │ ├── DeviceInformationMessage.java │ │ │ │ │ │ │ ├── DownloadRequestMessage.java │ │ │ │ │ │ │ ├── FileTransferDataMessage.java │ │ │ │ │ │ │ ├── FindMyPhoneCancelMessage.java │ │ │ │ │ │ │ ├── FindMyPhoneRequestMessage.java │ │ │ │ │ │ │ ├── FitDataMessage.java │ │ │ │ │ │ │ ├── FitDefinitionMessage.java │ │ │ │ │ │ │ ├── GFDIMessage.java │ │ │ │ │ │ │ ├── MessageWriter.java │ │ │ │ │ │ │ ├── MusicControlCapabilitiesMessage.java │ │ │ │ │ │ │ ├── MusicControlEntityUpdateMessage.java │ │ │ │ │ │ │ ├── MusicControlMessage.java │ │ │ │ │ │ │ ├── NotificationControlMessage.java │ │ │ │ │ │ │ ├── NotificationDataMessage.java │ │ │ │ │ │ │ ├── NotificationSubscriptionMessage.java │ │ │ │ │ │ │ ├── NotificationUpdateMessage.java │ │ │ │ │ │ │ ├── ProtobufMessage.java │ │ │ │ │ │ │ ├── SetDeviceSettingsMessage.java │ │ │ │ │ │ │ ├── SetFileFlagsMessage.java │ │ │ │ │ │ │ ├── SupportedFileTypesMessage.java │ │ │ │ │ │ │ ├── SystemEventMessage.java │ │ │ │ │ │ │ ├── UnhandledMessage.java │ │ │ │ │ │ │ ├── UploadRequestMessage.java │ │ │ │ │ │ │ ├── WeatherMessage.java │ │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── AuthNegotiationStatusMessage.java │ │ │ │ │ │ │ ├── CreateFileStatusMessage.java │ │ │ │ │ │ │ ├── DownloadRequestStatusMessage.java │ │ │ │ │ │ │ ├── FileTransferDataStatusMessage.java │ │ │ │ │ │ │ ├── FitDataStatusMessage.java │ │ │ │ │ │ │ ├── FitDefinitionStatusMessage.java │ │ │ │ │ │ │ ├── GFDIStatusMessage.java │ │ │ │ │ │ │ ├── GenericStatusMessage.java │ │ │ │ │ │ │ ├── NotificationControlStatusMessage.java │ │ │ │ │ │ │ ├── NotificationDataStatusMessage.java │ │ │ │ │ │ │ ├── NotificationSubscriptionStatusMessage.java │ │ │ │ │ │ │ ├── ProtobufStatusMessage.java │ │ │ │ │ │ │ ├── SetFileFlagsStatusMessage.java │ │ │ │ │ │ │ ├── SupportedFileTypesStatusMessage.java │ │ │ │ │ │ │ └── UploadRequestStatusMessage.java │ │ │ │ │ ├── gatt_client │ │ │ │ │ │ ├── BleGattClientCoordinator.java │ │ │ │ │ │ └── BleGattClientSupport.java │ │ │ │ │ ├── hama │ │ │ │ │ │ └── fit6900 │ │ │ │ │ │ │ └── HamaFit6900DeviceSupport.java │ │ │ │ │ ├── hplus │ │ │ │ │ │ ├── HPlusDataRecord.java │ │ │ │ │ │ ├── HPlusDataRecordDaySlot.java │ │ │ │ │ │ ├── HPlusDataRecordDaySummary.java │ │ │ │ │ │ ├── HPlusDataRecordRealtime.java │ │ │ │ │ │ ├── HPlusDataRecordSleep.java │ │ │ │ │ │ ├── HPlusHandlerThread.java │ │ │ │ │ │ └── HPlusSupport.java │ │ │ │ │ ├── huami │ │ │ │ │ │ ├── AbstractHuamiActivityDetailsParser.java │ │ │ │ │ │ ├── AbstractHuamiFirmwareInfo.java │ │ │ │ │ │ ├── AbstractHuamiOperation.java │ │ │ │ │ │ ├── Huami2021ChunkedDecoder.java │ │ │ │ │ │ ├── Huami2021ChunkedEncoder.java │ │ │ │ │ │ ├── Huami2021Handler.java │ │ │ │ │ │ ├── HuamiActivityDetailsParser.java │ │ │ │ │ │ ├── HuamiBatteryInfo.java │ │ │ │ │ │ ├── HuamiDeviceEvent.java │ │ │ │ │ │ ├── HuamiFirmwareInfo.java │ │ │ │ │ │ ├── HuamiFirmwareType.java │ │ │ │ │ │ ├── HuamiIcon.java │ │ │ │ │ │ ├── HuamiLanguageType.java │ │ │ │ │ │ ├── HuamiMenuType.java │ │ │ │ │ │ ├── HuamiPhoneGpsStatus.java │ │ │ │ │ │ ├── HuamiSportsActivityType.java │ │ │ │ │ │ ├── HuamiSupport.java │ │ │ │ │ │ ├── HuamiVibrationPatternNotificationType.java │ │ │ │ │ │ ├── HuamiWorkoutScreenActivityType.java │ │ │ │ │ │ ├── HuamiWorkoutStatus.java │ │ │ │ │ │ ├── HuamiWorkoutTrackActivityType.java │ │ │ │ │ │ ├── UIHHContainer.java │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ └── StopNotificationAction.java │ │ │ │ │ │ ├── amazfitband5 │ │ │ │ │ │ │ ├── AmazfitBand5FirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitBand5Support.java │ │ │ │ │ │ ├── amazfitbip │ │ │ │ │ │ │ ├── AmazfitBipFirmwareInfo.java │ │ │ │ │ │ │ ├── AmazfitBipLiteFirmwareInfo.java │ │ │ │ │ │ │ ├── AmazfitBipLiteSupport.java │ │ │ │ │ │ │ ├── AmazfitBipSupport.java │ │ │ │ │ │ │ └── AmazfitBipTextNotificationStrategy.java │ │ │ │ │ │ ├── amazfitbip3 │ │ │ │ │ │ │ ├── AmazfitBip3FirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitBip3Support.java │ │ │ │ │ │ ├── amazfitbip3pro │ │ │ │ │ │ │ ├── AmazfitBip3ProFirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitBip3ProSupport.java │ │ │ │ │ │ ├── amazfitbips │ │ │ │ │ │ │ ├── AmazfitBipSFirmwareInfo.java │ │ │ │ │ │ │ ├── AmazfitBipSLiteFirmwareInfo.java │ │ │ │ │ │ │ ├── AmazfitBipSLiteSupport.java │ │ │ │ │ │ │ └── AmazfitBipSSupport.java │ │ │ │ │ │ ├── amazfitbipu │ │ │ │ │ │ │ ├── AmazfitBipUFirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitBipUSupport.java │ │ │ │ │ │ ├── amazfitbipupro │ │ │ │ │ │ │ ├── AmazfitBipUProFirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitBipUProSupport.java │ │ │ │ │ │ ├── amazfitcor │ │ │ │ │ │ │ ├── AmazfitCorFirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitCorSupport.java │ │ │ │ │ │ ├── amazfitcor2 │ │ │ │ │ │ │ ├── AmazfitCor2FirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitCor2Support.java │ │ │ │ │ │ ├── amazfitgtr │ │ │ │ │ │ │ ├── AmazfitGTRFirmwareInfo.java │ │ │ │ │ │ │ ├── AmazfitGTRLiteFirmwareInfo.java │ │ │ │ │ │ │ ├── AmazfitGTRLiteSupport.java │ │ │ │ │ │ │ └── AmazfitGTRSupport.java │ │ │ │ │ │ ├── amazfitgtr2 │ │ │ │ │ │ │ ├── AmazfitGTR2FirmwareInfo.java │ │ │ │ │ │ │ ├── AmazfitGTR2Support.java │ │ │ │ │ │ │ ├── AmazfitGTR2eFirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitGTR2eSupport.java │ │ │ │ │ │ ├── amazfitgts │ │ │ │ │ │ │ ├── AmazfitGTSFirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitGTSSupport.java │ │ │ │ │ │ ├── amazfitgts2 │ │ │ │ │ │ │ ├── AmazfitGTS2FirmwareInfo.java │ │ │ │ │ │ │ ├── AmazfitGTS2MiniFirmwareInfo.java │ │ │ │ │ │ │ ├── AmazfitGTS2MiniSupport.java │ │ │ │ │ │ │ ├── AmazfitGTS2Support.java │ │ │ │ │ │ │ ├── AmazfitGTS2eFirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitGTS2eSupport.java │ │ │ │ │ │ ├── amazfitneo │ │ │ │ │ │ │ ├── AmazfitNeoFirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitNeoSupport.java │ │ │ │ │ │ ├── amazfitpop │ │ │ │ │ │ │ ├── AmazfitPopFirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitPopSupport.java │ │ │ │ │ │ ├── amazfitpoppro │ │ │ │ │ │ │ ├── AmazfitPopProFirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitPopProSupport.java │ │ │ │ │ │ ├── amazfittrex │ │ │ │ │ │ │ ├── AmazfitTRexFirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitTRexSupport.java │ │ │ │ │ │ ├── amazfittrexpro │ │ │ │ │ │ │ ├── AmazfitTRexProFirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitTRexProSupport.java │ │ │ │ │ │ ├── amazfitvergel │ │ │ │ │ │ │ ├── AmazfitVergeLFirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitVergeLSupport.java │ │ │ │ │ │ ├── amazfitx │ │ │ │ │ │ │ ├── AmazfitXFirmwareInfo.java │ │ │ │ │ │ │ └── AmazfitXSupport.java │ │ │ │ │ │ ├── miband2 │ │ │ │ │ │ │ ├── Mi2FirmwareInfo.java │ │ │ │ │ │ │ ├── Mi2NotificationStrategy.java │ │ │ │ │ │ │ ├── Mi2TextNotificationStrategy.java │ │ │ │ │ │ │ └── MiBand2Support.java │ │ │ │ │ │ ├── miband3 │ │ │ │ │ │ │ ├── MiBand3FirmwareInfo.java │ │ │ │ │ │ │ └── MiBand3Support.java │ │ │ │ │ │ ├── miband4 │ │ │ │ │ │ │ ├── MiBand4FirmwareInfo.java │ │ │ │ │ │ │ └── MiBand4Support.java │ │ │ │ │ │ ├── miband5 │ │ │ │ │ │ │ ├── MiBand5FirmwareInfo.java │ │ │ │ │ │ │ └── MiBand5Support.java │ │ │ │ │ │ ├── miband6 │ │ │ │ │ │ │ ├── MiBand6FirmwareInfo.java │ │ │ │ │ │ │ └── MiBand6Support.java │ │ │ │ │ │ ├── operations │ │ │ │ │ │ │ ├── fetch │ │ │ │ │ │ │ │ ├── AbstractFetchOperation.java │ │ │ │ │ │ │ │ ├── AbstractRepeatingFetchOperation.java │ │ │ │ │ │ │ │ ├── FetchActivityOperation.java │ │ │ │ │ │ │ │ ├── FetchDebugLogsOperation.java │ │ │ │ │ │ │ │ ├── FetchHeartRateManualOperation.java │ │ │ │ │ │ │ │ ├── FetchHeartRateMaxOperation.java │ │ │ │ │ │ │ │ ├── FetchHeartRateRestingOperation.java │ │ │ │ │ │ │ │ ├── FetchPaiOperation.java │ │ │ │ │ │ │ │ ├── FetchSleepRespiratoryRateOperation.java │ │ │ │ │ │ │ │ ├── FetchSpo2NormalOperation.java │ │ │ │ │ │ │ │ ├── FetchSpo2SleepOperation.java │ │ │ │ │ │ │ │ ├── FetchSportsDetailsOperation.java │ │ │ │ │ │ │ │ ├── FetchSportsSummaryOperation.java │ │ │ │ │ │ │ │ ├── FetchStatisticsOperation.java │ │ │ │ │ │ │ │ ├── FetchStressAutoOperation.java │ │ │ │ │ │ │ │ ├── FetchStressManualOperation.java │ │ │ │ │ │ │ │ ├── FetchTemperatureOperation.java │ │ │ │ │ │ │ │ └── HuamiFetchDataType.java │ │ │ │ │ │ │ ├── init │ │ │ │ │ │ │ │ ├── InitOperation.java │ │ │ │ │ │ │ │ └── InitOperation2021.java │ │ │ │ │ │ │ └── update │ │ │ │ │ │ │ │ ├── UpdateFirmwareOperation.java │ │ │ │ │ │ │ │ ├── UpdateFirmwareOperation2020.java │ │ │ │ │ │ │ │ └── UpdateFirmwareOperationNew.java │ │ │ │ │ │ ├── zeppe │ │ │ │ │ │ │ ├── ZeppEFirmwareInfo.java │ │ │ │ │ │ │ └── ZeppESupport.java │ │ │ │ │ │ └── zeppos │ │ │ │ │ │ │ ├── AbstractZeppOsService.java │ │ │ │ │ │ │ ├── ZeppOsActivityDetailsParser.java │ │ │ │ │ │ │ ├── ZeppOsActivityType.java │ │ │ │ │ │ │ ├── ZeppOsFwInstallHandler.java │ │ │ │ │ │ │ ├── ZeppOsMenuType.java │ │ │ │ │ │ │ ├── ZeppOsSupport.java │ │ │ │ │ │ │ ├── ZeppOsWeather.java │ │ │ │ │ │ │ ├── operations │ │ │ │ │ │ │ ├── ZeppOsAgpsFile.java │ │ │ │ │ │ │ ├── ZeppOsAgpsUpdateOperation.java │ │ │ │ │ │ │ ├── ZeppOsFirmwareUpdateOperation.java │ │ │ │ │ │ │ ├── ZeppOsGpxRouteFile.java │ │ │ │ │ │ │ └── ZeppOsGpxRouteUploadOperation.java │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ ├── ZeppOsAgpsService.java │ │ │ │ │ │ │ ├── ZeppOsAlarmsService.java │ │ │ │ │ │ │ ├── ZeppOsAlexaService.java │ │ │ │ │ │ │ ├── ZeppOsAppsService.java │ │ │ │ │ │ │ ├── ZeppOsCalendarService.java │ │ │ │ │ │ │ ├── ZeppOsCannedMessagesService.java │ │ │ │ │ │ │ ├── ZeppOsConfigService.java │ │ │ │ │ │ │ ├── ZeppOsContactsService.java │ │ │ │ │ │ │ ├── ZeppOsDisplayItemsService.java │ │ │ │ │ │ │ ├── ZeppOsFileTransferService.java │ │ │ │ │ │ │ ├── ZeppOsFtpServerService.java │ │ │ │ │ │ │ ├── ZeppOsHttpService.java │ │ │ │ │ │ │ ├── ZeppOsLogsService.java │ │ │ │ │ │ │ ├── ZeppOsLoyaltyCardService.java │ │ │ │ │ │ │ ├── ZeppOsMorningUpdatesService.java │ │ │ │ │ │ │ ├── ZeppOsMusicService.java │ │ │ │ │ │ │ ├── ZeppOsNotificationService.java │ │ │ │ │ │ │ ├── ZeppOsPhoneService.java │ │ │ │ │ │ │ ├── ZeppOsRemindersService.java │ │ │ │ │ │ │ ├── ZeppOsServicesService.java │ │ │ │ │ │ │ ├── ZeppOsShortcutCardsService.java │ │ │ │ │ │ │ ├── ZeppOsWatchfaceService.java │ │ │ │ │ │ │ └── ZeppOsWifiService.java │ │ │ │ │ ├── huawei │ │ │ │ │ │ ├── AsynchronousResponse.java │ │ │ │ │ │ ├── HuaweiAppManager.java │ │ │ │ │ │ ├── HuaweiBRSupport.java │ │ │ │ │ │ ├── HuaweiEphemerisManager.java │ │ │ │ │ │ ├── HuaweiFileDownloadManager.java │ │ │ │ │ │ ├── HuaweiFreebudsSupport.java │ │ │ │ │ │ ├── HuaweiFwHelper.java │ │ │ │ │ │ ├── HuaweiLESupport.java │ │ │ │ │ │ ├── HuaweiMusicManager.java │ │ │ │ │ │ ├── HuaweiP2PManager.java │ │ │ │ │ │ ├── HuaweiSupportProvider.java │ │ │ │ │ │ ├── HuaweiSyncState.java │ │ │ │ │ │ ├── HuaweiUploadManager.java │ │ │ │ │ │ ├── HuaweiWatchfaceManager.java │ │ │ │ │ │ ├── HuaweiWeatherManager.java │ │ │ │ │ │ ├── HuaweiWorkoutGbParser.java │ │ │ │ │ │ ├── HuaweiWorkoutUtils.java │ │ │ │ │ │ ├── ResponseManager.java │ │ │ │ │ │ ├── p2p │ │ │ │ │ │ │ ├── HuaweiBaseP2PService.java │ │ │ │ │ │ │ ├── HuaweiP2PCalendarService.java │ │ │ │ │ │ │ ├── HuaweiP2PDataDictionarySyncService.java │ │ │ │ │ │ │ └── HuaweiP2PTrackService.java │ │ │ │ │ │ └── requests │ │ │ │ │ │ │ ├── AcceptAgreementsRequest.java │ │ │ │ │ │ │ ├── AlarmsRequest.java │ │ │ │ │ │ │ ├── DebugRequest.java │ │ │ │ │ │ │ ├── GetActivityTypeRequest.java │ │ │ │ │ │ │ ├── GetAppInfoParams.java │ │ │ │ │ │ │ ├── GetAppNames.java │ │ │ │ │ │ │ ├── GetAuthRequest.java │ │ │ │ │ │ │ ├── GetBatteryLevelRequest.java │ │ │ │ │ │ │ ├── GetBondParamsRequest.java │ │ │ │ │ │ │ ├── GetBondRequest.java │ │ │ │ │ │ │ ├── GetConnectStatusRequest.java │ │ │ │ │ │ │ ├── GetContactsCount.java │ │ │ │ │ │ │ ├── GetDeviceStatusRequest.java │ │ │ │ │ │ │ ├── GetDndLiftWristTypeRequest.java │ │ │ │ │ │ │ ├── GetEventAlarmList.java │ │ │ │ │ │ │ ├── GetExpandCapabilityRequest.java │ │ │ │ │ │ │ ├── GetExtendedMusicInfoParams.java │ │ │ │ │ │ │ ├── GetFileBlockRequest.java │ │ │ │ │ │ │ ├── GetFileDownloadCompleteRequest.java │ │ │ │ │ │ │ ├── GetFileDownloadInitRequest.java │ │ │ │ │ │ │ ├── GetFileInfoRequest.java │ │ │ │ │ │ │ ├── GetFileParametersRequest.java │ │ │ │ │ │ │ ├── GetFitnessTotalsRequest.java │ │ │ │ │ │ │ ├── GetGpsParameterRequest.java │ │ │ │ │ │ │ ├── GetHiChainRequest.java │ │ │ │ │ │ │ ├── GetLinkParamsRequest.java │ │ │ │ │ │ │ ├── GetMusicInfoParams.java │ │ │ │ │ │ │ ├── GetMusicList.java │ │ │ │ │ │ │ ├── GetMusicPlaylist.java │ │ │ │ │ │ │ ├── GetMusicPlaylistMusics.java │ │ │ │ │ │ │ ├── GetNotificationCapabilitiesRequest.java │ │ │ │ │ │ │ ├── GetNotificationConstraintsRequest.java │ │ │ │ │ │ │ ├── GetPhoneInfoRequest.java │ │ │ │ │ │ │ ├── GetPincodeRequest.java │ │ │ │ │ │ │ ├── GetProductInformationRequest.java │ │ │ │ │ │ │ ├── GetSecurityNegotiationRequest.java │ │ │ │ │ │ │ ├── GetSettingRelatedRequest.java │ │ │ │ │ │ │ ├── GetSleepDataCountRequest.java │ │ │ │ │ │ │ ├── GetSleepDataRequest.java │ │ │ │ │ │ │ ├── GetSmartAlarmList.java │ │ │ │ │ │ │ ├── GetStepDataCountRequest.java │ │ │ │ │ │ │ ├── GetStepDataRequest.java │ │ │ │ │ │ │ ├── GetSupportedCommandsRequest.java │ │ │ │ │ │ │ ├── GetSupportedServicesRequest.java │ │ │ │ │ │ │ ├── GetWatchfaceParams.java │ │ │ │ │ │ │ ├── GetWatchfacesList.java │ │ │ │ │ │ │ ├── GetWatchfacesNames.java │ │ │ │ │ │ │ ├── GetWearStatusRequest.java │ │ │ │ │ │ │ ├── GetWorkoutCountRequest.java │ │ │ │ │ │ │ ├── GetWorkoutDataRequest.java │ │ │ │ │ │ │ ├── GetWorkoutPaceRequest.java │ │ │ │ │ │ │ ├── GetWorkoutSwimSegmentsRequest.java │ │ │ │ │ │ │ ├── GetWorkoutTotalsRequest.java │ │ │ │ │ │ │ ├── Request.java │ │ │ │ │ │ │ ├── SendAccountRequest.java │ │ │ │ │ │ │ ├── SendAppDelete.java │ │ │ │ │ │ │ ├── SendCameraRemoteSetupEvent.java │ │ │ │ │ │ │ ├── SendDeviceReportThreshold.java │ │ │ │ │ │ │ ├── SendDndAddRequest.java │ │ │ │ │ │ │ ├── SendDndDeleteRequest.java │ │ │ │ │ │ │ ├── SendEphemerisDataRequestResponse.java │ │ │ │ │ │ │ ├── SendEphemerisFileConsultResponse.java │ │ │ │ │ │ │ ├── SendEphemerisFileListResponse.java │ │ │ │ │ │ │ ├── SendEphemerisFileStatusRequest.java │ │ │ │ │ │ │ ├── SendEphemerisFileUploadChunk.java │ │ │ │ │ │ │ ├── SendEphemerisFileUploadDoneResponse.java │ │ │ │ │ │ │ ├── SendEphemerisOperatorResponse.java │ │ │ │ │ │ │ ├── SendEphemerisParameterConsultRequest.java │ │ │ │ │ │ │ ├── SendEphemerisSingleFileInfoResponse.java │ │ │ │ │ │ │ ├── SendExtendedAccountRequest.java │ │ │ │ │ │ │ ├── SendFactoryResetRequest.java │ │ │ │ │ │ │ ├── SendFileUploadAck.java │ │ │ │ │ │ │ ├── SendFileUploadChunk.java │ │ │ │ │ │ │ ├── SendFileUploadComplete.java │ │ │ │ │ │ │ ├── SendFileUploadHash.java │ │ │ │ │ │ │ ├── SendFileUploadInfo.java │ │ │ │ │ │ │ ├── SendFitnessGoalRequest.java │ │ │ │ │ │ │ ├── SendFitnessUserInfoRequest.java │ │ │ │ │ │ │ ├── SendGpsAndTimeToDeviceRequest.java │ │ │ │ │ │ │ ├── SendGpsDataRequest.java │ │ │ │ │ │ │ ├── SendGpsStatusRequest.java │ │ │ │ │ │ │ ├── SendHeartRateZonesConfig.java │ │ │ │ │ │ │ ├── SendMenstrualCapabilityRequest.java │ │ │ │ │ │ │ ├── SendMenstrualModifyTimeRequest.java │ │ │ │ │ │ │ ├── SendMusicOperation.java │ │ │ │ │ │ │ ├── SendNotificationRequest.java │ │ │ │ │ │ │ ├── SendNotifyHeartRateCapabilityRequest.java │ │ │ │ │ │ │ ├── SendNotifyRestHeartRateCapabilityRequest.java │ │ │ │ │ │ │ ├── SendP2PCommand.java │ │ │ │ │ │ │ ├── SendRunPaceConfigRequest.java │ │ │ │ │ │ │ ├── SendSetContactsRequest.java │ │ │ │ │ │ │ ├── SendSetUpDeviceStatusRequest.java │ │ │ │ │ │ │ ├── SendUploadMusicFileInfoResponse.java │ │ │ │ │ │ │ ├── SendWatchfaceConfirm.java │ │ │ │ │ │ │ ├── SendWatchfaceOperation.java │ │ │ │ │ │ │ ├── SendWeatherCurrentRequest.java │ │ │ │ │ │ │ ├── SendWeatherDeviceRequest.java │ │ │ │ │ │ │ ├── SendWeatherErrorRequest.java │ │ │ │ │ │ │ ├── SendWeatherExtendedSupportRequest.java │ │ │ │ │ │ │ ├── SendWeatherForecastRequest.java │ │ │ │ │ │ │ ├── SendWeatherStartRequest.java │ │ │ │ │ │ │ ├── SendWeatherSunMoonSupportRequest.java │ │ │ │ │ │ │ ├── SendWeatherSupportRequest.java │ │ │ │ │ │ │ ├── SendWeatherUnitRequest.java │ │ │ │ │ │ │ ├── SetActivateOnLiftRequest.java │ │ │ │ │ │ │ ├── SetActivityReminderRequest.java │ │ │ │ │ │ │ ├── SetAudioModeRequest.java │ │ │ │ │ │ │ ├── SetAutomaticHeartrateRequest.java │ │ │ │ │ │ │ ├── SetAutomaticSpoRequest.java │ │ │ │ │ │ │ ├── SetDateFormatRequest.java │ │ │ │ │ │ │ ├── SetDisconnectNotification.java │ │ │ │ │ │ │ ├── SetLanguageSettingRequest.java │ │ │ │ │ │ │ ├── SetMediumToStrengthThresholdRequest.java │ │ │ │ │ │ │ ├── SetMusicRequest.java │ │ │ │ │ │ │ ├── SetMusicStatusRequest.java │ │ │ │ │ │ │ ├── SetNavigateOnRotateRequest.java │ │ │ │ │ │ │ ├── SetNotificationRequest.java │ │ │ │ │ │ │ ├── SetPauseWhenRemovedFromEarRequest.java │ │ │ │ │ │ │ ├── SetSkinTemperatureMeasurement.java │ │ │ │ │ │ │ ├── SetTemperatureUnitSetting.java │ │ │ │ │ │ │ ├── SetTimeRequest.java │ │ │ │ │ │ │ ├── SetTimeZoneIdRequest.java │ │ │ │ │ │ │ ├── SetTruSleepRequest.java │ │ │ │ │ │ │ ├── SetWearLocationRequest.java │ │ │ │ │ │ │ ├── SetWearMessagePushRequest.java │ │ │ │ │ │ │ ├── SetWorkModeRequest.java │ │ │ │ │ │ │ ├── StopFindPhoneRequest.java │ │ │ │ │ │ │ └── StopNotificationRequest.java │ │ │ │ │ ├── id115 │ │ │ │ │ │ ├── AbstractID115Operation.java │ │ │ │ │ │ ├── FetchActivityOperation.java │ │ │ │ │ │ ├── ID115Support.java │ │ │ │ │ │ └── SendNotificationOperation.java │ │ │ │ │ ├── idasen │ │ │ │ │ │ └── IdasenDeviceSupport.java │ │ │ │ │ ├── itag │ │ │ │ │ │ └── ITagSupport.java │ │ │ │ │ ├── jyou │ │ │ │ │ │ ├── BFH16DeviceSupport.java │ │ │ │ │ │ ├── JYouSupport.java │ │ │ │ │ │ ├── RealtimeSamplesSupport.java │ │ │ │ │ │ ├── TeclastH30 │ │ │ │ │ │ │ └── TeclastH30Support.java │ │ │ │ │ │ └── y5 │ │ │ │ │ │ │ └── Y5Support.java │ │ │ │ │ ├── lefun │ │ │ │ │ │ ├── LefunDeviceSupport.java │ │ │ │ │ │ └── requests │ │ │ │ │ │ │ ├── AbstractSendNotificationRequest.java │ │ │ │ │ │ │ ├── FindDeviceRequest.java │ │ │ │ │ │ │ ├── GetActivityDataRequest.java │ │ │ │ │ │ │ ├── GetBatteryLevelRequest.java │ │ │ │ │ │ │ ├── GetEnabledFeaturesRequest.java │ │ │ │ │ │ │ ├── GetFirmwareInfoRequest.java │ │ │ │ │ │ │ ├── GetGeneralSettingsRequest.java │ │ │ │ │ │ │ ├── GetHydrationReminderIntervalRequest.java │ │ │ │ │ │ │ ├── GetPpgDataRequest.java │ │ │ │ │ │ │ ├── GetSedentaryReminderIntervalRequest.java │ │ │ │ │ │ │ ├── GetSleepDataRequest.java │ │ │ │ │ │ │ ├── MultiFetchRequest.java │ │ │ │ │ │ │ ├── Request.java │ │ │ │ │ │ │ ├── SendCallNotificationRequest.java │ │ │ │ │ │ │ ├── SendNotificationRequest.java │ │ │ │ │ │ │ ├── SetAlarmRequest.java │ │ │ │ │ │ │ ├── SetEnabledFeaturesRequest.java │ │ │ │ │ │ │ ├── SetGeneralSettingsRequest.java │ │ │ │ │ │ │ ├── SetHydrationReminderIntervalRequest.java │ │ │ │ │ │ │ ├── SetLanguageRequest.java │ │ │ │ │ │ │ ├── SetProfileRequest.java │ │ │ │ │ │ │ ├── SetSedentaryReminderIntervalRequest.java │ │ │ │ │ │ │ ├── SetTimeRequest.java │ │ │ │ │ │ │ └── StartPpgRequest.java │ │ │ │ │ ├── lenovo │ │ │ │ │ │ ├── operations │ │ │ │ │ │ │ └── InitOperation.java │ │ │ │ │ │ └── watchxplus │ │ │ │ │ │ │ └── WatchXPlusDeviceSupport.java │ │ │ │ │ ├── liveview │ │ │ │ │ │ ├── LiveviewIoThread.java │ │ │ │ │ │ ├── LiveviewProtocol.java │ │ │ │ │ │ └── LiveviewSupport.java │ │ │ │ │ ├── makibeshr3 │ │ │ │ │ │ └── MakibesHR3DeviceSupport.java │ │ │ │ │ ├── marstek │ │ │ │ │ │ └── MarstekB2500DeviceSupport.java │ │ │ │ │ ├── miband │ │ │ │ │ │ ├── AbstractInfo.java │ │ │ │ │ │ ├── AbstractMi1FirmwareInfo.java │ │ │ │ │ │ ├── AbstractMi1SFirmwareInfo.java │ │ │ │ │ │ ├── AbstractMiFirmwareInfo.java │ │ │ │ │ │ ├── BatteryInfo.java │ │ │ │ │ │ ├── CheckAuthenticationNeededAction.java │ │ │ │ │ │ ├── CompositeMiFirmwareInfo.java │ │ │ │ │ │ ├── DeviceInfo.java │ │ │ │ │ │ ├── Mi1AFirmwareInfo.java │ │ │ │ │ │ ├── Mi1FirmwareInfo.java │ │ │ │ │ │ ├── Mi1SFirmwareInfo.java │ │ │ │ │ │ ├── Mi1SFirmwareInfoFW1.java │ │ │ │ │ │ ├── Mi1SFirmwareInfoFW2.java │ │ │ │ │ │ ├── MiBandSupport.java │ │ │ │ │ │ ├── NoNotificationStrategy.java │ │ │ │ │ │ ├── NotificationStrategy.java │ │ │ │ │ │ ├── RealtimeSamplesSupport.java │ │ │ │ │ │ ├── TestMi1AFirmwareInfo.java │ │ │ │ │ │ ├── V1NotificationStrategy.java │ │ │ │ │ │ ├── V2NotificationStrategy.java │ │ │ │ │ │ └── operations │ │ │ │ │ │ │ ├── AbstractMiBand1Operation.java │ │ │ │ │ │ │ ├── AbstractMiBandOperation.java │ │ │ │ │ │ │ ├── FetchActivityOperation.java │ │ │ │ │ │ │ ├── OperationStatus.java │ │ │ │ │ │ │ └── UpdateFirmwareOperation.java │ │ │ │ │ ├── mijia_lywsd │ │ │ │ │ │ └── MijiaLywsdSupport.java │ │ │ │ │ ├── miscale │ │ │ │ │ │ ├── MiCompositionScaleDeviceSupport.java │ │ │ │ │ │ ├── MiSmartScaleDeviceSupport.java │ │ │ │ │ │ └── WeightMeasurement.java │ │ │ │ │ ├── moondrop │ │ │ │ │ │ ├── GaiaPacket.java │ │ │ │ │ │ ├── MoondropSpaceTravelDeviceSupport.java │ │ │ │ │ │ ├── MoondropSpaceTravelIOThread.java │ │ │ │ │ │ └── MoondropSpaceTravelProtocol.java │ │ │ │ │ ├── no1f1 │ │ │ │ │ │ └── No1F1Support.java │ │ │ │ │ ├── nothing │ │ │ │ │ │ ├── Ear1Support.java │ │ │ │ │ │ ├── NothingIOThread.java │ │ │ │ │ │ └── NothingProtocol.java │ │ │ │ │ ├── nut │ │ │ │ │ │ └── NutSupport.java │ │ │ │ │ ├── oppo │ │ │ │ │ │ ├── OppoHeadphonesIoThread.java │ │ │ │ │ │ ├── OppoHeadphonesProtocol.java │ │ │ │ │ │ ├── OppoHeadphonesSupport.java │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── OppoCommand.java │ │ │ │ │ │ │ ├── TouchConfigSide.java │ │ │ │ │ │ │ ├── TouchConfigType.java │ │ │ │ │ │ │ └── TouchConfigValue.java │ │ │ │ │ ├── pebble │ │ │ │ │ │ ├── AppMessageHandler.java │ │ │ │ │ │ ├── AppMessageHandlerGBPebble.java │ │ │ │ │ │ ├── AppMessageHandlerHealthify.java │ │ │ │ │ │ ├── AppMessageHandlerM7S.java │ │ │ │ │ │ ├── AppMessageHandlerMarioTime.java │ │ │ │ │ │ ├── AppMessageHandlerMisfit.java │ │ │ │ │ │ ├── AppMessageHandlerMorpheuz.java │ │ │ │ │ │ ├── AppMessageHandlerObsidian.java │ │ │ │ │ │ ├── AppMessageHandlerPebStyle.java │ │ │ │ │ │ ├── AppMessageHandlerRealWeather.java │ │ │ │ │ │ ├── AppMessageHandlerSimplyLight.java │ │ │ │ │ │ ├── AppMessageHandlerSquare.java │ │ │ │ │ │ ├── AppMessageHandlerTimeStylePebble.java │ │ │ │ │ │ ├── AppMessageHandlerTrekVolle.java │ │ │ │ │ │ ├── AppMessageHandlerYWeather.java │ │ │ │ │ │ ├── AppMessageHandlerZalewszczak.java │ │ │ │ │ │ ├── DatalogSession.java │ │ │ │ │ │ ├── DatalogSessionAnalytics.java │ │ │ │ │ │ ├── DatalogSessionHealthHR.java │ │ │ │ │ │ ├── DatalogSessionHealthOverlayData.java │ │ │ │ │ │ ├── DatalogSessionHealthSleep.java │ │ │ │ │ │ ├── DatalogSessionHealthSteps.java │ │ │ │ │ │ ├── DatalogSessionPebbleHealth.java │ │ │ │ │ │ ├── PebbleActiveAppTracker.java │ │ │ │ │ │ ├── PebbleIoThread.java │ │ │ │ │ │ ├── PebbleKitSupport.java │ │ │ │ │ │ ├── PebbleProtocol.java │ │ │ │ │ │ ├── PebbleSupport.java │ │ │ │ │ │ ├── ble │ │ │ │ │ │ │ ├── PebbleGATTClient.java │ │ │ │ │ │ │ ├── PebbleGATTServer.java │ │ │ │ │ │ │ └── PebbleLESupport.java │ │ │ │ │ │ └── webview │ │ │ │ │ │ │ ├── CurrentPosition.java │ │ │ │ │ │ │ ├── GBChromeClient.java │ │ │ │ │ │ │ ├── GBWebClient.java │ │ │ │ │ │ │ └── JSInterface.java │ │ │ │ │ ├── pinetime │ │ │ │ │ │ └── PineTimeJFSupport.java │ │ │ │ │ ├── qc35 │ │ │ │ │ │ ├── QC35BaseSupport.java │ │ │ │ │ │ ├── QC35IOThread.java │ │ │ │ │ │ └── QC35Protocol.java │ │ │ │ │ ├── qhybrid │ │ │ │ │ │ ├── QHybridBaseSupport.java │ │ │ │ │ │ ├── QHybridSupport.java │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── WatchAdapter.java │ │ │ │ │ │ │ ├── WatchAdapterFactory.java │ │ │ │ │ │ │ ├── fossil │ │ │ │ │ │ │ │ └── FossilWatchAdapter.java │ │ │ │ │ │ │ ├── fossil_hr │ │ │ │ │ │ │ │ └── FossilHRWatchAdapter.java │ │ │ │ │ │ │ └── misfit │ │ │ │ │ │ │ │ └── MisfitWatchAdapter.java │ │ │ │ │ │ ├── buttonconfig │ │ │ │ │ │ │ ├── ConfigFileBuilder.java │ │ │ │ │ │ │ └── ConfigPayload.java │ │ │ │ │ │ ├── encoder │ │ │ │ │ │ │ └── RLEEncoder.java │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ └── FileHandle.java │ │ │ │ │ │ ├── parser │ │ │ │ │ │ │ ├── ActivityEntry.java │ │ │ │ │ │ │ └── ActivityFileParser.java │ │ │ │ │ │ └── requests │ │ │ │ │ │ │ ├── Request.java │ │ │ │ │ │ │ ├── fossil │ │ │ │ │ │ │ ├── FossilRequest.java │ │ │ │ │ │ │ ├── RequestMtuRequest.java │ │ │ │ │ │ │ ├── SetDeviceStateRequest.java │ │ │ │ │ │ │ ├── alarm │ │ │ │ │ │ │ │ ├── Alarm.java │ │ │ │ │ │ │ │ ├── AlarmsGetRequest.java │ │ │ │ │ │ │ │ └── AlarmsSetRequest.java │ │ │ │ │ │ │ ├── button │ │ │ │ │ │ │ │ └── ButtonConfigurationGetRequest.java │ │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ │ ├── ConfigurationGetRequest.java │ │ │ │ │ │ │ │ └── ConfigurationPutRequest.java │ │ │ │ │ │ │ ├── connection │ │ │ │ │ │ │ │ └── SetConnectionParametersRequest.java │ │ │ │ │ │ │ ├── device_info │ │ │ │ │ │ │ │ ├── DeviceInfo.java │ │ │ │ │ │ │ │ ├── DeviceSecurityVersionInfo.java │ │ │ │ │ │ │ │ ├── GetDeviceInfoRequest.java │ │ │ │ │ │ │ │ └── SupportedFileVersionsInfo.java │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ ├── FileCloseAndPutRequest.java │ │ │ │ │ │ │ │ ├── FileCloseRequest.java │ │ │ │ │ │ │ │ ├── FileDeleteRequest.java │ │ │ │ │ │ │ │ ├── FileGetRawRequest.java │ │ │ │ │ │ │ │ ├── FileGetRequest.java │ │ │ │ │ │ │ │ ├── FileLookupAndGetRequest.java │ │ │ │ │ │ │ │ ├── FileLookupRequest.java │ │ │ │ │ │ │ │ ├── FilePutRawRequest.java │ │ │ │ │ │ │ │ ├── FilePutRequest.java │ │ │ │ │ │ │ │ ├── FileVerifyRequest.java │ │ │ │ │ │ │ │ └── FirmwareFilePutRequest.java │ │ │ │ │ │ │ ├── microapp │ │ │ │ │ │ │ │ ├── MicroAppCommand.java │ │ │ │ │ │ │ │ └── PlayCrazyShitRequest.java │ │ │ │ │ │ │ └── notification │ │ │ │ │ │ │ │ ├── DismissTextNotificationRequest.java │ │ │ │ │ │ │ │ ├── NotificationFilterGetRequest.java │ │ │ │ │ │ │ │ ├── NotificationFilterPutRequest.java │ │ │ │ │ │ │ │ ├── NotificationType.java │ │ │ │ │ │ │ │ ├── PlayCallNotificationRequest.java │ │ │ │ │ │ │ │ ├── PlayNotificationRequest.java │ │ │ │ │ │ │ │ └── PlayTextNotificationRequest.java │ │ │ │ │ │ │ ├── fossil_hr │ │ │ │ │ │ │ ├── alexa │ │ │ │ │ │ │ │ └── AlexaMessageSetRequest.java │ │ │ │ │ │ │ ├── application │ │ │ │ │ │ │ │ ├── ApplicationInformation.java │ │ │ │ │ │ │ │ └── ApplicationsListRequest.java │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ │ └── ConfirmAppStatusRequest.java │ │ │ │ │ │ │ ├── authentication │ │ │ │ │ │ │ │ ├── AuthenticationRequest.java │ │ │ │ │ │ │ │ ├── CheckDeviceNeedsConfirmationRequest.java │ │ │ │ │ │ │ │ ├── CheckDevicePairingRequest.java │ │ │ │ │ │ │ │ ├── ConfirmOnDeviceRequest.java │ │ │ │ │ │ │ │ ├── PerformDevicePairingRequest.java │ │ │ │ │ │ │ │ └── VerifyPrivateKeyRequest.java │ │ │ │ │ │ │ ├── buttons │ │ │ │ │ │ │ │ ├── ButtonConfiguration.java │ │ │ │ │ │ │ │ └── ButtonConfigurationPutRequest.java │ │ │ │ │ │ │ ├── commute │ │ │ │ │ │ │ │ └── CommuteConfigPutRequest.java │ │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ │ ├── ConfigurationGetRequest.java │ │ │ │ │ │ │ │ └── ConfigurationPutRequest.java │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ ├── AssetFile.java │ │ │ │ │ │ │ │ ├── AssetFilePutRequest.java │ │ │ │ │ │ │ │ ├── FileEncryptedGetRequest.java │ │ │ │ │ │ │ │ ├── FileEncryptedInterface.java │ │ │ │ │ │ │ │ ├── FileEncryptedLookupAndGetRequest.java │ │ │ │ │ │ │ │ ├── FileEncryptedPutRequest.java │ │ │ │ │ │ │ │ └── ResultCode.java │ │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ │ ├── AssetImage.java │ │ │ │ │ │ │ │ ├── AssetImageFactory.java │ │ │ │ │ │ │ │ ├── ImageConverter.java │ │ │ │ │ │ │ │ └── ImagesSetRequest.java │ │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ │ └── JsonPutRequest.java │ │ │ │ │ │ │ ├── menu │ │ │ │ │ │ │ │ └── SetCommuteMenuMessage.java │ │ │ │ │ │ │ ├── music │ │ │ │ │ │ │ │ ├── MusicControlRequest.java │ │ │ │ │ │ │ │ └── MusicInfoSetRequest.java │ │ │ │ │ │ │ ├── notification │ │ │ │ │ │ │ │ ├── NotificationFilterPutHRRequest.java │ │ │ │ │ │ │ │ ├── NotificationImage.java │ │ │ │ │ │ │ │ └── NotificationImagePutRequest.java │ │ │ │ │ │ │ ├── quickreply │ │ │ │ │ │ │ │ ├── QuickReplyConfigurationPutRequest.java │ │ │ │ │ │ │ │ └── QuickReplyConfirmationPutRequest.java │ │ │ │ │ │ │ ├── theme │ │ │ │ │ │ │ │ └── SelectedThemePutRequest.java │ │ │ │ │ │ │ ├── translation │ │ │ │ │ │ │ │ ├── TranslationData.java │ │ │ │ │ │ │ │ ├── TranslationItem.java │ │ │ │ │ │ │ │ ├── TranslationsGetRequest.java │ │ │ │ │ │ │ │ └── TranslationsPutRequest.java │ │ │ │ │ │ │ ├── widget │ │ │ │ │ │ │ │ ├── CustomBackgroundWidgetElement.java │ │ │ │ │ │ │ │ ├── CustomTextWidgetElement.java │ │ │ │ │ │ │ │ ├── CustomWidget.java │ │ │ │ │ │ │ │ ├── CustomWidgetElement.java │ │ │ │ │ │ │ │ ├── Widget.java │ │ │ │ │ │ │ │ └── WidgetsPutRequest.java │ │ │ │ │ │ │ └── workout │ │ │ │ │ │ │ │ └── WorkoutRequestHandler.java │ │ │ │ │ │ │ └── misfit │ │ │ │ │ │ │ ├── ActivityPointGetRequest.java │ │ │ │ │ │ │ ├── AnimationRequest.java │ │ │ │ │ │ │ ├── BatteryLevelRequest.java │ │ │ │ │ │ │ ├── DownloadFileRequest.java │ │ │ │ │ │ │ ├── EraseFileRequest.java │ │ │ │ │ │ │ ├── EventStreamRequest.java │ │ │ │ │ │ │ ├── FactoryResetRequest.java │ │ │ │ │ │ │ ├── FileRequest.java │ │ │ │ │ │ │ ├── GetCountdownSettingsRequest.java │ │ │ │ │ │ │ ├── GetCurrentStepCountRequest.java │ │ │ │ │ │ │ ├── GetStepGoalRequest.java │ │ │ │ │ │ │ ├── GetTripleTapEnabledRequest.java │ │ │ │ │ │ │ ├── GetVibrationStrengthRequest.java │ │ │ │ │ │ │ ├── GoalTrackingGetRequest.java │ │ │ │ │ │ │ ├── GoalTrackingSetRequest.java │ │ │ │ │ │ │ ├── ListFilesRequest.java │ │ │ │ │ │ │ ├── MoveHandsRequest.java │ │ │ │ │ │ │ ├── OTAEnterRequest.java │ │ │ │ │ │ │ ├── OTAEraseRequest.java │ │ │ │ │ │ │ ├── OTAResetRequest.java │ │ │ │ │ │ │ ├── PlayNotificationRequest.java │ │ │ │ │ │ │ ├── PutSettingsFileRequest.java │ │ │ │ │ │ │ ├── ReleaseHandsControlRequest.java │ │ │ │ │ │ │ ├── RequestHandControlRequest.java │ │ │ │ │ │ │ ├── SaveCalibrationRequest.java │ │ │ │ │ │ │ ├── SetCountdownSettings.java │ │ │ │ │ │ │ ├── SetCurrentStepCountRequest.java │ │ │ │ │ │ │ ├── SetCurrentTimeServiceRequest.java │ │ │ │ │ │ │ ├── SetStepGoalRequest.java │ │ │ │ │ │ │ ├── SetTimeRequest.java │ │ │ │ │ │ │ ├── SetTripleTapEnabledRequest.java │ │ │ │ │ │ │ ├── SetVibrationStrengthRequest.java │ │ │ │ │ │ │ ├── SettingsFilePutRequest.java │ │ │ │ │ │ │ ├── UploadFileRequest.java │ │ │ │ │ │ │ └── VibrateRequest.java │ │ │ │ │ ├── redmibuds5pro │ │ │ │ │ │ ├── RedmiBuds5ProDeviceSupport.java │ │ │ │ │ │ ├── RedmiBuds5ProIOThread.java │ │ │ │ │ │ ├── RedmiBuds5ProProtocol.java │ │ │ │ │ │ └── protocol │ │ │ │ │ │ │ ├── AuthData.java │ │ │ │ │ │ │ ├── Authentication.java │ │ │ │ │ │ │ ├── Message.java │ │ │ │ │ │ │ ├── MessageType.java │ │ │ │ │ │ │ └── Opcode.java │ │ │ │ │ ├── roidmi │ │ │ │ │ │ ├── Roidmi1Protocol.java │ │ │ │ │ │ ├── Roidmi3Protocol.java │ │ │ │ │ │ ├── RoidmiIoThread.java │ │ │ │ │ │ ├── RoidmiProtocol.java │ │ │ │ │ │ └── RoidmiSupport.java │ │ │ │ │ ├── soflow │ │ │ │ │ │ └── SoFlowSupport.java │ │ │ │ │ ├── sony │ │ │ │ │ │ ├── headphones │ │ │ │ │ │ │ ├── SonyHeadphonesIoThread.java │ │ │ │ │ │ │ ├── SonyHeadphonesProtocol.java │ │ │ │ │ │ │ ├── SonyHeadphonesSupport.java │ │ │ │ │ │ │ ├── deviceevents │ │ │ │ │ │ │ │ └── SonyHeadphonesEnqueueRequestEvent.java │ │ │ │ │ │ │ └── protocol │ │ │ │ │ │ │ │ ├── Message.java │ │ │ │ │ │ │ │ ├── MessageType.java │ │ │ │ │ │ │ │ ├── Request.java │ │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ ├── AbstractSonyProtocolImpl.java │ │ │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ │ ├── PayloadTypeV1.java │ │ │ │ │ │ │ │ ├── SonyProtocolImplV1.java │ │ │ │ │ │ │ │ └── params │ │ │ │ │ │ │ │ │ ├── AudioCodec.java │ │ │ │ │ │ │ │ │ ├── BatteryType.java │ │ │ │ │ │ │ │ │ ├── NoiseCancellingOptimizerStatus.java │ │ │ │ │ │ │ │ │ └── VirtualSoundParam.java │ │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ │ ├── PayloadTypeV2.java │ │ │ │ │ │ │ │ └── SonyProtocolImplV2.java │ │ │ │ │ │ └── wena3 │ │ │ │ │ │ │ ├── SonyWena3DeviceSupport.java │ │ │ │ │ │ │ └── protocol │ │ │ │ │ │ │ ├── Wena3Packetable.java │ │ │ │ │ │ │ ├── logic │ │ │ │ │ │ │ ├── ActivityPacketCrc.java │ │ │ │ │ │ │ ├── ActivityPacketParser.java │ │ │ │ │ │ │ ├── ActivitySyncPacketProcessor.java │ │ │ │ │ │ │ ├── StepsSampleCollection.java │ │ │ │ │ │ │ └── parsers │ │ │ │ │ │ │ │ ├── BehaviorPacketParser.java │ │ │ │ │ │ │ │ ├── CaloriesPacketParser.java │ │ │ │ │ │ │ │ ├── EnergyPacketParser.java │ │ │ │ │ │ │ │ ├── HeartRatePacketParser.java │ │ │ │ │ │ │ │ ├── LinearSamplePacketParser.java │ │ │ │ │ │ │ │ ├── OneBytePerSamplePacketParser.java │ │ │ │ │ │ │ │ ├── SamplePacketParser.java │ │ │ │ │ │ │ │ ├── StepsPacketParser.java │ │ │ │ │ │ │ │ ├── StressPacketParser.java │ │ │ │ │ │ │ │ └── Vo2MaxPacketParser.java │ │ │ │ │ │ │ ├── packets │ │ │ │ │ │ │ ├── activity │ │ │ │ │ │ │ │ ├── ActivitySyncDataPacket.java │ │ │ │ │ │ │ │ ├── ActivitySyncStartPacket.java │ │ │ │ │ │ │ │ ├── ActivitySyncTimePacketTemplate.java │ │ │ │ │ │ │ │ ├── ActivitySyncTimePacketTypeA.java │ │ │ │ │ │ │ │ ├── ActivitySyncTimePacketTypeB.java │ │ │ │ │ │ │ │ ├── BehaviorSample.java │ │ │ │ │ │ │ │ └── Vo2MaxSample.java │ │ │ │ │ │ │ ├── calendar │ │ │ │ │ │ │ │ └── CalendarEntry.java │ │ │ │ │ │ │ ├── notification │ │ │ │ │ │ │ │ ├── EndOfIncomingCall.java │ │ │ │ │ │ │ │ ├── NotificationArrival.java │ │ │ │ │ │ │ │ ├── NotificationRemoval.java │ │ │ │ │ │ │ │ └── defines │ │ │ │ │ │ │ │ │ ├── LedColor.java │ │ │ │ │ │ │ │ │ ├── NotificationFlags.java │ │ │ │ │ │ │ │ │ ├── NotificationKind.java │ │ │ │ │ │ │ │ │ ├── VibrationCount.java │ │ │ │ │ │ │ │ │ ├── VibrationKind.java │ │ │ │ │ │ │ │ │ └── VibrationOptions.java │ │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ │ ├── AlarmListSettings.java │ │ │ │ │ │ │ │ ├── AutoPowerOffSettings.java │ │ │ │ │ │ │ │ ├── BodyPropertiesSetting.java │ │ │ │ │ │ │ │ ├── CalendarNotificationEnableSetting.java │ │ │ │ │ │ │ │ ├── CameraAppTypeSetting.java │ │ │ │ │ │ │ │ ├── DayStartHourSetting.java │ │ │ │ │ │ │ │ ├── DeviceButtonActionSetting.java │ │ │ │ │ │ │ │ ├── DisplaySetting.java │ │ │ │ │ │ │ │ ├── DoNotDisturbSettings.java │ │ │ │ │ │ │ │ ├── GoalStepsSetting.java │ │ │ │ │ │ │ │ ├── HomeIconOrderSetting.java │ │ │ │ │ │ │ │ ├── MenuIconSetting.java │ │ │ │ │ │ │ │ ├── SingleAlarmSetting.java │ │ │ │ │ │ │ │ ├── StatusPageOrderSetting.java │ │ │ │ │ │ │ │ ├── TimeSetting.java │ │ │ │ │ │ │ │ ├── TimeZoneSetting.java │ │ │ │ │ │ │ │ ├── VibrationSetting.java │ │ │ │ │ │ │ │ └── defines │ │ │ │ │ │ │ │ │ ├── DeviceButtonActionId.java │ │ │ │ │ │ │ │ │ ├── DisplayDesign.java │ │ │ │ │ │ │ │ │ ├── DisplayOrientation.java │ │ │ │ │ │ │ │ │ ├── FontSize.java │ │ │ │ │ │ │ │ │ ├── GenderSetting.java │ │ │ │ │ │ │ │ │ ├── HomeIconId.java │ │ │ │ │ │ │ │ │ ├── Language.java │ │ │ │ │ │ │ │ │ ├── MenuIconId.java │ │ │ │ │ │ │ │ │ ├── StatusPageId.java │ │ │ │ │ │ │ │ │ └── VibrationStrength.java │ │ │ │ │ │ │ └── status │ │ │ │ │ │ │ │ ├── BatteryLevelInfo.java │ │ │ │ │ │ │ │ ├── DeviceInfo.java │ │ │ │ │ │ │ │ ├── MusicInfo.java │ │ │ │ │ │ │ │ ├── NotificationServiceStatusRequest.java │ │ │ │ │ │ │ │ ├── StatusRequestType.java │ │ │ │ │ │ │ │ ├── Weather.java │ │ │ │ │ │ │ │ ├── WeatherDay.java │ │ │ │ │ │ │ │ ├── WeatherReport.java │ │ │ │ │ │ │ │ └── WeatherType.java │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── TimeUtil.java │ │ │ │ │ ├── sonyswr12 │ │ │ │ │ │ ├── SonySWR12Constants.java │ │ │ │ │ │ ├── SonySWR12DeviceSupport.java │ │ │ │ │ │ ├── SonySWR12HandlerThread.java │ │ │ │ │ │ ├── SonySWR12Util.java │ │ │ │ │ │ ├── entities │ │ │ │ │ │ │ ├── activity │ │ │ │ │ │ │ │ ├── ActivityBase.java │ │ │ │ │ │ │ │ ├── ActivityHeartRate.java │ │ │ │ │ │ │ │ ├── ActivitySleep.java │ │ │ │ │ │ │ │ ├── ActivityType.java │ │ │ │ │ │ │ │ ├── ActivityWithData.java │ │ │ │ │ │ │ │ ├── EventBase.java │ │ │ │ │ │ │ │ ├── EventCode.java │ │ │ │ │ │ │ │ ├── EventFactory.java │ │ │ │ │ │ │ │ ├── EventWithActivity.java │ │ │ │ │ │ │ │ ├── EventWithValue.java │ │ │ │ │ │ │ │ └── SleepLevel.java │ │ │ │ │ │ │ ├── alarm │ │ │ │ │ │ │ │ ├── AlarmRepeat.java │ │ │ │ │ │ │ │ ├── AlarmState.java │ │ │ │ │ │ │ │ ├── BandAlarm.java │ │ │ │ │ │ │ │ └── BandAlarms.java │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ │ ├── CommandCode.java │ │ │ │ │ │ │ │ ├── ControlPoint.java │ │ │ │ │ │ │ │ ├── ControlPointLowVibration.java │ │ │ │ │ │ │ │ └── ControlPointWithValue.java │ │ │ │ │ │ │ └── time │ │ │ │ │ │ │ │ ├── BandDaylightSavingTime.java │ │ │ │ │ │ │ │ ├── BandTime.java │ │ │ │ │ │ │ │ └── BandTimeZone.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── ByteArrayReader.java │ │ │ │ │ │ │ ├── ByteArrayWriter.java │ │ │ │ │ │ │ ├── IntFormat.java │ │ │ │ │ │ │ ├── UIntBitReader.java │ │ │ │ │ │ │ └── UIntBitWriter.java │ │ │ │ │ ├── soundcore │ │ │ │ │ │ ├── SoundcorePacket.java │ │ │ │ │ │ ├── liberty │ │ │ │ │ │ │ ├── SoundcoreLiberty3ProDeviceSupport.java │ │ │ │ │ │ │ ├── SoundcoreLiberty4NCDeviceSupport.java │ │ │ │ │ │ │ ├── SoundcoreLibertyIOThread.java │ │ │ │ │ │ │ ├── SoundcoreLibertyProtocol.java │ │ │ │ │ │ │ ├── TapAction.java │ │ │ │ │ │ │ └── TapFunction.java │ │ │ │ │ │ └── motion300 │ │ │ │ │ │ │ ├── SoundcoreMotion300DeviceSupport.java │ │ │ │ │ │ │ ├── SoundcoreMotion300IOThread.java │ │ │ │ │ │ │ └── SoundcoreMotion300Protocol.java │ │ │ │ │ ├── supercars │ │ │ │ │ │ └── SuperCarsSupport.java │ │ │ │ │ ├── test │ │ │ │ │ │ └── TestDeviceSupport.java │ │ │ │ │ ├── tlw64 │ │ │ │ │ │ └── TLW64Support.java │ │ │ │ │ ├── um25 │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ ├── CaptureGroup.java │ │ │ │ │ │ │ └── MeasurementData.java │ │ │ │ │ │ └── Support │ │ │ │ │ │ │ ├── UM25BaseSupport.java │ │ │ │ │ │ │ └── UM25Support.java │ │ │ │ │ ├── unknown │ │ │ │ │ │ └── UnknownDeviceSupport.java │ │ │ │ │ ├── vesc │ │ │ │ │ │ ├── CommandType.java │ │ │ │ │ │ ├── VescBaseDeviceSupport.java │ │ │ │ │ │ └── VescDeviceSupport.java │ │ │ │ │ ├── vibratissimo │ │ │ │ │ │ └── VibratissimoSupport.java │ │ │ │ │ ├── waspos │ │ │ │ │ │ └── WaspOSDeviceSupport.java │ │ │ │ │ ├── watch9 │ │ │ │ │ │ ├── Watch9DeviceSupport.java │ │ │ │ │ │ └── operations │ │ │ │ │ │ │ └── InitOperation.java │ │ │ │ │ ├── withingssteelhr │ │ │ │ │ │ ├── AuthenticationHandler.java │ │ │ │ │ │ ├── IconHelper.java │ │ │ │ │ │ ├── WithingsSteelHRDeviceSupport.java │ │ │ │ │ │ ├── activity │ │ │ │ │ │ │ ├── ActivityEntry.java │ │ │ │ │ │ │ ├── SleepActivitySampleHelper.java │ │ │ │ │ │ │ └── WithingsActivityType.java │ │ │ │ │ │ └── communication │ │ │ │ │ │ │ ├── WithingsServerAction.java │ │ │ │ │ │ │ ├── WithingsUUID.java │ │ │ │ │ │ │ ├── conversation │ │ │ │ │ │ │ ├── AbstractConversation.java │ │ │ │ │ │ │ ├── AbstractResponseHandler.java │ │ │ │ │ │ │ ├── ActivitySampleHandler.java │ │ │ │ │ │ │ ├── BatteryStateHandler.java │ │ │ │ │ │ │ ├── Conversation.java │ │ │ │ │ │ │ ├── ConversationObserver.java │ │ │ │ │ │ │ ├── ConversationQueue.java │ │ │ │ │ │ │ ├── HeartRateHandler.java │ │ │ │ │ │ │ ├── ResponseHandler.java │ │ │ │ │ │ │ ├── SetupFinishedHandler.java │ │ │ │ │ │ │ ├── SimpleConversation.java │ │ │ │ │ │ │ ├── SyncFinishedHandler.java │ │ │ │ │ │ │ └── WorkoutScreenListHandler.java │ │ │ │ │ │ │ ├── datastructures │ │ │ │ │ │ │ ├── ActivityHeartrate.java │ │ │ │ │ │ │ ├── ActivitySampleCalories.java │ │ │ │ │ │ │ ├── ActivitySampleCalories2.java │ │ │ │ │ │ │ ├── ActivitySampleDuration.java │ │ │ │ │ │ │ ├── ActivitySampleMovement.java │ │ │ │ │ │ │ ├── ActivitySampleRun.java │ │ │ │ │ │ │ ├── ActivitySampleSleep.java │ │ │ │ │ │ │ ├── ActivitySampleSwim.java │ │ │ │ │ │ │ ├── ActivitySampleTime.java │ │ │ │ │ │ │ ├── ActivitySampleUnknown.java │ │ │ │ │ │ │ ├── ActivitySampleWalk.java │ │ │ │ │ │ │ ├── ActivityTarget.java │ │ │ │ │ │ │ ├── AlarmName.java │ │ │ │ │ │ │ ├── AlarmSettings.java │ │ │ │ │ │ │ ├── AlarmStatus.java │ │ │ │ │ │ │ ├── AncsStatus.java │ │ │ │ │ │ │ ├── BatteryValues.java │ │ │ │ │ │ │ ├── Challenge.java │ │ │ │ │ │ │ ├── ChallengeResponse.java │ │ │ │ │ │ │ ├── DataStructureFactory.java │ │ │ │ │ │ │ ├── EndOfTransmission.java │ │ │ │ │ │ │ ├── GetActivitySamples.java │ │ │ │ │ │ │ ├── GlyphId.java │ │ │ │ │ │ │ ├── HeartRate.java │ │ │ │ │ │ │ ├── ImageData.java │ │ │ │ │ │ │ ├── ImageMetaData.java │ │ │ │ │ │ │ ├── LiveHeartRate.java │ │ │ │ │ │ │ ├── LiveWorkoutEnd.java │ │ │ │ │ │ │ ├── LiveWorkoutPauseState.java │ │ │ │ │ │ │ ├── LiveWorkoutStart.java │ │ │ │ │ │ │ ├── Locale.java │ │ │ │ │ │ │ ├── MoveHand.java │ │ │ │ │ │ │ ├── Probe.java │ │ │ │ │ │ │ ├── ProbeOsVersion.java │ │ │ │ │ │ │ ├── ProbeReply.java │ │ │ │ │ │ │ ├── ScreenSettings.java │ │ │ │ │ │ │ ├── SourceAppId.java │ │ │ │ │ │ │ ├── Status.java │ │ │ │ │ │ │ ├── Time.java │ │ │ │ │ │ │ ├── TypeVersion.java │ │ │ │ │ │ │ ├── User.java │ │ │ │ │ │ │ ├── UserSecret.java │ │ │ │ │ │ │ ├── UserUnit.java │ │ │ │ │ │ │ ├── UserUnitConstants.java │ │ │ │ │ │ │ ├── WithingsStructure.java │ │ │ │ │ │ │ ├── WithingsStructureType.java │ │ │ │ │ │ │ ├── WorkoutGpsState.java │ │ │ │ │ │ │ ├── WorkoutScreen.java │ │ │ │ │ │ │ ├── WorkoutScreenData.java │ │ │ │ │ │ │ ├── WorkoutScreenList.java │ │ │ │ │ │ │ └── WorkoutType.java │ │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ ├── AbstractMessage.java │ │ │ │ │ │ │ ├── ExpectedResponse.java │ │ │ │ │ │ │ ├── GlyphRequestHandler.java │ │ │ │ │ │ │ ├── Message.java │ │ │ │ │ │ │ ├── MessageBuilder.java │ │ │ │ │ │ │ ├── MessageFactory.java │ │ │ │ │ │ │ ├── SimpleHexToByteMessage.java │ │ │ │ │ │ │ ├── WithingsMessage.java │ │ │ │ │ │ │ ├── WithingsMessageType.java │ │ │ │ │ │ │ └── incoming │ │ │ │ │ │ │ │ ├── IncomingMessageHandler.java │ │ │ │ │ │ │ │ ├── IncomingMessageHandlerFactory.java │ │ │ │ │ │ │ │ ├── LiveHeartrateHandler.java │ │ │ │ │ │ │ │ ├── LiveWorkoutHandler.java │ │ │ │ │ │ │ │ ├── NotificationRequestHandler.java │ │ │ │ │ │ │ │ └── SyncRequestHandler.java │ │ │ │ │ │ │ └── notification │ │ │ │ │ │ │ ├── AncsConstants.java │ │ │ │ │ │ │ ├── GetNotificationAttributes.java │ │ │ │ │ │ │ ├── GetNotificationAttributesResponse.java │ │ │ │ │ │ │ ├── NotificationAttribute.java │ │ │ │ │ │ │ ├── NotificationProvider.java │ │ │ │ │ │ │ ├── NotificationSource.java │ │ │ │ │ │ │ └── RequestedNotificationAttribute.java │ │ │ │ │ ├── xiaomi │ │ │ │ │ │ ├── AbstractXiaomiSppProtocol.java │ │ │ │ │ │ ├── XiaomiAuthService.java │ │ │ │ │ │ ├── XiaomiBitmapUtils.java │ │ │ │ │ │ ├── XiaomiBleSupport.java │ │ │ │ │ │ ├── XiaomiChannelHandler.java │ │ │ │ │ │ ├── XiaomiCharacteristic.java │ │ │ │ │ │ ├── XiaomiConnectionSupport.java │ │ │ │ │ │ ├── XiaomiPreferences.java │ │ │ │ │ │ ├── XiaomiSppPacketV1.java │ │ │ │ │ │ ├── XiaomiSppPacketV2.java │ │ │ │ │ │ ├── XiaomiSppProtocolV1.java │ │ │ │ │ │ ├── XiaomiSppProtocolV2.java │ │ │ │ │ │ ├── XiaomiSppSupport.java │ │ │ │ │ │ ├── XiaomiSupport.java │ │ │ │ │ │ ├── XiaomiUuids.java │ │ │ │ │ │ ├── activity │ │ │ │ │ │ │ ├── XiaomiActivityFileFetcher.java │ │ │ │ │ │ │ ├── XiaomiActivityFileId.java │ │ │ │ │ │ │ ├── XiaomiActivityParser.java │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ ├── DailyDetailsParser.java │ │ │ │ │ │ │ │ ├── DailySummaryParser.java │ │ │ │ │ │ │ │ ├── ManualSamplesParser.java │ │ │ │ │ │ │ │ ├── SleepDetailsParser.java │ │ │ │ │ │ │ │ ├── SleepStagesParser.java │ │ │ │ │ │ │ │ ├── WorkoutGpsParser.java │ │ │ │ │ │ │ │ ├── WorkoutSummaryParser.java │ │ │ │ │ │ │ │ ├── XiaomiComplexActivityParser.java │ │ │ │ │ │ │ │ ├── XiaomiSimpleActivityParser.java │ │ │ │ │ │ │ │ └── XiaomiSimpleDataEntry.java │ │ │ │ │ │ └── services │ │ │ │ │ │ │ ├── AbstractXiaomiService.java │ │ │ │ │ │ │ ├── XiaomiCalendarService.java │ │ │ │ │ │ │ ├── XiaomiDataUploadService.java │ │ │ │ │ │ │ ├── XiaomiHealthService.java │ │ │ │ │ │ │ ├── XiaomiMusicService.java │ │ │ │ │ │ │ ├── XiaomiNotificationService.java │ │ │ │ │ │ │ ├── XiaomiPhonebookService.java │ │ │ │ │ │ │ ├── XiaomiScheduleService.java │ │ │ │ │ │ │ ├── XiaomiSystemService.java │ │ │ │ │ │ │ ├── XiaomiWatchfaceService.java │ │ │ │ │ │ │ └── XiaomiWeatherService.java │ │ │ │ │ ├── xwatch │ │ │ │ │ │ └── XWatchSupport.java │ │ │ │ │ └── zetime │ │ │ │ │ │ └── ZeTimeDeviceSupport.java │ │ │ │ ├── receivers │ │ │ │ │ ├── AutoConnectIntervalReceiver.java │ │ │ │ │ ├── GBAutoFetchReceiver.java │ │ │ │ │ ├── GBCallControlReceiver.java │ │ │ │ │ └── GBMusicControlReceiver.java │ │ │ │ └── serial │ │ │ │ │ ├── AbstractSerialDeviceSupport.java │ │ │ │ │ ├── GBDeviceIoThread.java │ │ │ │ │ └── GBDeviceProtocol.java │ │ │ │ └── util │ │ │ │ ├── .gitignore │ │ │ │ ├── Accumulator.java │ │ │ │ ├── ActivitySummaryUtils.java │ │ │ │ ├── AlarmUtils.java │ │ │ │ ├── AndroidUtils.java │ │ │ │ ├── ArrayUtils.java │ │ │ │ ├── BcdUtil.java │ │ │ │ ├── BitmapUtil.java │ │ │ │ ├── BondingInterface.java │ │ │ │ ├── BondingUtil.java │ │ │ │ ├── CRC32C.java │ │ │ │ ├── CheckSums.java │ │ │ │ ├── CryptoUtils.java │ │ │ │ ├── DashboardUtils.java │ │ │ │ ├── DateTimeUtils.java │ │ │ │ ├── DeviceHelper.java │ │ │ │ ├── ECDH_B163.java │ │ │ │ ├── EmojiConverter.java │ │ │ │ ├── FileUtils.java │ │ │ │ ├── FormatUtils.java │ │ │ │ ├── GB.java │ │ │ │ ├── GBChangeLog.java │ │ │ │ ├── GBPrefs.java │ │ │ │ ├── GBTarFile.java │ │ │ │ ├── GBTextToSpeech.java │ │ │ │ ├── GBToStringBuilder.java │ │ │ │ ├── GBZipFile.java │ │ │ │ ├── GridAutoFitLayoutManager.java │ │ │ │ ├── HttpUtils.java │ │ │ │ ├── ImportExportSharedPreferences.java │ │ │ │ ├── JavaExtensions.java │ │ │ │ ├── LimitedQueue.java │ │ │ │ ├── MapUtils.java │ │ │ │ ├── MediaManager.java │ │ │ │ ├── NotificationUtils.java │ │ │ │ ├── PebbleUtils.java │ │ │ │ ├── PendingIntentUtils.java │ │ │ │ ├── PermissionsUtils.java │ │ │ │ ├── Prefs.java │ │ │ │ ├── RangeMap.java │ │ │ │ ├── RtlUtils.java │ │ │ │ ├── SilentMode.java │ │ │ │ ├── StringUtils.java │ │ │ │ ├── SwipeEvents.java │ │ │ │ ├── TimePreference.java │ │ │ │ ├── UriHelper.java │ │ │ │ ├── Version.java │ │ │ │ ├── WebViewSingleton.java │ │ │ │ ├── WidgetPreferenceStorage.java │ │ │ │ ├── XDatePreference.java │ │ │ │ ├── XDatePreferenceFragment.java │ │ │ │ ├── XTimePreference.java │ │ │ │ ├── XTimePreferenceFragment.java │ │ │ │ ├── ZipFileException.java │ │ │ │ ├── backup │ │ │ │ ├── AbstractZipBackupJob.java │ │ │ │ ├── JsonBackupPreferences.java │ │ │ │ ├── ZipBackupCallback.java │ │ │ │ ├── ZipBackupExportJob.java │ │ │ │ ├── ZipBackupImportJob.java │ │ │ │ └── ZipBackupMetadata.java │ │ │ │ ├── calendar │ │ │ │ ├── CalendarEvent.java │ │ │ │ └── CalendarManager.java │ │ │ │ ├── dialogs │ │ │ │ ├── MaterialDialogFragment.java │ │ │ │ ├── MaterialEditTextPreferenceDialogFragment.java │ │ │ │ ├── MaterialListPreferenceDialogFragment.java │ │ │ │ ├── MaterialMultiSelectListPreferenceDialogFragment.java │ │ │ │ └── MaterialPreferenceDialogFragment.java │ │ │ │ ├── gpx │ │ │ │ ├── GpxParseException.java │ │ │ │ ├── GpxParser.java │ │ │ │ └── model │ │ │ │ │ ├── GpxFile.java │ │ │ │ │ ├── GpxTrack.java │ │ │ │ │ ├── GpxTrackPoint.java │ │ │ │ │ ├── GpxTrackSegment.java │ │ │ │ │ └── GpxWaypoint.java │ │ │ │ ├── gson │ │ │ │ └── GsonUtcDateAdapter.java │ │ │ │ ├── language │ │ │ │ ├── LanguageUtils.java │ │ │ │ ├── MultiTransliterator.java │ │ │ │ ├── SimpleTransliterator.java │ │ │ │ ├── Transliterator.java │ │ │ │ └── impl │ │ │ │ │ ├── ArabicTransliterator.java │ │ │ │ │ ├── ArmenianTransliterator.java │ │ │ │ │ ├── BengaliTransliterator.java │ │ │ │ │ ├── CommonSymbolsTransliterator.java │ │ │ │ │ ├── CroatianTransliterator.java │ │ │ │ │ ├── CzechTransliterator.java │ │ │ │ │ ├── EstonianTransliterator.java │ │ │ │ │ ├── ExtendedAsciiTransliterator.java │ │ │ │ │ ├── FlattenToAsciiTransliterator.java │ │ │ │ │ ├── FrenchTransliterator.java │ │ │ │ │ ├── GeorgianTransliterator.java │ │ │ │ │ ├── GermanTransliterator.java │ │ │ │ │ ├── GreekTransliterator.java │ │ │ │ │ ├── HebrewTransliterator.java │ │ │ │ │ ├── HungarianTransliterator.java │ │ │ │ │ ├── IcelandicTransliterator.java │ │ │ │ │ ├── KoreanTransliterator.java │ │ │ │ │ ├── LatvianTransliterator.java │ │ │ │ │ ├── LithuanianTransliterator.java │ │ │ │ │ ├── PersianTransliterator.java │ │ │ │ │ ├── PolishTransliterator.java │ │ │ │ │ ├── RussianTransliterator.java │ │ │ │ │ ├── ScandinavianTransliterator.java │ │ │ │ │ ├── SerbianTransliterator.java │ │ │ │ │ ├── TurkishTransliterator.java │ │ │ │ │ └── UkranianTransliterator.java │ │ │ │ ├── preferences │ │ │ │ ├── DevicePrefs.java │ │ │ │ ├── GBSimpleSummaryProvider.java │ │ │ │ ├── MinMaxTextWatcher.java │ │ │ │ └── PreferenceCategoryMultiline.java │ │ │ │ └── protobuf │ │ │ │ ├── ProtobufUtils.java │ │ │ │ └── messagefields │ │ │ │ ├── BytesMessageField.java │ │ │ │ ├── Int32MessageField.java │ │ │ │ ├── Int64MessageField.java │ │ │ │ ├── MessageField.java │ │ │ │ ├── NestedMessageField.java │ │ │ │ ├── RootMessageField.java │ │ │ │ ├── StringMessageField.java │ │ │ │ └── VarintMessageField.java │ │ ├── org │ │ │ └── bouncycastle │ │ │ │ └── shaded │ │ │ │ ├── crypto │ │ │ │ ├── BlockCipher.java │ │ │ │ ├── CipherParameters.java │ │ │ │ ├── CryptoException.java │ │ │ │ ├── DataLengthException.java │ │ │ │ ├── DefaultMultiBlockCipher.java │ │ │ │ ├── InvalidCipherTextException.java │ │ │ │ ├── Mac.java │ │ │ │ ├── MultiBlockCipher.java │ │ │ │ ├── OutputLengthException.java │ │ │ │ ├── RuntimeCryptoException.java │ │ │ │ ├── SkippingCipher.java │ │ │ │ ├── SkippingStreamCipher.java │ │ │ │ ├── StreamBlockCipher.java │ │ │ │ ├── StreamCipher.java │ │ │ │ ├── engines │ │ │ │ │ └── AESEngine.java │ │ │ │ ├── macs │ │ │ │ │ └── CBCBlockCipherMac.java │ │ │ │ ├── modes │ │ │ │ │ ├── AEADBlockCipher.java │ │ │ │ │ ├── AEADCipher.java │ │ │ │ │ ├── CBCBlockCipher.java │ │ │ │ │ ├── CBCModeCipher.java │ │ │ │ │ ├── CCMBlockCipher.java │ │ │ │ │ ├── CCMModeCipher.java │ │ │ │ │ ├── CTRModeCipher.java │ │ │ │ │ └── SICBlockCipher.java │ │ │ │ ├── paddings │ │ │ │ │ └── BlockCipherPadding.java │ │ │ │ └── params │ │ │ │ │ ├── AEADParameters.java │ │ │ │ │ ├── KeyParameter.java │ │ │ │ │ └── ParametersWithIV.java │ │ │ │ └── util │ │ │ │ ├── Arrays.java │ │ │ │ ├── Objects.java │ │ │ │ ├── Pack.java │ │ │ │ └── Strings.java │ │ └── ru │ │ │ └── gelin │ │ │ └── android │ │ │ └── weather │ │ │ └── notification │ │ │ └── ParcelableWeather2.java │ ├── lint.xml │ ├── project.properties │ ├── proto │ │ ├── garmin │ │ │ ├── garmin_contacts.proto │ │ │ ├── gdi_calendar_service.proto │ │ │ ├── gdi_core.proto │ │ │ ├── gdi_data_transfer_service.proto │ │ │ ├── gdi_device_status.proto │ │ │ ├── gdi_find_my_watch.proto │ │ │ ├── gdi_http_service.proto │ │ │ ├── gdi_notifications_service.proto │ │ │ ├── gdi_settings_service.proto │ │ │ ├── gdi_smart_proto.proto │ │ │ └── gdi_sms_notification.proto │ │ ├── huami.proto │ │ ├── smaq2oss.proto │ │ └── xiaomi.proto │ └── res │ │ ├── .gitignore │ │ ├── android-logger.properties │ │ ├── anim │ │ ├── bounceleft.xml │ │ ├── bounceright.xml │ │ ├── flyleft.xml │ │ ├── flyright.xml │ │ └── slidefromtop.xml │ │ ├── color │ │ ├── alarm_dow.xml │ │ ├── blacklist_checkboxes.xml │ │ └── btn_dark.xml │ │ ├── drawable-hdpi │ │ ├── ic_languagepack.png │ │ ├── ic_launcher.png │ │ ├── ic_notification.png │ │ ├── ic_notification_disconnected.png │ │ ├── ic_notification_disconnected_qhybrid.png │ │ ├── ic_notification_full_battery.png │ │ ├── ic_notification_low_battery.png │ │ ├── ic_notification_qhybrid.png │ │ ├── ic_systemapp.png │ │ ├── ic_watchapp.png │ │ └── ic_watchface.png │ │ ├── drawable-mdpi │ │ ├── ic_languagepack.png │ │ ├── ic_launcher.png │ │ ├── ic_notification.png │ │ ├── ic_notification_disconnected.png │ │ ├── ic_notification_disconnected_qhybrid.png │ │ ├── ic_notification_full_battery.png │ │ ├── ic_notification_low_battery.png │ │ ├── ic_notification_qhybrid.png │ │ ├── ic_systemapp.png │ │ ├── ic_watchapp.png │ │ └── ic_watchface.png │ │ ├── drawable-v21 │ │ └── splash.xml │ │ ├── drawable-xhdpi │ │ ├── ic_languagepack.png │ │ ├── ic_launcher.png │ │ ├── ic_notification.png │ │ ├── ic_notification_disconnected.png │ │ ├── ic_notification_disconnected_qhybrid.png │ │ ├── ic_notification_full_battery.png │ │ ├── ic_notification_low_battery.png │ │ ├── ic_notification_qhybrid.png │ │ ├── ic_systemapp.png │ │ ├── ic_watchapp.png │ │ └── ic_watchface.png │ │ ├── drawable-xxhdpi │ │ ├── ic_languagepack.png │ │ ├── ic_launcher.png │ │ ├── ic_notification.png │ │ ├── ic_notification_disconnected.png │ │ ├── ic_notification_disconnected_qhybrid.png │ │ ├── ic_notification_full_battery.png │ │ ├── ic_notification_low_battery.png │ │ ├── ic_notification_qhybrid.png │ │ ├── ic_systemapp.png │ │ ├── ic_watchapp.png │ │ └── ic_watchface.png │ │ ├── drawable │ │ ├── arrow_autofit_height.xml │ │ ├── baseline_bloodtype_24.xml │ │ ├── baseline_merge_24.xml │ │ ├── brand_speedtest.xml │ │ ├── gadgetbridge_img.xml │ │ ├── ic_access_alarms.xml │ │ ├── ic_access_time.xml │ │ ├── ic_action_find_lost_device.xml │ │ ├── ic_action_manage_apps.xml │ │ ├── ic_activity_archery.xml │ │ ├── ic_activity_badmington.xml │ │ ├── ic_activity_basketball.xml │ │ ├── ic_activity_bike_trainer.xml │ │ ├── ic_activity_biking.xml │ │ ├── ic_activity_billiard_pool.xml │ │ ├── ic_activity_boating.xml │ │ ├── ic_activity_bowling.xml │ │ ├── ic_activity_climbing.xml │ │ ├── ic_activity_cricket.xml │ │ ├── ic_activity_curling.xml │ │ ├── ic_activity_dumbbell.xml │ │ ├── ic_activity_eliptical.xml │ │ ├── ic_activity_exercise.xml │ │ ├── ic_activity_free_training.xml │ │ ├── ic_activity_frisbee.xml │ │ ├── ic_activity_graphs.xml │ │ ├── ic_activity_hiking.xml │ │ ├── ic_activity_hula_hoop.xml │ │ ├── ic_activity_ice_skating.xml │ │ ├── ic_activity_indoor_running.xml │ │ ├── ic_activity_kitesurfing.xml │ │ ├── ic_activity_not_measured.xml │ │ ├── ic_activity_obstacle_race.xml │ │ ├── ic_activity_outdoor_walking.xml │ │ ├── ic_activity_pilates.xml │ │ ├── ic_activity_pingpong.xml │ │ ├── ic_activity_rock_climbing.xml │ │ ├── ic_activity_rope_jump.xml │ │ ├── ic_activity_rowing.xml │ │ ├── ic_activity_running.xml │ │ ├── ic_activity_sailing.xml │ │ ├── ic_activity_sleep.xml │ │ ├── ic_activity_snorkeling.xml │ │ ├── ic_activity_soccer.xml │ │ ├── ic_activity_stacked.xml │ │ ├── ic_activity_stair_stepper.xml │ │ ├── ic_activity_stairs.xml │ │ ├── ic_activity_stretching.xml │ │ ├── ic_activity_sup.xml │ │ ├── ic_activity_surfing.xml │ │ ├── ic_activity_swimming.xml │ │ ├── ic_activity_threadmill.xml │ │ ├── ic_activity_tracks.xml │ │ ├── ic_activity_trail_run.xml │ │ ├── ic_activity_unknown.xml │ │ ├── ic_activity_unknown_small.xml │ │ ├── ic_activity_wakeboarding.xml │ │ ├── ic_activity_walking.xml │ │ ├── ic_activity_waterskiing.xml │ │ ├── ic_activity_watertubing.xml │ │ ├── ic_activity_windsurfing.xml │ │ ├── ic_activity_yoga.xml │ │ ├── ic_activitytracker.xml │ │ ├── ic_add.xml │ │ ├── ic_add_gray.xml │ │ ├── ic_alert_circle_outline.xml │ │ ├── ic_always_on_display.xml │ │ ├── ic_archive.xml │ │ ├── ic_arrow_circle_left.xml │ │ ├── ic_arrow_circle_right.xml │ │ ├── ic_arrow_upward.xml │ │ ├── ic_auto_awesome.xml │ │ ├── ic_battery.xml │ │ ├── ic_battery_20.xml │ │ ├── ic_battery_50.xml │ │ ├── ic_battery_80.xml │ │ ├── ic_battery_charging_20.xml │ │ ├── ic_battery_charging_50.xml │ │ ├── ic_battery_charging_80.xml │ │ ├── ic_battery_charging_full.xml │ │ ├── ic_battery_full.xml │ │ ├── ic_battery_unknown.xml │ │ ├── ic_beep.xml │ │ ├── ic_block.xml │ │ ├── ic_bluetooth.xml │ │ ├── ic_bluetooth_searching.xml │ │ ├── ic_bolt.xml │ │ ├── ic_brightness_2.xml │ │ ├── ic_buds_pro_case.xml │ │ ├── ic_buds_pro_left.xml │ │ ├── ic_buds_pro_right.xml │ │ ├── ic_calculate.xml │ │ ├── ic_calendar_from.xml │ │ ├── ic_calendar_sync.xml │ │ ├── ic_calendar_to.xml │ │ ├── ic_calendar_today.xml │ │ ├── ic_calories.xml │ │ ├── ic_camera_remote.xml │ │ ├── ic_chair.xml │ │ ├── ic_checklist.xml │ │ ├── ic_circle.xml │ │ ├── ic_create.xml │ │ ├── ic_create_new_folder.xml │ │ ├── ic_dashboard.xml │ │ ├── ic_date_range.xml │ │ ├── ic_delete.xml │ │ ├── ic_delete_forever.xml │ │ ├── ic_developer_mode.xml │ │ ├── ic_device_amazfit_bip.xml │ │ ├── ic_device_amazfit_bip_disabled.xml │ │ ├── ic_device_banglejs.xml │ │ ├── ic_device_banglejs_disabled.xml │ │ ├── ic_device_default.xml │ │ ├── ic_device_default_disabled.xml │ │ ├── ic_device_flipper.xml │ │ ├── ic_device_flipper_disabled.xml │ │ ├── ic_device_folder.xml │ │ ├── ic_device_folder_disabled.xml │ │ ├── ic_device_galaxy_buds.xml │ │ ├── ic_device_galaxy_buds_disabled.xml │ │ ├── ic_device_galaxy_buds_live.xml │ │ ├── ic_device_galaxy_buds_live_disabled.xml │ │ ├── ic_device_galaxy_buds_pro.xml │ │ ├── ic_device_galaxy_buds_pro_disabled.xml │ │ ├── ic_device_h30_h10.xml │ │ ├── ic_device_h30_h10_disabled.xml │ │ ├── ic_device_headphones.xml │ │ ├── ic_device_headphones_disabled.xml │ │ ├── ic_device_hplus.xml │ │ ├── ic_device_hplus_disabled.xml │ │ ├── ic_device_itag.xml │ │ ├── ic_device_itag_disabled.xml │ │ ├── ic_device_lovetoy.xml │ │ ├── ic_device_lovetoy_disabled.xml │ │ ├── ic_device_miband.xml │ │ ├── ic_device_miband2.xml │ │ ├── ic_device_miband2_disabled.xml │ │ ├── ic_device_miband6.xml │ │ ├── ic_device_miband6_disabled.xml │ │ ├── ic_device_miband_disabled.xml │ │ ├── ic_device_miscale.xml │ │ ├── ic_device_miscale_disabled.xml │ │ ├── ic_device_miwatch.xml │ │ ├── ic_device_miwatch_disabled.xml │ │ ├── ic_device_nothingear.xml │ │ ├── ic_device_nothingear_disabled.xml │ │ ├── ic_device_pebble.xml │ │ ├── ic_device_pebble_disabled.xml │ │ ├── ic_device_pinetime.xml │ │ ├── ic_device_pinetime_disabled.xml │ │ ├── ic_device_roidmi.xml │ │ ├── ic_device_roidmi_disabled.xml │ │ ├── ic_device_scannable.xml │ │ ├── ic_device_scannable_disabled.xml │ │ ├── ic_device_set_reminders.xml │ │ ├── ic_device_smartring.xml │ │ ├── ic_device_smartring_disabled.xml │ │ ├── ic_device_sony_overhead.xml │ │ ├── ic_device_sony_overhead_disabled.xml │ │ ├── ic_device_sony_wf_800n.xml │ │ ├── ic_device_sony_wf_800n_disabled.xml │ │ ├── ic_device_supercars.xml │ │ ├── ic_device_supercars_disabled.xml │ │ ├── ic_device_thermometer.xml │ │ ├── ic_device_thermometer_disabled.xml │ │ ├── ic_device_unknown.xml │ │ ├── ic_device_unknown_disabled.xml │ │ ├── ic_device_vesc.xml │ │ ├── ic_device_vesc_disabled.xml │ │ ├── ic_device_watchxplus.xml │ │ ├── ic_device_watchxplus_disabled.xml │ │ ├── ic_device_zetime.xml │ │ ├── ic_device_zetime_disabled.xml │ │ ├── ic_devices_other.xml │ │ ├── ic_distance.xml │ │ ├── ic_distance_total.xml │ │ ├── ic_donate.xml │ │ ├── ic_done.xml │ │ ├── ic_done_all.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_drink.xml │ │ ├── ic_earbuds_battery.xml │ │ ├── ic_edit.xml │ │ ├── ic_email.xml │ │ ├── ic_emergency.xml │ │ ├── ic_engineering.xml │ │ ├── ic_equalizer.xml │ │ ├── ic_events.xml │ │ ├── ic_events_gold.xml │ │ ├── ic_extension.xml │ │ ├── ic_file_open.xml │ │ ├── ic_file_upload.xml │ │ ├── ic_filter_1.xml │ │ ├── ic_filter_2.xml │ │ ├── ic_filter_3.xml │ │ ├── ic_filter_9_plus.xml │ │ ├── ic_filter_alt.xml │ │ ├── ic_filter_alt_plus.xml │ │ ├── ic_filter_b_and_w.xml │ │ ├── ic_firmware.xml │ │ ├── ic_focus.xml │ │ ├── ic_folder.xml │ │ ├── ic_folder_delete.xml │ │ ├── ic_font_download.xml │ │ ├── ic_font_size.xml │ │ ├── ic_galaxy_buds_l.xml │ │ ├── ic_galaxy_buds_live_l.xml │ │ ├── ic_galaxy_buds_live_r.xml │ │ ├── ic_galaxy_buds_r.xml │ │ ├── ic_gps_edit.xml │ │ ├── ic_gps_location.xml │ │ ├── ic_graphic_eq.xml │ │ ├── ic_health.xml │ │ ├── ic_hearing.xml │ │ ├── ic_heart.xml │ │ ├── ic_heartrate.xml │ │ ├── ic_help_outline.xml │ │ ├── ic_history.xml │ │ ├── ic_horizontal_rule.xml │ │ ├── ic_hourglass_empty.xml │ │ ├── ic_humidity_mid.xml │ │ ├── ic_info.xml │ │ ├── ic_insights.xml │ │ ├── ic_intensity.xml │ │ ├── ic_intensity_hollow.xml │ │ ├── ic_invert_colors.xml │ │ ├── ic_language.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_led_color.xml │ │ ├── ic_link.xml │ │ ├── ic_list_numbered.xml │ │ ├── ic_lock_open.xml │ │ ├── ic_loyalty.xml │ │ ├── ic_map.xml │ │ ├── ic_menu.xml │ │ ├── ic_message_outline.xml │ │ ├── ic_monochrome_photos.xml │ │ ├── ic_mood_bad.xml │ │ ├── ic_more_vert.xml │ │ ├── ic_mtu.xml │ │ ├── ic_music.xml │ │ ├── ic_music_item.xml │ │ ├── ic_music_note.xml │ │ ├── ic_navigation.xml │ │ ├── ic_nights_stay.xml │ │ ├── ic_no_watch.xml │ │ ├── ic_nothing_ear_l.xml │ │ ├── ic_nothing_ear_r.xml │ │ ├── ic_notifications.xml │ │ ├── ic_open_in_browser.xml │ │ ├── ic_pageview.xml │ │ ├── ic_paint.xml │ │ ├── ic_password.xml │ │ ├── ic_pause.xml │ │ ├── ic_pending_actions.xml │ │ ├── ic_person.xml │ │ ├── ic_phone.xml │ │ ├── ic_phone_missed_outline.xml │ │ ├── ic_phone_msg.xml │ │ ├── ic_phone_outline.xml │ │ ├── ic_play.xml │ │ ├── ic_power_settings_new.xml │ │ ├── ic_pressure.xml │ │ ├── ic_radio.xml │ │ ├── ic_refresh.xml │ │ ├── ic_remove_image.xml │ │ ├── ic_reply.xml │ │ ├── ic_report.xml │ │ ├── ic_rotate_left.xml │ │ ├── ic_save.xml │ │ ├── ic_screen_rotation.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_search.xml │ │ ├── ic_select_all.xml │ │ ├── ic_sensor_calibration.xml │ │ ├── ic_settings.xml │ │ ├── ic_settings_applications.xml │ │ ├── ic_settings_remote.xml │ │ ├── ic_share.xml │ │ ├── ic_shoe.xml │ │ ├── ic_shoe_print.xml │ │ ├── ic_shoe_prints_many.xml │ │ ├── ic_shortcut.xml │ │ ├── ic_show_chart.xml │ │ ├── ic_signal_cellular_connected_no_internet_4_bar.xml │ │ ├── ic_smart_button.xml │ │ ├── ic_sony_wf_800n_case.xml │ │ ├── ic_sony_wf_800n_left.xml │ │ ├── ic_sony_wf_800n_right.xml │ │ ├── ic_speaker.xml │ │ ├── ic_star_gold.xml │ │ ├── ic_star_gray.xml │ │ ├── ic_stop.xml │ │ ├── ic_surround.xml │ │ ├── ic_switch_left.xml │ │ ├── ic_switch_right.xml │ │ ├── ic_sync.xml │ │ ├── ic_tabs.xml │ │ ├── ic_temperature.xml │ │ ├── ic_thermometer.xml │ │ ├── ic_timer.xml │ │ ├── ic_touch.xml │ │ ├── ic_translate.xml │ │ ├── ic_tws_case.xml │ │ ├── ic_u_turn_left.xml │ │ ├── ic_u_turn_right.xml │ │ ├── ic_verified.xml │ │ ├── ic_vibration.xml │ │ ├── ic_videogame.xml │ │ ├── ic_voice.xml │ │ ├── ic_volume_off.xml │ │ ├── ic_volume_up.xml │ │ ├── ic_vpn_key.xml │ │ ├── ic_warning.xml │ │ ├── ic_warning_gray.xml │ │ ├── ic_watch.xml │ │ ├── ic_watch_bw.xml │ │ ├── ic_wb_sunny.xml │ │ ├── ic_wb_twilight.xml │ │ ├── ic_wena_icon_center.xml │ │ ├── ic_wena_icon_left.xml │ │ ├── ic_wena_icon_right.xml │ │ ├── ic_widgets.xml │ │ ├── ic_wifi.xml │ │ ├── ic_wifi_tethering.xml │ │ ├── level_list_battery.xml │ │ ├── list_selector.xml │ │ ├── side_nav_bar.xml │ │ ├── splash.xml │ │ └── widget_preview.png │ │ ├── layout-land │ │ ├── activity_notification_filter.xml │ │ └── fragment_weeksteps_chart.xml │ │ ├── layout │ │ ├── activity_about.xml │ │ ├── activity_alarm_details.xml │ │ ├── activity_android_pairing.xml │ │ ├── activity_app_specific_notification_settings.xml │ │ ├── activity_appblacklist.xml │ │ ├── activity_appinstaller.xml │ │ ├── activity_appmanager.xml │ │ ├── activity_backup_restore_progress.xml │ │ ├── activity_banglejs_apps_management.xml │ │ ├── activity_battery_info.xml │ │ ├── activity_binary_sensor_data.xml │ │ ├── activity_calblacklist.xml │ │ ├── activity_camera.xml │ │ ├── activity_charts.xml │ │ ├── activity_charts_durationdialog.xml │ │ ├── activity_commute_actions.xml │ │ ├── activity_configure_alarms.xml │ │ ├── activity_configure_contacts.xml │ │ ├── activity_configure_reminders.xml │ │ ├── activity_configure_world_clocks.xml │ │ ├── activity_contact_details.xml │ │ ├── activity_cycling_live_data.xml │ │ ├── activity_dashboard_calendar.xml │ │ ├── activity_data_management.xml │ │ ├── activity_debug.xml │ │ ├── activity_device_settings.xml │ │ ├── activity_discovery.xml │ │ ├── activity_external_pebble_js.xml │ │ ├── activity_file_manager.xml │ │ ├── activity_find_phone.xml │ │ ├── activity_fragmentappmanager.xml │ │ ├── activity_gpx_receiver.xml │ │ ├── activity_hybridhr_watchface_designer.xml │ │ ├── activity_idasen_control.xml │ │ ├── activity_legacy_external_pebble_js.xml │ │ ├── activity_list.xml │ │ ├── activity_list_dashboard_item.xml │ │ ├── activity_list_detail.xml │ │ ├── activity_list_item.xml │ │ ├── activity_list_total_dashboard.xml │ │ ├── activity_main.xml │ │ ├── activity_main_app_bar.xml │ │ ├── activity_mi_band_pairing.xml │ │ ├── activity_musicmanager.xml │ │ ├── activity_notification_filter.xml │ │ ├── activity_notification_per_app_setting_detail.xml │ │ ├── activity_open_fw_app_installer.xml │ │ ├── activity_pebble_pairing.xml │ │ ├── activity_permissions.xml │ │ ├── activity_qhybrid_app_choser.xml │ │ ├── activity_qhybrid_apps_management.xml │ │ ├── activity_qhybrid_calibration.xml │ │ ├── activity_qhybrid_file_management.xml │ │ ├── activity_qhybrid_hr_settings.xml │ │ ├── activity_qhybrid_image_edit.xml │ │ ├── activity_qhybrid_settings.xml │ │ ├── activity_reminder_details.xml │ │ ├── activity_solar_equipment_status.xml │ │ ├── activity_summary_dashboard_item.xml │ │ ├── activity_summary_details.xml │ │ ├── activity_supercars_control.xml │ │ ├── activity_um25_data.xml │ │ ├── activity_vesc_control.xml │ │ ├── activity_vibration.xml │ │ ├── activity_watch9_calibration.xml │ │ ├── activity_watch9_pairing.xml │ │ ├── activity_watchxplus_calibration.xml │ │ ├── activity_weather_notification.xml │ │ ├── activity_welcome.xml │ │ ├── activity_widget_screen_details.xml │ │ ├── activity_widget_screens_list.xml │ │ ├── activity_withings_calibration.xml │ │ ├── activity_world_clock_details.xml │ │ ├── custom_chart_marker.xml │ │ ├── dashboard_widget_generic_gauge.xml │ │ ├── dashboard_widget_goals.xml │ │ ├── dashboard_widget_today.xml │ │ ├── device_itemv2.xml │ │ ├── dialog_frequency_picker.xml │ │ ├── fossil_hr_row_commute_action.xml │ │ ├── fossil_hr_row_installed_app.xml │ │ ├── fragment_body_energy.xml │ │ ├── fragment_calories.xml │ │ ├── fragment_charts.xml │ │ ├── fragment_cycling.xml │ │ ├── fragment_dashboard.xml │ │ ├── fragment_devices.xml │ │ ├── fragment_gps.xml │ │ ├── fragment_heart_rate.xml │ │ ├── fragment_hrv_status.xml │ │ ├── fragment_live_activity.xml │ │ ├── fragment_nested_tabs.xml │ │ ├── fragment_pai_chart.xml │ │ ├── fragment_respiratory_rate.xml │ │ ├── fragment_respiratory_rate_period.xml │ │ ├── fragment_sleepchart.xml │ │ ├── fragment_statschart.xml │ │ ├── fragment_steps.xml │ │ ├── fragment_steps_list.xml │ │ ├── fragment_steps_period.xml │ │ ├── fragment_stresschart.xml │ │ ├── fragment_temperature.xml │ │ ├── fragment_temperaturechart.xml │ │ ├── fragment_vo2max.xml │ │ ├── fragment_weeksleep_chart.xml │ │ ├── fragment_weeksteps_chart.xml │ │ ├── fragment_weightchart.xml │ │ ├── fragment_welcome_docs_source.xml │ │ ├── fragment_welcome_get_started.xml │ │ ├── fragment_welcome_intro.xml │ │ ├── fragment_welcome_overview.xml │ │ ├── fragment_welcome_permission_row.xml │ │ ├── fragment_welcome_permissions.xml │ │ ├── heart_rate_dialog.xml │ │ ├── item_alarm.xml │ │ ├── item_app_blacklist.xml │ │ ├── item_app_specific_notification_app_list.xml │ │ ├── item_appmanager_watchapp.xml │ │ ├── item_cal_blacklist.xml │ │ ├── item_contact.xml │ │ ├── item_file_manager.xml │ │ ├── item_musicmanager_song.xml │ │ ├── item_reminder.xml │ │ ├── item_widget_screen.xml │ │ ├── item_with_details.xml │ │ ├── item_with_details_horizontal.xml │ │ ├── item_with_details_small.xml │ │ ├── item_world_clock.xml │ │ ├── layout_widget_active_steps.xml │ │ ├── layout_widget_activities_count.xml │ │ ├── layout_widget_distance.xml │ │ ├── layout_widget_duration.xml │ │ ├── layout_widget_duration_selector.xml │ │ ├── layout_widget_generic.xml │ │ ├── layout_widget_heartrate_average.xml │ │ ├── layout_widget_intensity_total.xml │ │ ├── layout_widget_intensity_total2.xml │ │ ├── layout_widget_total_steps.xml │ │ ├── list_item_checkable.xml │ │ ├── main_drawer_header.xml │ │ ├── preference_checkbox.xml │ │ ├── preference_material_switch.xml │ │ ├── qhybrid_activity_widget_settings.xml │ │ ├── qhybrid_app_view.xml │ │ ├── qhybrid_element_popup_view.xml │ │ ├── qhybrid_package_settings_item.xml │ │ ├── simple_spinner_item_themed.xml │ │ ├── sleep_alarm_widget.xml │ │ ├── sort_list_array_dialog_preference.xml │ │ ├── spinner_with_image_layout.xml │ │ ├── sport_activity_filter.xml │ │ ├── steps_streak_average.xml │ │ ├── steps_streak_current_line_layout.xml │ │ ├── steps_streak_days.xml │ │ ├── steps_streak_maximum_line_layout.xml │ │ ├── steps_streak_total.xml │ │ ├── steps_streak_total_line_layout.xml │ │ ├── steps_streaks_dashboard.xml │ │ ├── widget.xml │ │ └── widget_alarms_activity_list.xml │ │ ├── menu │ │ ├── activity_hybridhr_watchface_designer_actionbar.xml │ │ ├── activity_list_context_menu.xml │ │ ├── activity_list_menu.xml │ │ ├── activity_main_drawer.xml │ │ ├── activity_take_screenshot_menu.xml │ │ ├── app_blacklist_menu.xml │ │ ├── appmanager_context.xml │ │ ├── bottom_nav_menu.xml │ │ ├── dashboard_menu.xml │ │ ├── file_manager_file.xml │ │ ├── fragment_devices_device_submenu.xml │ │ ├── menu_charts.xml │ │ ├── menu_discovery.xml │ │ ├── menu_file_manager.xml │ │ ├── menu_garmin_realtime_settings.xml │ │ └── musicmanager_context.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── 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 │ │ ├── raw │ │ └── ping_tone.rtttl │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-en-rGB │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-et │ │ └── strings.xml │ │ ├── values-eu │ │ └── strings.xml │ │ ├── values-fa │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr-rCA │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-gl │ │ └── strings.xml │ │ ├── values-he │ │ └── strings.xml │ │ ├── values-hi │ │ └── strings.xml │ │ ├── values-hr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-ia │ │ └── strings.xml │ │ ├── values-id │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-ka │ │ └── strings.xml │ │ ├── values-ko │ │ └── strings.xml │ │ ├── values-lt │ │ └── strings.xml │ │ ├── values-lv │ │ └── strings.xml │ │ ├── values-ml │ │ └── strings.xml │ │ ├── values-my │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-ta │ │ └── strings.xml │ │ ├── values-th │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-v14 │ │ └── dimens.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── dslv_attrs.xml │ │ ├── ic_launcher_background.xml │ │ ├── rc_attrs.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ ├── values.xml │ │ └── wpi_attrs.xml │ │ └── xml │ │ ├── about_user.xml │ │ ├── changelog_master.xml │ │ ├── charts_preferences.xml │ │ ├── dashboard_preferences.xml │ │ ├── devicesettings_active_noise_cancelling_toggle.xml │ │ ├── devicesettings_activity_info_header.xml │ │ ├── devicesettings_allow_accept_reject_calls.xml │ │ ├── devicesettings_always_on_display.xml │ │ ├── devicesettings_amazfitband5.xml │ │ ├── devicesettings_amazfitbip.xml │ │ ├── devicesettings_amazfitbip3pro.xml │ │ ├── devicesettings_amazfitbips.xml │ │ ├── devicesettings_amazfitbipu.xml │ │ ├── devicesettings_amazfitbipupro.xml │ │ ├── devicesettings_amazfitcor.xml │ │ ├── devicesettings_amazfitgts2mini.xml │ │ ├── devicesettings_amazfitgtsgtr.xml │ │ ├── devicesettings_amazfitgtsgtr2.xml │ │ ├── devicesettings_amazfitneo_display.xml │ │ ├── devicesettings_amazfitneo_sound.xml │ │ ├── devicesettings_amazfittrex.xml │ │ ├── devicesettings_amazfittrexpro.xml │ │ ├── devicesettings_amazfitvergel.xml │ │ ├── devicesettings_amazfitx.xml │ │ ├── devicesettings_antilost.xml │ │ ├── devicesettings_app_logs_start_stop.xml │ │ ├── devicesettings_autoheartrate.xml │ │ ├── devicesettings_autolight.xml │ │ ├── devicesettings_automatic_power_off_by_time.xml │ │ ├── devicesettings_automatic_power_off_when_taken_off.xml │ │ ├── devicesettings_autoremove_message.xml │ │ ├── devicesettings_autoremove_notifications.xml │ │ ├── devicesettings_bandw_pseries.xml │ │ ├── devicesettings_banglejs_activity.xml │ │ ├── devicesettings_banglejs_apploader.xml │ │ ├── devicesettings_banglejs_location.xml │ │ ├── devicesettings_battery_allow_pass_through.xml │ │ ├── devicesettings_battery_discharge_5.xml │ │ ├── devicesettings_battery_minimum_charge.xml │ │ ├── devicesettings_ble_api.xml │ │ ├── devicesettings_bt_connected_advertisement.xml │ │ ├── devicesettings_buttonactions.xml │ │ ├── devicesettings_buttonactions_lower_short.xml │ │ ├── devicesettings_buttonactions_upper_long.xml │ │ ├── devicesettings_buttonactions_with_longpress.xml │ │ ├── devicesettings_camera_remote.xml │ │ ├── devicesettings_canned_dismisscall_16.xml │ │ ├── devicesettings_canned_reply_16.xml │ │ ├── devicesettings_casio_alert.xml │ │ ├── devicesettings_casio_connection_duration.xml │ │ ├── devicesettings_chartstabs.xml │ │ ├── devicesettings_colmi_r0x.xml │ │ ├── devicesettings_connect_two_devices.xml │ │ ├── devicesettings_contacts.xml │ │ ├── devicesettings_custom_deviceicon.xml │ │ ├── devicesettings_custom_emoji_font.xml │ │ ├── devicesettings_cycling_sensor.xml │ │ ├── devicesettings_dateformat.xml │ │ ├── devicesettings_dateformat_2.xml │ │ ├── devicesettings_dateformat_day_month_order.xml │ │ ├── devicesettings_developer_add_test_activities.xml │ │ ├── devicesettings_device_actions.xml │ │ ├── devicesettings_device_actions_without_not_wear.xml │ │ ├── devicesettings_device_card_activity_card_preferences.xml │ │ ├── devicesettings_device_intents.xml │ │ ├── devicesettings_device_internet_access.xml │ │ ├── devicesettings_device_name.xml │ │ ├── devicesettings_disable_find_phone_with_dnd.xml │ │ ├── devicesettings_disconnectnotification.xml │ │ ├── devicesettings_disconnectnotification_noshed.xml │ │ ├── devicesettings_display_caller.xml │ │ ├── devicesettings_donotdisturb_allday_liftwirst.xml │ │ ├── devicesettings_donotdisturb_allday_liftwirst_notwear.xml │ │ ├── devicesettings_donotdisturb_lift_wrist.xml │ │ ├── devicesettings_donotdisturb_no_auto.xml │ │ ├── devicesettings_donotdisturb_withauto.xml │ │ ├── devicesettings_donotdisturb_withauto_and_always.xml │ │ ├── devicesettings_expose_hr_thirdparty.xml │ │ ├── devicesettings_fake_ring_duration.xml │ │ ├── devicesettings_fake_timeoffset.xml │ │ ├── devicesettings_femometer.xml │ │ ├── devicesettings_fetch_unknown_files.xml │ │ ├── devicesettings_find_phone.xml │ │ ├── devicesettings_fitpro.xml │ │ ├── devicesettings_force_connection_type.xml │ │ ├── devicesettings_fossilhybridhr_calibration.xml │ │ ├── devicesettings_fossilhybridhr_dev.xml │ │ ├── devicesettings_fossilhybridhr_navigation.xml │ │ ├── devicesettings_fossilhybridhr_post_fw300.xml │ │ ├── devicesettings_fossilhybridhr_pre_fw220.xml │ │ ├── devicesettings_fossilhybridhr_pre_fw300.xml │ │ ├── devicesettings_fossilhybridhr_vibration.xml │ │ ├── devicesettings_fossilhybridhr_workout_detection.xml │ │ ├── devicesettings_fossilqhybrid_legacy.xml │ │ ├── devicesettings_ftp_server.xml │ │ ├── devicesettings_galaxy_buds.xml │ │ ├── devicesettings_galaxy_buds_2.xml │ │ ├── devicesettings_galaxy_buds_2_pro.xml │ │ ├── devicesettings_galaxy_buds_live.xml │ │ ├── devicesettings_galaxy_buds_pro.xml │ │ ├── devicesettings_garmin_agps.xml │ │ ├── devicesettings_garmin_realtime_settings.xml │ │ ├── devicesettings_goal_notification.xml │ │ ├── devicesettings_goal_secondary.xml │ │ ├── devicesettings_gps_agps.xml │ │ ├── devicesettings_header_apps.xml │ │ ├── devicesettings_header_authentication.xml │ │ ├── devicesettings_header_calendar.xml │ │ ├── devicesettings_header_connection.xml │ │ ├── devicesettings_header_developer.xml │ │ ├── devicesettings_header_display.xml │ │ ├── devicesettings_header_health.xml │ │ ├── devicesettings_header_notifications.xml │ │ ├── devicesettings_header_other.xml │ │ ├── devicesettings_header_sound_vibration.xml │ │ ├── devicesettings_header_system.xml │ │ ├── devicesettings_header_time.xml │ │ ├── devicesettings_header_workout.xml │ │ ├── devicesettings_headphones.xml │ │ ├── devicesettings_heartrate_automatic_enable.xml │ │ ├── devicesettings_heartrate_sleep.xml │ │ ├── devicesettings_heartrate_sleep_activity.xml │ │ ├── devicesettings_heartrate_sleep_alert_activity_stress.xml │ │ ├── devicesettings_heartrate_sleep_alert_activity_stress_spo2.xml │ │ ├── devicesettings_high_mtu.xml │ │ ├── devicesettings_hourly_chime.xml │ │ ├── devicesettings_hourly_chime_enable.xml │ │ ├── devicesettings_hplus.xml │ │ ├── devicesettings_huami2021_alexa.xml │ │ ├── devicesettings_huami2021_control_center.xml │ │ ├── devicesettings_huami2021_displayitems.xml │ │ ├── devicesettings_huami2021_fetch_operation_time_unit.xml │ │ ├── devicesettings_huami2021_shortcut_cards.xml │ │ ├── devicesettings_huami2021_shortcuts.xml │ │ ├── devicesettings_huami2021_watchface.xml │ │ ├── devicesettings_huawei_account.xml │ │ ├── devicesettings_huawei_debug.xml │ │ ├── devicesettings_huawei_freebuds.xml │ │ ├── devicesettings_hydration_reminder.xml │ │ ├── devicesettings_hydration_reminder_dnd.xml │ │ ├── devicesettings_idasen.xml │ │ ├── devicesettings_inactivity.xml │ │ ├── devicesettings_inactivity_dnd.xml │ │ ├── devicesettings_inactivity_dnd_no_threshold.xml │ │ ├── devicesettings_inactivity_extended.xml │ │ ├── devicesettings_inactivity_noshed.xml │ │ ├── devicesettings_inactivity_sheduled.xml │ │ ├── devicesettings_keep_activity_data_on_device.xml │ │ ├── devicesettings_key_vibration.xml │ │ ├── devicesettings_language_generic.xml │ │ ├── devicesettings_lefun_interface_language.xml │ │ ├── devicesettings_liftwrist_display.xml │ │ ├── devicesettings_liftwrist_display_no_on.xml │ │ ├── devicesettings_liftwrist_display_noshed.xml │ │ ├── devicesettings_liftwrist_display_sensitivity.xml │ │ ├── devicesettings_liftwrist_display_sensitivity_with_smart.xml │ │ ├── devicesettings_light_duration_longer.xml │ │ ├── devicesettings_lock_unlock.xml │ │ ├── devicesettings_lowlatency_fwupdate.xml │ │ ├── devicesettings_loyalty_cards.xml │ │ ├── devicesettings_miband2_dateformat.xml │ │ ├── devicesettings_miband2_display.xml │ │ ├── devicesettings_miband3.xml │ │ ├── devicesettings_miband5.xml │ │ ├── devicesettings_miband6.xml │ │ ├── devicesettings_miband6_new_auth_protocol_explanation.xml │ │ ├── devicesettings_miband6_new_protocol.xml │ │ ├── devicesettings_miband_vibrationpatterns.xml │ │ ├── devicesettings_mijia_lywsd.xml │ │ ├── devicesettings_mismartscale.xml │ │ ├── devicesettings_moondrop_space_travel_equalizer.xml │ │ ├── devicesettings_moondrop_space_travel_touch.xml │ │ ├── devicesettings_morning_updates.xml │ │ ├── devicesettings_musicmanagement.xml │ │ ├── devicesettings_nightmode.xml │ │ ├── devicesettings_nothing_ear1.xml │ │ ├── devicesettings_notification_wake_on_open.xml │ │ ├── devicesettings_notifications_enable.xml │ │ ├── devicesettings_nutmini.xml │ │ ├── devicesettings_offline_voice.xml │ │ ├── devicesettings_operating_sounds.xml │ │ ├── devicesettings_oppo_headphones_touch_options.xml │ │ ├── devicesettings_overwrite_settings_on_connection.xml │ │ ├── devicesettings_pairingkey.xml │ │ ├── devicesettings_pairingkey_explanation.xml │ │ ├── devicesettings_password.xml │ │ ├── devicesettings_pebble_activity.xml │ │ ├── devicesettings_pebble_calendar.xml │ │ ├── devicesettings_pebble_calls_notifications.xml │ │ ├── devicesettings_pebble_developer.xml │ │ ├── devicesettings_phone_calls_watch_pair.xml │ │ ├── devicesettings_phone_silent_mode.xml │ │ ├── devicesettings_pixoo.xml │ │ ├── devicesettings_power_mode.xml │ │ ├── devicesettings_power_saving.xml │ │ ├── devicesettings_prefix_notification_with_app.xml │ │ ├── devicesettings_preview_message_in_title.xml │ │ ├── devicesettings_qc35.xml │ │ ├── devicesettings_reconnect_bl_classic.xml │ │ ├── devicesettings_reconnect_ble.xml │ │ ├── devicesettings_redmibuds5pro_gestures.xml │ │ ├── devicesettings_redmibuds5pro_headphones.xml │ │ ├── devicesettings_redmibuds5pro_sound.xml │ │ ├── devicesettings_reject_call_method.xml │ │ ├── devicesettings_relax_firmware_checks.xml │ │ ├── devicesettings_reserve_alarms_calendar.xml │ │ ├── devicesettings_reserve_reminders_calendar.xml │ │ ├── devicesettings_root_activity_info.xml │ │ ├── devicesettings_root_audio.xml │ │ ├── devicesettings_root_authentication.xml │ │ ├── devicesettings_root_battery.xml │ │ ├── devicesettings_root_calendar.xml │ │ ├── devicesettings_root_calls_and_notifications.xml │ │ ├── devicesettings_root_connection.xml │ │ ├── devicesettings_root_date_time.xml │ │ ├── devicesettings_root_developer.xml │ │ ├── devicesettings_root_display.xml │ │ ├── devicesettings_root_generic.xml │ │ ├── devicesettings_root_health.xml │ │ ├── devicesettings_root_location.xml │ │ ├── devicesettings_root_notifications.xml │ │ ├── devicesettings_root_sound.xml │ │ ├── devicesettings_root_touch_options.xml │ │ ├── devicesettings_root_workout.xml │ │ ├── devicesettings_rotatewrist_cycleinfo.xml │ │ ├── devicesettings_scannable.xml │ │ ├── devicesettings_screen_brightness.xml │ │ ├── devicesettings_screen_brightness_withauto.xml │ │ ├── devicesettings_screen_on_on_notifications.xml │ │ ├── devicesettings_screen_timeout.xml │ │ ├── devicesettings_screenorientation.xml │ │ ├── devicesettings_send_app_notifications.xml │ │ ├── devicesettings_settings_third_party_apps.xml │ │ ├── devicesettings_sleep_mode.xml │ │ ├── devicesettings_sleep_mode_schedule.xml │ │ ├── devicesettings_sleep_time.xml │ │ ├── devicesettings_sony_headphones_adaptive_volume_control.xml │ │ ├── devicesettings_sony_headphones_ambient_sound_control.xml │ │ ├── devicesettings_sony_headphones_ambient_sound_control_button_modes.xml │ │ ├── devicesettings_sony_headphones_ambient_sound_control_wind_noise_reduction.xml │ │ ├── devicesettings_sony_headphones_anc_optimizer.xml │ │ ├── devicesettings_sony_headphones_audio_upsampling.xml │ │ ├── devicesettings_sony_headphones_button_modes_left_right.xml │ │ ├── devicesettings_sony_headphones_device_info.xml │ │ ├── devicesettings_sony_headphones_equalizer.xml │ │ ├── devicesettings_sony_headphones_equalizer_with_custom_bands.xml │ │ ├── devicesettings_sony_headphones_notifications_voice_guide.xml │ │ ├── devicesettings_sony_headphones_pause_when_taken_off.xml │ │ ├── devicesettings_sony_headphones_protocol_version.xml │ │ ├── devicesettings_sony_headphones_quick_access.xml │ │ ├── devicesettings_sony_headphones_sound_position.xml │ │ ├── devicesettings_sony_headphones_speak_to_chat_simple.xml │ │ ├── devicesettings_sony_headphones_speak_to_chat_with_settings.xml │ │ ├── devicesettings_sony_headphones_surround_mode.xml │ │ ├── devicesettings_sony_headphones_touch_sensor_single.xml │ │ ├── devicesettings_sony_headphones_wide_area_tap.xml │ │ ├── devicesettings_sony_warning_wh1000xm3.xml │ │ ├── devicesettings_sonyswr12.xml │ │ ├── devicesettings_sound_and_vibration.xml │ │ ├── devicesettings_soundcore_headphones.xml │ │ ├── devicesettings_soundcore_motion300.xml │ │ ├── devicesettings_soundcore_motion300_audio.xml │ │ ├── devicesettings_soundcore_touch_options.xml │ │ ├── devicesettings_spo_automatic_enable.xml │ │ ├── devicesettings_swipeunlock.xml │ │ ├── devicesettings_sync_calendar.xml │ │ ├── devicesettings_temperature_automatic_enable.xml │ │ ├── devicesettings_temperature_scale_cf.xml │ │ ├── devicesettings_test_features.xml │ │ ├── devicesettings_text_bitmaps.xml │ │ ├── devicesettings_time_sync.xml │ │ ├── devicesettings_timeformat.xml │ │ ├── devicesettings_transliteration.xml │ │ ├── devicesettings_trusleep.xml │ │ ├── devicesettings_um25.xml │ │ ├── devicesettings_vesc.xml │ │ ├── devicesettings_vibrationpatterns.xml │ │ ├── devicesettings_vibrations_enable.xml │ │ ├── devicesettings_vitality_score.xml │ │ ├── devicesettings_volume.xml │ │ ├── devicesettings_watchxplus.xml │ │ ├── devicesettings_wear_sensor_toggle.xml │ │ ├── devicesettings_weardirection.xml │ │ ├── devicesettings_wearlocation.xml │ │ ├── devicesettings_wearmode.xml │ │ ├── devicesettings_wena3.xml │ │ ├── devicesettings_wena3_auto_power_off.xml │ │ ├── devicesettings_widgets.xml │ │ ├── devicesettings_wifi_hotspot.xml │ │ ├── devicesettings_withingssteelhr.xml │ │ ├── devicesettings_workmode.xml │ │ ├── devicesettings_workout_activity_types.xml │ │ ├── devicesettings_workout_detection.xml │ │ ├── devicesettings_workout_keep_screen_on.xml │ │ ├── devicesettings_workout_send_gps_to_band.xml │ │ ├── devicesettings_workout_start_on_phone.xml │ │ ├── devicesettings_world_clocks.xml │ │ ├── devicesettings_xiaomi_displayitems.xml │ │ ├── devicesettings_zetime_activity_info.xml │ │ ├── devicesettings_zetime_date_format.xml │ │ ├── devicesettings_zetime_display.xml │ │ ├── devicesettings_zetime_health.xml │ │ ├── devicesettings_zetime_vibrationpatterns.xml │ │ ├── discovery_pairing_preferences.xml │ │ ├── fossil_hr_watchface_settings.xml │ │ ├── fossil_hr_widget_settings.xml │ │ ├── garmin_realtime_settings.xml │ │ ├── loyalty_cards.xml │ │ ├── notifications_preferences.xml │ │ ├── preferences.xml │ │ ├── shared_paths.xml │ │ ├── sleep_alarm_widget_info.xml │ │ ├── sleepasandroid_preferences.xml │ │ └── widget_info.xml │ ├── mainline │ └── res │ │ └── values │ │ └── strings.xml │ ├── nightly │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── ic_launcher_background.xml │ │ └── strings.xml │ ├── nopebble │ └── res │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── ic_launcher_background.xml │ │ └── strings.xml │ └── test │ ├── java │ ├── com │ │ └── google │ │ │ └── gson │ │ │ └── typeadapters │ │ │ └── RuntimeTypeAdapterFactoryTest.java │ └── nodomain │ │ └── freeyourgadget │ │ └── gadgetbridge │ │ ├── database │ │ ├── EntitiesTest.java │ │ └── SampleProviderTest.java │ │ ├── devices │ │ ├── banglejs │ │ │ ├── BangleJSActivityPointTest.java │ │ │ └── BangleJSWorkoutParserTest.java │ │ └── huawei │ │ │ ├── TestHuaweiCrypto.java │ │ │ ├── TestHuaweiPacket.java │ │ │ ├── TestHuaweiTLV.java │ │ │ ├── TestHuaweiTruSleepParser.java │ │ │ ├── TestVarInt.java │ │ │ └── packets │ │ │ ├── TestAlarms.java │ │ │ ├── TestCalls.java │ │ │ ├── TestDeviceConfig.java │ │ │ ├── TestDisconnectNotification.java │ │ │ ├── TestFindPhone.java │ │ │ ├── TestFitnessData.java │ │ │ ├── TestLocaleConfig.java │ │ │ ├── TestMusicControl.java │ │ │ ├── TestNotifications.java │ │ │ ├── TestWorkMode.java │ │ │ └── TestWorkout.java │ │ ├── export │ │ └── GPXExporterTest.java │ │ ├── externalevents │ │ └── NotificationListenerTest.java │ │ ├── model │ │ ├── ActivityKindTest.java │ │ ├── ActivitySummaryDataTest.java │ │ └── DeviceTypeTest.java │ │ ├── service │ │ ├── DeviceCommunicationServiceTestCase.java │ │ ├── TestBtBRQueue.java │ │ ├── TestDeviceService.java │ │ ├── TestDeviceSupport.java │ │ ├── btle │ │ │ └── BtLEQueueTest.java │ │ └── devices │ │ │ ├── cmfwatchpro │ │ │ └── CmfCommandTest.java │ │ │ ├── fitpro │ │ │ └── FitProDeviceSupportTest.java │ │ │ ├── garmin │ │ │ ├── GarminSupportTest.java │ │ │ ├── communicator │ │ │ │ └── CobsCoDecTest.java │ │ │ └── fit │ │ │ │ ├── FitImporterTest.java │ │ │ │ └── enums │ │ │ │ └── GarminSportTest.java │ │ │ ├── huami │ │ │ ├── HuamiSupportTest.java │ │ │ └── zeppos │ │ │ │ └── ZeppOsSupportTest.java │ │ │ ├── huawei │ │ │ ├── TestDebugRequestParser.java │ │ │ ├── TestHuaweiSupportProvider.java │ │ │ └── TestResponseManager.java │ │ │ ├── miband │ │ │ └── FirmwareTest.java │ │ │ ├── nut │ │ │ └── NutUtilsTest.java │ │ │ ├── oppo │ │ │ └── OppoHeadphonesProtocolTest.java │ │ │ ├── sony │ │ │ └── headphones │ │ │ │ └── protocol │ │ │ │ └── impl │ │ │ │ ├── MockSonyCoordinator.java │ │ │ │ ├── SonyTestUtils.java │ │ │ │ ├── v1 │ │ │ │ └── SonyProtocolImplV1Test.java │ │ │ │ └── v2 │ │ │ │ └── SonyProtocolImplV2Test.java │ │ │ ├── withingssteelhr │ │ │ └── communication │ │ │ │ ├── MessageBuilderTest.java │ │ │ │ ├── datastructures │ │ │ │ ├── ChallengeTest.java │ │ │ │ ├── DataStructureFactoryTest.java │ │ │ │ ├── ProbeReplyTest.java │ │ │ │ ├── TimeTest.java │ │ │ │ └── WithingsTestStructure.java │ │ │ │ ├── message │ │ │ │ └── AbstractMessageTest.java │ │ │ │ └── notification │ │ │ │ ├── NotificationAttributeTest.java │ │ │ │ └── RequestedNotificationAttributeTest.java │ │ │ └── xiaomi │ │ │ └── activity │ │ │ ├── XiaomiActivityFileIdTest.java │ │ │ └── XiaomiActivityParserTest.java │ │ ├── test │ │ ├── ArmenianTransliteratorTest.java │ │ ├── ArrayUtilsTest.java │ │ ├── BLETypeConversionsTest.java │ │ ├── CalendarEventTest.java │ │ ├── FileUtilsTest.java │ │ ├── FitProTests.java │ │ ├── GBZipFileTest.java │ │ ├── HexToBinaryInputStream.java │ │ ├── HexToBinaryInputStreamTest.java │ │ ├── HuamiActivityDetailsParserTest.java │ │ ├── LoggingTest.java │ │ ├── MiscTest.java │ │ ├── PebbleUtilsTest.java │ │ ├── ProtobufTest.java │ │ ├── RtlUtilsTest.java │ │ ├── StringUtilsTest.java │ │ ├── TestBase.java │ │ └── Tryout.java │ │ └── util │ │ ├── EmojiConverterTest.java │ │ ├── ImportExportSharedPreferencesTest.java │ │ ├── RangeMapTest.java │ │ ├── gpx │ │ └── GPXParserTest.java │ │ └── language │ │ └── LanguageUtilsTest.java │ └── resources │ ├── ActivityDetailsDump1.txt │ ├── GPXExporterTest-SampleTracks.csv │ ├── GPXExporterTest-SampleTracksHR.csv │ ├── gpx-exporter-test-SampleTrack.gpx │ ├── gpx-parser-test-multiple-segments.gpx │ ├── gpx-parser-test-order.gpx │ └── gpx.xsd ├── external ├── build_fossil_hr_gbapps.sh ├── pack.py └── patches │ └── jerryscript-gcc-12-build-fix.patch ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── renovate.json ├── settings.gradle └── src ├── banglejs └── fastlane │ └── metadata │ └── android │ ├── cz-CZ │ ├── full_description.txt │ └── short_description.txt │ ├── en-US │ ├── changelogs │ ├── full_description.txt │ ├── images │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 10-MainScreen.png │ │ │ └── B1-AppManager.png │ ├── short_description.txt │ └── title.txt │ └── pt-PT │ ├── full_description.txt │ └── short_description.txt └── mainline └── fastlane ├── metadata └── android │ ├── cs-CZ │ ├── full_description.txt │ └── short_description.txt │ ├── de-DE │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.jpg │ │ └── icon.png │ ├── short_description.txt │ └── title.txt │ ├── en-US │ ├── changelogs │ │ ├── 100.txt │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 106.txt │ │ ├── 107.txt │ │ ├── 108.txt │ │ ├── 109.txt │ │ ├── 110.txt │ │ ├── 111.txt │ │ ├── 112.txt │ │ ├── 113.txt │ │ ├── 114.txt │ │ ├── 115.txt │ │ ├── 116.txt │ │ ├── 117.txt │ │ ├── 118.txt │ │ ├── 119.txt │ │ ├── 120.txt │ │ ├── 121.txt │ │ ├── 122.txt │ │ ├── 123.txt │ │ ├── 124.txt │ │ ├── 125.txt │ │ ├── 126.txt │ │ ├── 127.txt │ │ ├── 128.txt │ │ ├── 129.txt │ │ ├── 130.txt │ │ ├── 131.txt │ │ ├── 132.txt │ │ ├── 133.txt │ │ ├── 134.txt │ │ ├── 135.txt │ │ ├── 136.txt │ │ ├── 137.txt │ │ ├── 138.txt │ │ ├── 139.txt │ │ ├── 140.txt │ │ ├── 141.txt │ │ ├── 142.txt │ │ ├── 143.txt │ │ ├── 144.txt │ │ ├── 145.txt │ │ ├── 147.txt │ │ ├── 148.txt │ │ ├── 149.txt │ │ ├── 150.txt │ │ ├── 151.txt │ │ ├── 152.txt │ │ ├── 153.txt │ │ ├── 154.txt │ │ ├── 155.txt │ │ ├── 156.txt │ │ ├── 157.txt │ │ ├── 158.txt │ │ ├── 159.txt │ │ ├── 160.txt │ │ ├── 161.txt │ │ ├── 162.txt │ │ ├── 163.txt │ │ ├── 164.txt │ │ ├── 165.txt │ │ ├── 166.txt │ │ ├── 167.txt │ │ ├── 168.txt │ │ ├── 169.txt │ │ ├── 170.txt │ │ ├── 171.txt │ │ ├── 172.txt │ │ ├── 173.txt │ │ ├── 174.txt │ │ ├── 175.txt │ │ ├── 176.txt │ │ ├── 177.txt │ │ ├── 178.txt │ │ ├── 179.txt │ │ ├── 180.txt │ │ ├── 181.txt │ │ ├── 182.txt │ │ ├── 183.txt │ │ ├── 184.txt │ │ ├── 185.txt │ │ ├── 186.txt │ │ ├── 187.txt │ │ ├── 188.txt │ │ ├── 189.txt │ │ ├── 190.txt │ │ ├── 191.txt │ │ ├── 192.txt │ │ ├── 193.txt │ │ ├── 194.txt │ │ ├── 195.txt │ │ ├── 196.txt │ │ ├── 197.txt │ │ ├── 198.txt │ │ ├── 199.txt │ │ ├── 200.txt │ │ ├── 201.txt │ │ ├── 202.txt │ │ ├── 203.txt │ │ ├── 204.txt │ │ ├── 205.txt │ │ ├── 206.txt │ │ ├── 207.txt │ │ ├── 208.txt │ │ ├── 209.txt │ │ ├── 210.txt │ │ ├── 211.txt │ │ ├── 212.txt │ │ ├── 213.txt │ │ ├── 214.txt │ │ ├── 215.txt │ │ ├── 216.txt │ │ ├── 217.txt │ │ ├── 218.txt │ │ ├── 219.txt │ │ ├── 220.txt │ │ ├── 221.txt │ │ ├── 222.txt │ │ ├── 223.txt │ │ ├── 224.txt │ │ ├── 225.txt │ │ ├── 226.txt │ │ ├── 227.txt │ │ ├── 228.txt │ │ ├── 229.txt │ │ ├── 230.txt │ │ ├── 231.txt │ │ ├── 232.txt │ │ ├── 233.txt │ │ ├── 234.txt │ │ ├── 235.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.jpg │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 10-Dashboard.png │ │ │ ├── 11-Devices.png │ │ │ ├── 20-Activity.png │ │ │ ├── 40-SleepPerDay.png │ │ │ ├── 41-SleepPerWeek.png │ │ │ ├── 50-StepsPerDay.png │ │ │ ├── 51-StepsPerWeek.png │ │ │ ├── 52-StepsPerMonth.png │ │ │ ├── 60-Stress.png │ │ │ ├── 70-LiveActivity.png │ │ │ ├── 70-SportActivities.png │ │ │ ├── 71-SportActivitiesFilter.png │ │ │ └── 72-SportActivitiesSummary.png │ ├── short_description.txt │ └── title.txt │ ├── it-IT │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── pt-PT │ ├── full_description.txt │ └── short_description.txt │ └── ru │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt └── take_app_screenshots.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitea/issue_template/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/.gitea/issue_template/bug_report.yml -------------------------------------------------------------------------------- /.gitea/issue_template/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/.gitea/issue_template/config.yml -------------------------------------------------------------------------------- /.gitea/issue_template/device_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/.gitea/issue_template/device_request.yml -------------------------------------------------------------------------------- /.gitea/issue_template/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/.gitea/issue_template/feature_request.yml -------------------------------------------------------------------------------- /.gitea/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/.gitea/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/dictionaries/t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/.idea/dictionaries/t.xml -------------------------------------------------------------------------------- /.idea/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/.idea/icon.svg -------------------------------------------------------------------------------- /.woodpecker/can_master_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/.woodpecker/can_master_build.yml -------------------------------------------------------------------------------- /.woodpecker/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/.woodpecker/nightly.yml -------------------------------------------------------------------------------- /.woodpecker/run_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/.woodpecker/run_lint.yml -------------------------------------------------------------------------------- /.woodpecker/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/.woodpecker/run_tests.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/CONTRIBUTORS.rst -------------------------------------------------------------------------------- /GBDaoGenerator/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /build 3 | -------------------------------------------------------------------------------- /GBDaoGenerator/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/GBDaoGenerator/build.gradle -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.artwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/LICENSE.artwork -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/lint-baseline.xml -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/banglejs/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/banglejs/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/banglejs/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/banglejs/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/banglejsNightly/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/banglejsNightly/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/aidl/lineageos/weather/RequestInfo.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/aidl/lineageos/weather/RequestInfo.aidl -------------------------------------------------------------------------------- /app/src/main/aidl/lineageos/weather/WeatherInfo.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/aidl/lineageos/weather/WeatherInfo.aidl -------------------------------------------------------------------------------- /app/src/main/aidl/net/osmand/aidlapi/gpx/AGpxBitmap.aidl: -------------------------------------------------------------------------------- 1 | package net.osmand.aidlapi.gpx; 2 | 3 | parcelable AGpxBitmap; -------------------------------------------------------------------------------- /app/src/main/aidl/net/osmand/aidlapi/navigation/ADirectionInfo.aidl: -------------------------------------------------------------------------------- 1 | package net.osmand.aidlapi.navigation; 2 | 3 | parcelable ADirectionInfo; 4 | -------------------------------------------------------------------------------- /app/src/main/assets/activity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/activity.svg -------------------------------------------------------------------------------- /app/src/main/assets/activity_stacked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/activity_stacked.svg -------------------------------------------------------------------------------- /app/src/main/assets/app_config/configure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/app_config/configure.html -------------------------------------------------------------------------------- /app/src/main/assets/app_config/js/Uri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/app_config/js/Uri.js -------------------------------------------------------------------------------- /app/src/main/assets/buds_pro_case.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/buds_pro_case.svg -------------------------------------------------------------------------------- /app/src/main/assets/buds_pro_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/buds_pro_left.svg -------------------------------------------------------------------------------- /app/src/main/assets/buds_pro_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/buds_pro_right.svg -------------------------------------------------------------------------------- /app/src/main/assets/calendar_sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/calendar_sync.svg -------------------------------------------------------------------------------- /app/src/main/assets/devintro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/devintro.png -------------------------------------------------------------------------------- /app/src/main/assets/devintro.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/devintro.xmi -------------------------------------------------------------------------------- /app/src/main/assets/filter_alt_plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/filter_alt_plus.svg -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/battery_layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/battery_layout.json -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/complication_layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/complication_layout.json -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/default_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/default_background.png -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icActiveMins.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icActiveMins.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icBattCharging.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icBattCharging.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icBattEmpty.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icBattEmpty.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icBattery.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icBattery.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icCalories.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icCalories.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icHeart.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icHeart.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icRainChance.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icRainChance.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icSpO2.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icSpO2.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icSteps.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icSteps.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icTrophy.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icTrophy.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icWthClearDay.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icWthClearDay.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icWthClearNite.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icWthClearNite.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icWthCloudy.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icWthCloudy.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icWthPartCloudyDay.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icWthPartCloudyDay.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icWthPartCloudyNite.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icWthPartCloudyNite.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icWthRainy.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icWthRainy.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icWthSnowy.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icWthSnowy.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icWthStormy.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icWthStormy.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/icWthWindy.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/icWthWindy.rle -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/image_layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/image_layout.json -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/menu_layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/menu_layout.json -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/navigationApp.wapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/navigationApp.wapp -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/openSourceWatchface.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/openSourceWatchface.bin -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widget2ndTZ.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widget2ndTZ.bin -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widget2ndTZ_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widget2ndTZ_preview.png -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetActiveMins.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetActiveMins.bin -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetBattery.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetBattery.bin -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetBattery_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetBattery_preview.png -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetCalories.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetCalories.bin -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetChanceOfRain.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetChanceOfRain.bin -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetCustom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetCustom.bin -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetDate.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetDate.bin -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetDate_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetDate_preview.png -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetHR.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetHR.bin -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetHR_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetHR_preview.png -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetSpO2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetSpO2.bin -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetSpO2_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetSpO2_preview.png -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetSteps.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetSteps.bin -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetUV.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetUV.bin -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetUV_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetUV_preview.png -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widgetWeather.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widgetWeather.bin -------------------------------------------------------------------------------- /app/src/main/assets/fossil_hr/widget_bg_error.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/fossil_hr/widget_bg_error.rle -------------------------------------------------------------------------------- /app/src/main/assets/galaxy_buds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/galaxy_buds.svg -------------------------------------------------------------------------------- /app/src/main/assets/gps_edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/gps_edit.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_activity_bike_trainer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_activity_bike_trainer.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_activity_eliptical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_activity_eliptical.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_activity_rope_jump.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_activity_rope_jump.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_activity_threadmill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_activity_threadmill.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_flipper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_flipper.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_flipper_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_flipper_disabled.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_galaxy_buds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_galaxy_buds.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_galaxy_buds_live.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_galaxy_buds_live.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_galaxy_buds_pro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_galaxy_buds_pro.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_miband6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_miband6.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_miband6_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_miband6_disabled.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_sony_800n.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_sony_800n.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_sony_800n_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_sony_800n_disabled.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_sony_overhead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_sony_overhead.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_supercars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_supercars.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_supercars_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_supercars_disabled.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_unknown.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_unknown_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_unknown_disabled.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_vesc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_vesc.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_device_vesc_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_device_vesc_disabled.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_distance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_distance.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_distance_total.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_distance_total.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_galaxy_buds_l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_galaxy_buds_l.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_galaxy_buds_live.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_galaxy_buds_live.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_galaxy_buds_live_l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_galaxy_buds_live_l.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_galaxy_buds_live_r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_galaxy_buds_live_r.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_galaxy_buds_r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_galaxy_buds_r.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_heartrate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_heartrate.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_intensity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_intensity.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_intensity_hollow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_intensity_hollow.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_launcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_launcher.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_launcher_neon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_launcher_neon.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_no_watch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_no_watch.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_shoe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_shoe.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_shoe_prints_many.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_shoe_prints_many.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_sony_wf_800n_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_sony_wf_800n_left.svg -------------------------------------------------------------------------------- /app/src/main/assets/ic_sony_wf_800n_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/ic_sony_wf_800n_right.svg -------------------------------------------------------------------------------- /app/src/main/assets/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/logback.xml -------------------------------------------------------------------------------- /app/src/main/assets/migrations/devicetype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/migrations/devicetype.json -------------------------------------------------------------------------------- /app/src/main/assets/nothing_ear_l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/nothing_ear_l.svg -------------------------------------------------------------------------------- /app/src/main/assets/nothing_ear_r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/nothing_ear_r.svg -------------------------------------------------------------------------------- /app/src/main/assets/olive_laurel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/olive_laurel.svg -------------------------------------------------------------------------------- /app/src/main/assets/shortcut_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/shortcut_black.svg -------------------------------------------------------------------------------- /app/src/main/assets/sony_800n.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/sony_800n.svg -------------------------------------------------------------------------------- /app/src/main/assets/sony_800n_case.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/sony_800n_case.svg -------------------------------------------------------------------------------- /app/src/main/assets/sports_badmington.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/sports_badmington.svg -------------------------------------------------------------------------------- /app/src/main/assets/sports_pingpong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/sports_pingpong.svg -------------------------------------------------------------------------------- /app/src/main/assets/tws_bud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/tws_bud.svg -------------------------------------------------------------------------------- /app/src/main/assets/tws_case.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/assets/tws_case.svg -------------------------------------------------------------------------------- /app/src/main/java/lineageos/os/Build.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/java/lineageos/os/Build.java -------------------------------------------------------------------------------- /app/src/main/java/lineageos/os/Concierge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/java/lineageos/os/Concierge.java -------------------------------------------------------------------------------- /app/src/main/java/lineageos/weather/RequestInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/java/lineageos/weather/RequestInfo.java -------------------------------------------------------------------------------- /app/src/main/java/lineageos/weather/WeatherInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/java/lineageos/weather/WeatherInfo.java -------------------------------------------------------------------------------- /app/src/main/java/net/osmand/aidlapi/AidlParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/java/net/osmand/aidlapi/AidlParams.java -------------------------------------------------------------------------------- /app/src/main/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/lint.xml -------------------------------------------------------------------------------- /app/src/main/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/project.properties -------------------------------------------------------------------------------- /app/src/main/proto/garmin/garmin_contacts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/proto/garmin/garmin_contacts.proto -------------------------------------------------------------------------------- /app/src/main/proto/garmin/gdi_calendar_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/proto/garmin/gdi_calendar_service.proto -------------------------------------------------------------------------------- /app/src/main/proto/garmin/gdi_core.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/proto/garmin/gdi_core.proto -------------------------------------------------------------------------------- /app/src/main/proto/garmin/gdi_device_status.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/proto/garmin/gdi_device_status.proto -------------------------------------------------------------------------------- /app/src/main/proto/garmin/gdi_find_my_watch.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/proto/garmin/gdi_find_my_watch.proto -------------------------------------------------------------------------------- /app/src/main/proto/garmin/gdi_http_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/proto/garmin/gdi_http_service.proto -------------------------------------------------------------------------------- /app/src/main/proto/garmin/gdi_settings_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/proto/garmin/gdi_settings_service.proto -------------------------------------------------------------------------------- /app/src/main/proto/garmin/gdi_smart_proto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/proto/garmin/gdi_smart_proto.proto -------------------------------------------------------------------------------- /app/src/main/proto/garmin/gdi_sms_notification.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/proto/garmin/gdi_sms_notification.proto -------------------------------------------------------------------------------- /app/src/main/proto/huami.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/proto/huami.proto -------------------------------------------------------------------------------- /app/src/main/proto/smaq2oss.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/proto/smaq2oss.proto -------------------------------------------------------------------------------- /app/src/main/proto/xiaomi.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/proto/xiaomi.proto -------------------------------------------------------------------------------- /app/src/main/res/.gitignore: -------------------------------------------------------------------------------- 1 | values-en 2 | -------------------------------------------------------------------------------- /app/src/main/res/android-logger.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/android-logger.properties -------------------------------------------------------------------------------- /app/src/main/res/anim/bounceleft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/anim/bounceleft.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/bounceright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/anim/bounceright.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/flyleft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/anim/flyleft.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/flyright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/anim/flyright.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slidefromtop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/anim/slidefromtop.xml -------------------------------------------------------------------------------- /app/src/main/res/color/alarm_dow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/color/alarm_dow.xml -------------------------------------------------------------------------------- /app/src/main/res/color/blacklist_checkboxes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/color/blacklist_checkboxes.xml -------------------------------------------------------------------------------- /app/src/main/res/color/btn_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/color/btn_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_languagepack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-hdpi/ic_languagepack.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-hdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_systemapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-hdpi/ic_systemapp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_watchapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-hdpi/ic_watchapp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_watchface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-hdpi/ic_watchface.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_languagepack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-mdpi/ic_languagepack.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-mdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_systemapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-mdpi/ic_systemapp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_watchapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-mdpi/ic_watchapp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_watchface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-mdpi/ic_watchface.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-v21/splash.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_languagepack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-xhdpi/ic_languagepack.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-xhdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_systemapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-xhdpi/ic_systemapp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_watchapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-xhdpi/ic_watchapp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_watchface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-xhdpi/ic_watchface.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_languagepack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-xxhdpi/ic_languagepack.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-xxhdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_systemapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-xxhdpi/ic_systemapp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_watchapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-xxhdpi/ic_watchapp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_watchface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable-xxhdpi/ic_watchface.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow_autofit_height.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/arrow_autofit_height.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_bloodtype_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/baseline_bloodtype_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_merge_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/baseline_merge_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/brand_speedtest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/brand_speedtest.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/gadgetbridge_img.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/gadgetbridge_img.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_access_alarms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_access_alarms.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_access_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_access_time.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_action_manage_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_action_manage_apps.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_archery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_archery.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_badmington.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_badmington.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_basketball.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_basketball.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_biking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_biking.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_boating.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_boating.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_bowling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_bowling.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_climbing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_climbing.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_cricket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_cricket.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_curling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_curling.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_dumbbell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_dumbbell.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_eliptical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_eliptical.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_exercise.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_exercise.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_frisbee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_frisbee.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_graphs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_graphs.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_hiking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_hiking.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_hula_hoop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_hula_hoop.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_pilates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_pilates.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_pingpong.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_pingpong.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_rope_jump.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_rope_jump.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_rowing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_rowing.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_running.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_running.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_sailing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_sailing.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_sleep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_sleep.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_snorkeling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_snorkeling.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_soccer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_soccer.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_stacked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_stacked.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_stairs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_stairs.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_stretching.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_stretching.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_sup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_sup.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_surfing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_surfing.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_swimming.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_swimming.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_threadmill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_threadmill.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_tracks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_tracks.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_trail_run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_trail_run.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_unknown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_unknown.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_walking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_walking.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activity_yoga.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activity_yoga.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_activitytracker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_activitytracker.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_add.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_add_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_add_gray.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_always_on_display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_always_on_display.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_archive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_archive.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_circle_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_arrow_circle_left.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_circle_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_arrow_circle_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_upward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_arrow_upward.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_auto_awesome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_auto_awesome.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_battery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_battery.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_battery_20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_battery_20.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_battery_50.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_battery_50.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_battery_80.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_battery_80.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_battery_charging_20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_battery_charging_20.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_battery_charging_50.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_battery_charging_50.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_battery_charging_80.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_battery_charging_80.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_battery_full.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_battery_full.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_battery_unknown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_battery_unknown.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_beep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_beep.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_block.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_bluetooth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_bluetooth.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_bluetooth_searching.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_bluetooth_searching.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_bolt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_bolt.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_brightness_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_brightness_2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_buds_pro_case.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_buds_pro_case.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_buds_pro_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_buds_pro_left.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_buds_pro_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_buds_pro_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_calculate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_calculate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_calendar_from.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_calendar_from.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_calendar_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_calendar_sync.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_calendar_to.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_calendar_to.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_calendar_today.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_calendar_today.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_calories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_calories.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_camera_remote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_camera_remote.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_chair.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_chair.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_checklist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_checklist.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_circle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_create.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_create.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_create_new_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_create_new_folder.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_dashboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_dashboard.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_date_range.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_date_range.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_delete_forever.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_delete_forever.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_developer_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_developer_mode.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_amazfit_bip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_amazfit_bip.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_banglejs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_banglejs.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_default.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_flipper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_flipper.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_folder.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_galaxy_buds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_galaxy_buds.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_h30_h10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_h30_h10.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_headphones.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_headphones.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_hplus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_hplus.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_itag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_itag.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_lovetoy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_lovetoy.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_miband.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_miband.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_miband2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_miband2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_miband6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_miband6.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_miscale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_miscale.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_miwatch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_miwatch.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_nothingear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_nothingear.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_pebble.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_pebble.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_pinetime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_pinetime.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_roidmi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_roidmi.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_scannable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_scannable.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_smartring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_smartring.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_sony_wf_800n.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_sony_wf_800n.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_supercars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_supercars.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_thermometer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_thermometer.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_unknown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_unknown.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_vesc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_vesc.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_watchxplus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_watchxplus.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_device_zetime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_device_zetime.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_devices_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_devices_other.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_distance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_distance.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_distance_total.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_distance_total.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_donate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_donate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_done.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_done.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_done_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_done_all.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_drag_handle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_drag_handle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_drink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_drink.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_earbuds_battery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_earbuds_battery.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_email.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_email.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_emergency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_emergency.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_engineering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_engineering.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_equalizer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_equalizer.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_events.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_events_gold.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_events_gold.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_extension.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_file_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_file_open.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_file_upload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_file_upload.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_filter_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_filter_1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_filter_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_filter_2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_filter_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_filter_3.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_filter_9_plus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_filter_9_plus.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_filter_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_filter_alt.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_filter_alt_plus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_filter_alt_plus.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_filter_b_and_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_filter_b_and_w.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_firmware.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_firmware.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_focus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_focus.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_folder.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_folder_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_folder_delete.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_font_download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_font_download.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_font_size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_font_size.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_galaxy_buds_l.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_galaxy_buds_l.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_galaxy_buds_live_l.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_galaxy_buds_live_l.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_galaxy_buds_live_r.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_galaxy_buds_live_r.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_galaxy_buds_r.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_galaxy_buds_r.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_gps_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_gps_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_gps_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_gps_location.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_graphic_eq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_graphic_eq.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_health.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_health.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_hearing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_hearing.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_heart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_heart.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_heartrate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_heartrate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_help_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_help_outline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_history.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_horizontal_rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_horizontal_rule.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_hourglass_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_hourglass_empty.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_humidity_mid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_humidity_mid.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_info.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_insights.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_insights.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_intensity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_intensity.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_intensity_hollow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_intensity_hollow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_invert_colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_invert_colors.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_language.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_led_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_led_color.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_link.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_list_numbered.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_list_numbered.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_lock_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_lock_open.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_loyalty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_loyalty.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_map.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_message_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_message_outline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_monochrome_photos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_monochrome_photos.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_mood_bad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_mood_bad.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_more_vert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_more_vert.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_mtu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_mtu.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_music.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_music.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_music_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_music_item.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_music_note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_music_note.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_navigation.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_nights_stay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_nights_stay.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_no_watch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_no_watch.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_nothing_ear_l.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_nothing_ear_l.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_nothing_ear_r.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_nothing_ear_r.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_notifications.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_open_in_browser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_open_in_browser.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pageview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_pageview.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_paint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_paint.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_password.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_password.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_pause.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pending_actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_pending_actions.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_person.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_person.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_phone.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_phone_msg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_phone_msg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_phone_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_phone_outline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_play.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_power_settings_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_power_settings_new.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pressure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_pressure.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_radio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_radio.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_refresh.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_remove_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_remove_image.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_reply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_reply.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_report.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_rotate_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_rotate_left.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_save.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_screen_rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_screen_rotation.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_screenshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_screenshot.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_search.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_select_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_select_all.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sensor_calibration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_sensor_calibration.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_settings_remote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_settings_remote.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_shoe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_shoe.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_shoe_print.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_shoe_print.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_shoe_prints_many.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_shoe_prints_many.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_shortcut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_shortcut.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_show_chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_show_chart.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_smart_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_smart_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sony_wf_800n_case.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_sony_wf_800n_case.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sony_wf_800n_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_sony_wf_800n_left.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sony_wf_800n_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_sony_wf_800n_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_speaker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_speaker.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_star_gold.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_star_gold.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_star_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_star_gray.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_stop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_stop.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_surround.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_surround.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_switch_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_switch_left.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_switch_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_switch_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_sync.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_tabs.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_temperature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_temperature.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_thermometer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_thermometer.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_timer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_timer.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_touch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_touch.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_translate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_translate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tws_case.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_tws_case.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_u_turn_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_u_turn_left.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_u_turn_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_u_turn_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_verified.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_verified.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_vibration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_vibration.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_videogame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_videogame.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_voice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_voice.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_volume_off.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_volume_up.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_vpn_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_vpn_key.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_warning.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_warning_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_warning_gray.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_watch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_watch.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_watch_bw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_watch_bw.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_wb_sunny.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_wb_sunny.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_wb_twilight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_wb_twilight.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_wena_icon_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_wena_icon_center.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_wena_icon_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_wena_icon_left.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_wena_icon_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_wena_icon_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_widgets.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_wifi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_wifi.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_wifi_tethering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/ic_wifi_tethering.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/level_list_battery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/level_list_battery.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/list_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/list_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/side_nav_bar.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/splash.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/drawable/widget_preview.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_alarm_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_alarm_details.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_android_pairing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_android_pairing.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_appblacklist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_appblacklist.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_appinstaller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_appinstaller.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_appmanager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_appmanager.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_battery_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_battery_info.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_calblacklist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_calblacklist.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_camera.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_charts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_charts.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_commute_actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_commute_actions.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_contact_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_contact_details.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_data_management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_data_management.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_debug.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_device_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_device_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_discovery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_discovery.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_file_manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_file_manager.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_find_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_find_phone.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_gpx_receiver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_gpx_receiver.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_idasen_control.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_idasen_control.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_list_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_list_detail.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main_app_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_main_app_bar.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_mi_band_pairing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_mi_band_pairing.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_musicmanager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_musicmanager.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_pebble_pairing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_pebble_pairing.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_permissions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_permissions.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_summary_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_summary_details.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_um25_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_um25_data.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_vesc_control.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_vesc_control.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_vibration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_vibration.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_watch9_pairing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_watch9_pairing.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_welcome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/activity_welcome.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/custom_chart_marker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/custom_chart_marker.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dashboard_widget_goals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/dashboard_widget_goals.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dashboard_widget_today.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/dashboard_widget_today.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/device_itemv2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/device_itemv2.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_frequency_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/dialog_frequency_picker.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_body_energy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_body_energy.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_calories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_calories.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_charts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_charts.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_cycling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_cycling.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_dashboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_dashboard.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_devices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_devices.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_gps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_gps.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_heart_rate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_heart_rate.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_hrv_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_hrv_status.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_live_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_live_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_nested_tabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_nested_tabs.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_pai_chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_pai_chart.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_sleepchart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_sleepchart.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_statschart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_statschart.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_steps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_steps.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_steps_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_steps_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_steps_period.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_steps_period.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_stresschart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_stresschart.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_temperature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_temperature.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_vo2max.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_vo2max.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_weeksleep_chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_weeksleep_chart.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_weeksteps_chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_weeksteps_chart.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_weightchart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_weightchart.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_welcome_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/fragment_welcome_intro.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/heart_rate_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/heart_rate_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/item_alarm.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_app_blacklist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/item_app_blacklist.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_appmanager_watchapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/item_appmanager_watchapp.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_cal_blacklist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/item_cal_blacklist.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/item_contact.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_file_manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/item_file_manager.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_musicmanager_song.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/item_musicmanager_song.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_reminder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/item_reminder.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_widget_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/item_widget_screen.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_with_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/item_with_details.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_with_details_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/item_with_details_small.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_world_clock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/item_world_clock.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_widget_distance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/layout_widget_distance.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_widget_duration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/layout_widget_duration.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_widget_generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/layout_widget_generic.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item_checkable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/list_item_checkable.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/main_drawer_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/main_drawer_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/preference_checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/preference_checkbox.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/qhybrid_app_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/qhybrid_app_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sleep_alarm_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/sleep_alarm_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sport_activity_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/sport_activity_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/steps_streak_average.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/steps_streak_average.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/steps_streak_days.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/steps_streak_days.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/steps_streak_total.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/steps_streak_total.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/steps_streaks_dashboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/steps_streaks_dashboard.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/layout/widget.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/activity_list_context_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/menu/activity_list_context_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/activity_list_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/menu/activity_list_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/activity_main_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/menu/activity_main_drawer.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/app_blacklist_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/menu/app_blacklist_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/appmanager_context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/menu/appmanager_context.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/bottom_nav_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/menu/bottom_nav_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/dashboard_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/menu/dashboard_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/file_manager_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/menu/file_manager_file.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_charts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/menu/menu_charts.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_discovery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/menu/menu_discovery.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_file_manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/menu/menu_file_manager.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/musicmanager_context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/menu/musicmanager_context.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/raw/ping_tone.rtttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/raw/ping_tone.rtttl -------------------------------------------------------------------------------- /app/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-en-rGB/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-eu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-eu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-fa/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr-rCA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-fr-rCA/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-gl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-gl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-he/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-he/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-hi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ia/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-ia/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-id/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-id/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ka/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-ka/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-lv/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-ml/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-my/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-my/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nb-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-nb-rNO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-ta/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v14/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-v14/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dslv_attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values/dslv_attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/rc_attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values/rc_attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values/values.xml -------------------------------------------------------------------------------- /app/src/main/res/values/wpi_attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/values/wpi_attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/about_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/about_user.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/changelog_master.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/changelog_master.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/charts_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/charts_preferences.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/dashboard_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/dashboard_preferences.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_amazfitband5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_amazfitband5.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_amazfitbip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_amazfitbip.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_amazfitbips.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_amazfitbips.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_amazfitbipu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_amazfitbipu.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_amazfitcor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_amazfitcor.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_amazfittrex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_amazfittrex.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_amazfitx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_amazfitx.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_antilost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_antilost.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_autolight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_autolight.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_ble_api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_ble_api.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_casio_alert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_casio_alert.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_chartstabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_chartstabs.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_colmi_r0x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_colmi_r0x.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_contacts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_contacts.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_dateformat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_dateformat.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_dateformat_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_dateformat_2.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_device_name.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_device_name.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_femometer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_femometer.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_find_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_find_phone.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_fitpro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_fitpro.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_ftp_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_ftp_server.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_galaxy_buds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_galaxy_buds.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_garmin_agps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_garmin_agps.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_gps_agps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_gps_agps.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_header_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_header_apps.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_header_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_header_other.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_header_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_header_time.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_headphones.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_headphones.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_high_mtu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_high_mtu.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_hourly_chime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_hourly_chime.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_hplus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_hplus.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_huawei_debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_huawei_debug.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_idasen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_idasen.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_inactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_inactivity.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_lock_unlock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_lock_unlock.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_miband3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_miband3.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_miband5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_miband5.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_miband6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_miband6.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_mijia_lywsd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_mijia_lywsd.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_mismartscale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_mismartscale.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_nightmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_nightmode.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_nothing_ear1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_nothing_ear1.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_nutmini.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_nutmini.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_pairingkey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_pairingkey.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_password.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_password.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_pixoo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_pixoo.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_power_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_power_mode.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_power_saving.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_power_saving.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_qc35.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_qc35.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_root_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_root_audio.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_root_battery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_root_battery.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_root_display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_root_display.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_root_generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_root_generic.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_root_health.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_root_health.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_root_sound.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_root_sound.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_root_workout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_root_workout.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_scannable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_scannable.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_sleep_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_sleep_mode.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_sleep_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_sleep_time.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_sonyswr12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_sonyswr12.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_swipeunlock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_swipeunlock.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_text_bitmaps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_text_bitmaps.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_time_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_time_sync.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_timeformat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_timeformat.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_trusleep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_trusleep.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_um25.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_um25.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_vesc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_vesc.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_volume.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_volume.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_watchxplus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_watchxplus.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_wearlocation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_wearlocation.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_wearmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_wearmode.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_wena3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_wena3.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_widgets.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_wifi_hotspot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_wifi_hotspot.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_workmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_workmode.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/devicesettings_world_clocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/devicesettings_world_clocks.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/fossil_hr_widget_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/fossil_hr_widget_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/garmin_realtime_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/garmin_realtime_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/loyalty_cards.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/loyalty_cards.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/notifications_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/notifications_preferences.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/shared_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/shared_paths.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/sleep_alarm_widget_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/sleep_alarm_widget_info.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/sleepasandroid_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/sleepasandroid_preferences.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/widget_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/main/res/xml/widget_info.xml -------------------------------------------------------------------------------- /app/src/mainline/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/mainline/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/nightly/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nightly/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nightly/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nightly/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nightly/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nightly/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nightly/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nightly/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nightly/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nightly/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nightly/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nightly/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nightly/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nightly/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nightly/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nightly/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nightly/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nightly/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nightly/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nightly/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nightly/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nightly/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/nopebble/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nopebble/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nopebble/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nopebble/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nopebble/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nopebble/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nopebble/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nopebble/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nopebble/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nopebble/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/nopebble/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/nopebble/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/test/resources/ActivityDetailsDump1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/test/resources/ActivityDetailsDump1.txt -------------------------------------------------------------------------------- /app/src/test/resources/gpx-parser-test-order.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/test/resources/gpx-parser-test-order.gpx -------------------------------------------------------------------------------- /app/src/test/resources/gpx.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/app/src/test/resources/gpx.xsd -------------------------------------------------------------------------------- /external/build_fossil_hr_gbapps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/external/build_fossil_hr_gbapps.sh -------------------------------------------------------------------------------- /external/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/external/pack.py -------------------------------------------------------------------------------- /external/patches/jerryscript-gcc-12-build-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/external/patches/jerryscript-gcc-12-build-fix.patch -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/gradlew.bat -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/renovate.json -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':GBDaoGenerator' 2 | -------------------------------------------------------------------------------- /src/banglejs/fastlane/metadata/android/en-US/changelogs: -------------------------------------------------------------------------------- 1 | ../../../../../mainline/fastlane/metadata/android/en-US/changelogs -------------------------------------------------------------------------------- /src/banglejs/fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Bangle.js Gadgetbridge 2 | -------------------------------------------------------------------------------- /src/mainline/fastlane/metadata/android/cs-CZ/short_description.txt: -------------------------------------------------------------------------------- 1 | Používejte chytré hodinky a další Bluetooth zařízení, data zůstávají u vás. 2 | -------------------------------------------------------------------------------- /src/mainline/fastlane/metadata/android/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Gadgetbridge -------------------------------------------------------------------------------- /src/mainline/fastlane/metadata/android/en-US/changelogs/106.txt: -------------------------------------------------------------------------------- 1 | * Mi2/Bip: Support setting distance units (metric/imperial) 2 | -------------------------------------------------------------------------------- /src/mainline/fastlane/metadata/android/en-US/changelogs/121.txt: -------------------------------------------------------------------------------- 1 | * Amazfit Bip: Fix language setting on new firmwares 2 | -------------------------------------------------------------------------------- /src/mainline/fastlane/metadata/android/en-US/changelogs/128.txt: -------------------------------------------------------------------------------- 1 | * Amazfit Bip: Time and timezone fixes for Android <=6 when exporting GPX 2 | -------------------------------------------------------------------------------- /src/mainline/fastlane/metadata/android/en-US/changelogs/142.txt: -------------------------------------------------------------------------------- 1 | * Pebble: Fix crash with DISMISS and OPEN actions 2 | -------------------------------------------------------------------------------- /src/mainline/fastlane/metadata/android/en-US/changelogs/144.txt: -------------------------------------------------------------------------------- 1 | * Fix db deadlock on alarm migration -------------------------------------------------------------------------------- /src/mainline/fastlane/metadata/android/en-US/changelogs/153.txt: -------------------------------------------------------------------------------- 1 | * Mi Band 4: Support flashing watchfaces, res and firmware (.ft untested) 2 | -------------------------------------------------------------------------------- /src/mainline/fastlane/metadata/android/en-US/changelogs/159.txt: -------------------------------------------------------------------------------- 1 | * Amazfit Bip Lite: Support flashing firmware and watchfaces 2 | -------------------------------------------------------------------------------- /src/mainline/fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Gadgetbridge -------------------------------------------------------------------------------- /src/mainline/fastlane/metadata/android/it-IT/title.txt: -------------------------------------------------------------------------------- 1 | Gadgetbridge -------------------------------------------------------------------------------- /src/mainline/fastlane/metadata/android/ru/title.txt: -------------------------------------------------------------------------------- 1 | Gadgetbridge -------------------------------------------------------------------------------- /src/mainline/fastlane/take_app_screenshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freeyourgadget/Gadgetbridge/HEAD/src/mainline/fastlane/take_app_screenshots.sh --------------------------------------------------------------------------------