├── app ├── .gitignore ├── ignore.xml.enc ├── libs │ ├── arity-2.1.6.jar │ └── microsoft-band-1.3.20307.2.jar ├── google-services.json.enc ├── src │ ├── main │ │ ├── res-screen │ │ │ ├── drawable │ │ │ │ ├── band.png │ │ │ │ └── pipboy.jpg │ │ │ ├── raw │ │ │ │ ├── camera_tile_large.png │ │ │ │ ├── camera_tile_small.png │ │ │ │ ├── media_tile_large.png │ │ │ │ ├── media_tile_small.png │ │ │ │ ├── music_tile_large.png │ │ │ │ ├── music_tile_small.png │ │ │ │ ├── tile_icon_large.png │ │ │ │ ├── tile_icon_small.png │ │ │ │ ├── barcode_tile_large.png │ │ │ │ ├── barcode_tile_small.png │ │ │ │ ├── calculator_tile_large.png │ │ │ │ ├── calculator_tile_small.png │ │ │ │ ├── flashlight_tile_large.png │ │ │ │ └── flashlight_tile_small.png │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_flash_on_white_48dp.png │ │ │ │ ├── ic_flash_auto_white_48dp.png │ │ │ │ ├── ic_flash_off_white_48dp.png │ │ │ │ ├── ic_visibility_white_48dp.png │ │ │ │ ├── ic_camera_front_white_48dp.png │ │ │ │ ├── ic_camera_rear_white_48dp.png │ │ │ │ └── ic_visibility_off_white_48dp.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_flash_on_white_48dp.png │ │ │ │ ├── ic_flash_auto_white_48dp.png │ │ │ │ ├── ic_flash_off_white_48dp.png │ │ │ │ ├── ic_visibility_white_48dp.png │ │ │ │ ├── ic_camera_front_white_48dp.png │ │ │ │ ├── ic_camera_rear_white_48dp.png │ │ │ │ └── ic_visibility_off_white_48dp.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── ic_flash_off_white_48dp.png │ │ │ │ ├── ic_flash_on_white_48dp.png │ │ │ │ ├── ic_camera_front_white_48dp.png │ │ │ │ ├── ic_camera_rear_white_48dp.png │ │ │ │ ├── ic_flash_auto_white_48dp.png │ │ │ │ ├── ic_visibility_white_48dp.png │ │ │ │ └── ic_visibility_off_white_48dp.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── ic_flash_on_white_48dp.png │ │ │ │ ├── ic_camera_rear_white_48dp.png │ │ │ │ ├── ic_flash_auto_white_48dp.png │ │ │ │ ├── ic_flash_off_white_48dp.png │ │ │ │ ├── ic_visibility_white_48dp.png │ │ │ │ ├── ic_camera_front_white_48dp.png │ │ │ │ └── ic_visibility_off_white_48dp.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── ic_flash_auto_white_48dp.png │ │ │ │ ├── ic_flash_off_white_48dp.png │ │ │ │ ├── ic_flash_on_white_48dp.png │ │ │ │ ├── ic_visibility_white_48dp.png │ │ │ │ ├── ic_camera_front_white_48dp.png │ │ │ │ ├── ic_camera_rear_white_48dp.png │ │ │ │ └── ic_visibility_off_white_48dp.png │ │ │ ├── anim │ │ │ │ ├── slide_in_right.xml │ │ │ │ ├── slide_out_right.xml │ │ │ │ ├── fade_in.xml │ │ │ │ ├── fade_back.xml │ │ │ │ └── fade_forward.xml │ │ │ ├── layout │ │ │ │ ├── dialog_donate.xml │ │ │ │ ├── fragment_main.xml │ │ │ │ ├── activity_webview.xml │ │ │ │ ├── activity_changelog.xml │ │ │ │ ├── activities_list_item.xml │ │ │ │ ├── summaries_item_layout.xml │ │ │ │ ├── fragment_activities.xml │ │ │ │ ├── fragment_summaries.xml │ │ │ │ ├── activity_camera.xml │ │ │ │ ├── donate_row.xml │ │ │ │ ├── sensor_cardview.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_cloud.xml │ │ │ │ ├── changelog_row.xml │ │ │ │ ├── changelog_header.xml │ │ │ │ └── fragment_profile.xml │ │ │ └── menu │ │ │ │ └── menu_sensor.xml │ │ ├── res-main │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ ├── values │ │ │ │ ├── dimens.xml │ │ │ │ └── colors.xml │ │ │ ├── values-zh-rCN │ │ │ │ └── strings.xml │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ └── values-de │ │ │ │ └── strings.xml │ │ └── java │ │ │ └── com │ │ │ └── pimp │ │ │ └── companionforband │ │ │ ├── activities │ │ │ ├── cloud │ │ │ │ ├── CloudConstants.java │ │ │ │ ├── JsonAccessTokenExtractor.java │ │ │ │ └── CloudPagerAdapter.java │ │ │ ├── support │ │ │ │ ├── GittyActivity.java │ │ │ │ └── ChangelogActivity.java │ │ │ └── main │ │ │ │ ├── SectionsPagerAdapter.java │ │ │ │ ├── DonateListAdapter.java │ │ │ │ └── ZoomOutPageTransformer.java │ │ │ ├── utils │ │ │ ├── UIUtils.java │ │ │ ├── iab │ │ │ │ ├── IabException.java │ │ │ │ ├── IabResult.java │ │ │ │ ├── IabBroadcastReceiver.java │ │ │ │ ├── SkuDetails.java │ │ │ │ └── Purchase.java │ │ │ ├── band │ │ │ │ └── subscription │ │ │ │ │ ├── HeartRateConsentTask.java │ │ │ │ │ ├── RRIntervalSubscriptionTask.java │ │ │ │ │ ├── HeartRateSubscriptionTask.java │ │ │ │ │ └── Band2SubscriptionTask.java │ │ │ └── jsontocsv │ │ │ │ └── writer │ │ │ │ └── CSVWriter.java │ │ │ ├── AnalyticsApplication.java │ │ │ └── fragments │ │ │ └── sensors │ │ │ └── ChartAdapter.java │ └── test │ │ └── java │ │ └── com │ │ └── pimp │ │ └── companionforband │ │ └── UnitTest.java └── proguard-rules.pro ├── SDK ├── Microsoft Band SDK.pdf ├── drawable-nodpi-v4 │ ├── neon_dj.png │ ├── coral_mesh.png │ ├── cyber_mesh.png │ ├── flame_mesh.png │ ├── joule_mesh.png │ ├── lime_angle.png │ ├── lime_folds.png │ ├── lime_mesh.png │ ├── lime_plain.png │ ├── neon_berry.png │ ├── neon_cargo.png │ ├── neon_coral.png │ ├── neon_cyber.png │ ├── neon_kale.png │ ├── neon_lime.png │ ├── neon_pizza.png │ ├── neon_storm.png │ ├── neon_tang.png │ ├── coral_angle.png │ ├── coral_blinds.png │ ├── coral_folds.png │ ├── coral_petals.png │ ├── coral_pixels.png │ ├── coral_plain.png │ ├── coral_sequins.png │ ├── coral_stripes.png │ ├── coral_vortex.png │ ├── cyber_angle.png │ ├── cyber_blinds.png │ ├── cyber_folds.png │ ├── cyber_petals.png │ ├── cyber_pixels.png │ ├── cyber_plain.png │ ├── cyber_sequins.png │ ├── cyber_stripes.png │ ├── cyber_vortex.png │ ├── discrete_mesh.png │ ├── electric_mesh.png │ ├── flame_angle.png │ ├── flame_blinds.png │ ├── flame_folds.png │ ├── flame_petals.png │ ├── flame_pixels.png │ ├── flame_plain.png │ ├── flame_sequins.png │ ├── flame_stripes.png │ ├── flame_vortex.png │ ├── fuchsia_angle.png │ ├── fuchsia_folds.png │ ├── fuchsia_mesh.png │ ├── fuchsia_plain.png │ ├── joule_angle.png │ ├── joule_blinds.png │ ├── joule_folds.png │ ├── joule_petals.png │ ├── joule_pixels.png │ ├── joule_plain.png │ ├── joule_sequins.png │ ├── joule_stripes.png │ ├── joule_vortex.png │ ├── lime_blinds.png │ ├── lime_petals.png │ ├── lime_pixels.png │ ├── lime_sequins.png │ ├── lime_stripes.png │ ├── lime_vortex.png │ ├── neon_dj_chevs.png │ ├── neon_dj_dan.png │ ├── neon_dj_fast.png │ ├── neon_dj_fiber.png │ ├── neon_dj_fwd.png │ ├── neon_dj_noods.png │ ├── neon_dj_time.png │ ├── neon_electric.png │ ├── neon_kale_dan.png │ ├── neon_kale_fwd.png │ ├── neon_killabee.png │ ├── neon_koolaid.png │ ├── neon_lasertag.png │ ├── neon_lime_dan.png │ ├── neon_lime_fwd.png │ ├── neon_skyline.png │ ├── neon_tang_dan.png │ ├── neon_tang_fwd.png │ ├── neon_tuxedo.png │ ├── orchid_angle.png │ ├── orchid_blinds.png │ ├── orchid_folds.png │ ├── orchid_mesh.png │ ├── orchid_petals.png │ ├── orchid_pixels.png │ ├── orchid_plain.png │ ├── orchid_vortex.png │ ├── violet_angle.png │ ├── violet_blinds.png │ ├── violet_folds.png │ ├── violet_mesh.png │ ├── violet_petals.png │ ├── violet_pixels.png │ ├── violet_plain.png │ ├── violet_vortex.png │ ├── coral_honeycomb.png │ ├── coral_triangles.png │ ├── cornflower_mesh.png │ ├── cyber_honeycomb.png │ ├── cyber_triangles.png │ ├── discrete_angle.png │ ├── discrete_blinds.png │ ├── discrete_folds.png │ ├── discrete_petals.png │ ├── discrete_pixels.png │ ├── discrete_plain.png │ ├── discrete_vortex.png │ ├── electric_angle.png │ ├── electric_blinds.png │ ├── electric_folds.png │ ├── electric_petals.png │ ├── electric_pixels.png │ ├── electric_plain.png │ ├── electric_vortex.png │ ├── flame_honeycomb.png │ ├── flame_triangles.png │ ├── fuchsia_blinds.png │ ├── fuchsia_petals.png │ ├── fuchsia_pixels.png │ ├── fuchsia_sequins.png │ ├── fuchsia_stripes.png │ ├── fuchsia_vortex.png │ ├── joule_honeycomb.png │ ├── joule_triangles.png │ ├── lime_honeycomb.png │ ├── lime_triangles.png │ ├── neon_berry_dan.png │ ├── neon_berry_fast.png │ ├── neon_berry_fwd.png │ ├── neon_berry_time.png │ ├── neon_california.png │ ├── neon_cargo_dan.png │ ├── neon_cargo_fast.png │ ├── neon_cargo_fwd.png │ ├── neon_cargo_time.png │ ├── neon_coral_dan.png │ ├── neon_coral_fast.png │ ├── neon_coral_fwd.png │ ├── neon_coral_time.png │ ├── neon_cyber_dan.png │ ├── neon_cyber_fast.png │ ├── neon_cyber_fwd.png │ ├── neon_cyber_time.png │ ├── neon_dj_curves.png │ ├── neon_dj_plates.png │ ├── neon_kale_chevs.png │ ├── neon_kale_fast.png │ ├── neon_kale_fiber.png │ ├── neon_kale_noods.png │ ├── neon_kale_time.png │ ├── neon_lime_chevs.png │ ├── neon_lime_fast.png │ ├── neon_lime_fiber.png │ ├── neon_lime_noods.png │ ├── neon_lime_time.png │ ├── neon_pizza_dan.png │ ├── neon_pizza_fast.png │ ├── neon_pizza_fwd.png │ ├── neon_pizza_time.png │ ├── neon_storm_dan.png │ ├── neon_storm_fast.png │ ├── neon_storm_fwd.png │ ├── neon_storm_time.png │ ├── neon_tang_chevs.png │ ├── neon_tang_fast.png │ ├── neon_tang_fiber.png │ ├── neon_tang_noods.png │ ├── neon_tang_time.png │ ├── neon_tangerine.png │ ├── neon_tuxedo_dan.png │ ├── neon_tuxedo_fwd.png │ ├── orchid_sequins.png │ ├── orchid_stripes.png │ ├── violet_sequins.png │ ├── violet_stripes.png │ ├── cornflower_angle.png │ ├── cornflower_blinds.png │ ├── cornflower_folds.png │ ├── cornflower_petals.png │ ├── cornflower_pixels.png │ ├── cornflower_plain.png │ ├── cornflower_sequins.png │ ├── cornflower_stripes.png │ ├── cornflower_vortex.png │ ├── discrete_honeycomb.png │ ├── discrete_sequins.png │ ├── discrete_stripes.png │ ├── discrete_triangles.png │ ├── electric_honeycomb.png │ ├── electric_sequins.png │ ├── electric_stripes.png │ ├── electric_triangles.png │ ├── fuchsia_honeycomb.png │ ├── fuchsia_triangles.png │ ├── neon_berry_chevs.png │ ├── neon_berry_curves.png │ ├── neon_berry_fiber.png │ ├── neon_berry_noods.png │ ├── neon_berry_plates.png │ ├── neon_cargo_chevs.png │ ├── neon_cargo_curves.png │ ├── neon_cargo_fiber.png │ ├── neon_cargo_noods.png │ ├── neon_cargo_plates.png │ ├── neon_coral_chevs.png │ ├── neon_coral_curves.png │ ├── neon_coral_fiber.png │ ├── neon_coral_noods.png │ ├── neon_coral_plates.png │ ├── neon_cyber_chevs.png │ ├── neon_cyber_curves.png │ ├── neon_cyber_fiber.png │ ├── neon_cyber_noods.png │ ├── neon_cyber_plates.png │ ├── neon_electric_dan.png │ ├── neon_electric_fast.png │ ├── neon_electric_fwd.png │ ├── neon_electric_time.png │ ├── neon_kale_curves.png │ ├── neon_kale_plates.png │ ├── neon_killabee_dan.png │ ├── neon_killabee_fast.png │ ├── neon_killabee_fwd.png │ ├── neon_killabee_time.png │ ├── neon_koolaid_chevs.png │ ├── neon_koolaid_dan.png │ ├── neon_koolaid_fast.png │ ├── neon_koolaid_fiber.png │ ├── neon_koolaid_fwd.png │ ├── neon_koolaid_noods.png │ ├── neon_koolaid_time.png │ ├── neon_lasertag_dan.png │ ├── neon_lasertag_fast.png │ ├── neon_lasertag_fwd.png │ ├── neon_lasertag_time.png │ ├── neon_lime_curves.png │ ├── neon_lime_plates.png │ ├── neon_pizza_chevs.png │ ├── neon_pizza_curves.png │ ├── neon_pizza_fiber.png │ ├── neon_pizza_noods.png │ ├── neon_pizza_plates.png │ ├── neon_skyline_chevs.png │ ├── neon_skyline_dan.png │ ├── neon_skyline_fast.png │ ├── neon_skyline_fiber.png │ ├── neon_skyline_fwd.png │ ├── neon_skyline_noods.png │ ├── neon_skyline_time.png │ ├── neon_storm_chevs.png │ ├── neon_storm_curves.png │ ├── neon_storm_fiber.png │ ├── neon_storm_noods.png │ ├── neon_storm_plates.png │ ├── neon_tang_06_dan.png │ ├── neon_tang_curves.png │ ├── neon_tang_plates.png │ ├── neon_tangerine_dan.png │ ├── neon_tangerine_fwd.png │ ├── neon_tuxedo_chevs.png │ ├── neon_tuxedo_curves.png │ ├── neon_tuxedo_fast.png │ ├── neon_tuxedo_fiber.png │ ├── neon_tuxedo_noods.png │ ├── neon_tuxedo_plates.png │ ├── neon_tuxedo_time.png │ ├── orchid_honeycomb.png │ ├── orchid_triangles.png │ ├── violet_honeycomb.png │ ├── violet_triangles.png │ ├── cornflower_honeycomb.png │ ├── cornflower_triangles.png │ ├── neon_california_dan.png │ ├── neon_california_fast.png │ ├── neon_california_fwd.png │ ├── neon_california_time.png │ ├── neon_electric_chevs.png │ ├── neon_electric_curves.png │ ├── neon_electric_fiber.png │ ├── neon_electric_noods.png │ ├── neon_electric_plates.png │ ├── neon_killabee_chevs.png │ ├── neon_killabee_curves.png │ ├── neon_killabee_fiber.png │ ├── neon_killabee_noods.png │ ├── neon_killabee_plates.png │ ├── neon_koolaid_curves.png │ ├── neon_koolaid_plates.png │ ├── neon_lasertag_chevs.png │ ├── neon_lasertag_curves.png │ ├── neon_lasertag_fiber.png │ ├── neon_lasertag_noods.png │ ├── neon_lasertag_plates.png │ ├── neon_skyline_curves.png │ ├── neon_skyline_plates.png │ ├── neon_tangerine_chevs.png │ ├── neon_tangerine_fast.png │ ├── neon_tangerine_fiber.png │ ├── neon_tangerine_noods.png │ ├── neon_tangerine_time.png │ ├── neon_california_chevs.png │ ├── neon_california_curves.png │ ├── neon_california_fiber.png │ ├── neon_california_noods.png │ ├── neon_california_plates.png │ ├── neon_tangerine_curves.png │ └── neon_tangerine_plates.png ├── MS Health API Getting Started.pdf ├── MicrosoftBandExperienceDesignGuidelines.pdf ├── MicrosoftBandExperienceDesignGuidelines2.pdf └── Microsoft Band SDK and Samples for Android.zip ├── SCREENSHOTS ├── Original │ ├── drawer.jpg │ ├── theme.jpg │ ├── extras1.jpg │ ├── extras2.jpg │ ├── sensor1.jpg │ ├── sensor2.jpg │ └── sensor3.jpg └── Play Store │ ├── drawer.jpg │ ├── extras1.jpg │ ├── extras2.jpg │ ├── sensor1.jpg │ ├── sensor2.jpg │ ├── sensor3.jpg │ └── theme.jpg ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── settings.gradle ├── .travis.yml ├── CompanionforBand.iml └── gradlew.bat /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | google-services.json 3 | ignore.xml -------------------------------------------------------------------------------- /app/ignore.xml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/ignore.xml.enc -------------------------------------------------------------------------------- /app/libs/arity-2.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/libs/arity-2.1.6.jar -------------------------------------------------------------------------------- /SDK/Microsoft Band SDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/Microsoft Band SDK.pdf -------------------------------------------------------------------------------- /app/google-services.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/google-services.json.enc -------------------------------------------------------------------------------- /SCREENSHOTS/Original/drawer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SCREENSHOTS/Original/drawer.jpg -------------------------------------------------------------------------------- /SCREENSHOTS/Original/theme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SCREENSHOTS/Original/theme.jpg -------------------------------------------------------------------------------- /SCREENSHOTS/Original/extras1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SCREENSHOTS/Original/extras1.jpg -------------------------------------------------------------------------------- /SCREENSHOTS/Original/extras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SCREENSHOTS/Original/extras2.jpg -------------------------------------------------------------------------------- /SCREENSHOTS/Original/sensor1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SCREENSHOTS/Original/sensor1.jpg -------------------------------------------------------------------------------- /SCREENSHOTS/Original/sensor2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SCREENSHOTS/Original/sensor2.jpg -------------------------------------------------------------------------------- /SCREENSHOTS/Original/sensor3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SCREENSHOTS/Original/sensor3.jpg -------------------------------------------------------------------------------- /SCREENSHOTS/Play Store/drawer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SCREENSHOTS/Play Store/drawer.jpg -------------------------------------------------------------------------------- /SCREENSHOTS/Play Store/extras1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SCREENSHOTS/Play Store/extras1.jpg -------------------------------------------------------------------------------- /SCREENSHOTS/Play Store/extras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SCREENSHOTS/Play Store/extras2.jpg -------------------------------------------------------------------------------- /SCREENSHOTS/Play Store/sensor1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SCREENSHOTS/Play Store/sensor1.jpg -------------------------------------------------------------------------------- /SCREENSHOTS/Play Store/sensor2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SCREENSHOTS/Play Store/sensor2.jpg -------------------------------------------------------------------------------- /SCREENSHOTS/Play Store/sensor3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SCREENSHOTS/Play Store/sensor3.jpg -------------------------------------------------------------------------------- /SCREENSHOTS/Play Store/theme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SCREENSHOTS/Play Store/theme.jpg -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_dj.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/coral_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/coral_mesh.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cyber_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cyber_mesh.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/flame_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/flame_mesh.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/joule_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/joule_mesh.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/lime_angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/lime_angle.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/lime_folds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/lime_folds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/lime_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/lime_mesh.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/lime_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/lime_plain.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_berry.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cargo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cargo.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_coral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_coral.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cyber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cyber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_kale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_kale.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lime.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_pizza.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_storm.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tang.png -------------------------------------------------------------------------------- /SDK/MS Health API Getting Started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/MS Health API Getting Started.pdf -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/coral_angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/coral_angle.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/coral_blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/coral_blinds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/coral_folds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/coral_folds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/coral_petals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/coral_petals.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/coral_pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/coral_pixels.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/coral_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/coral_plain.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/coral_sequins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/coral_sequins.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/coral_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/coral_stripes.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/coral_vortex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/coral_vortex.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cyber_angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cyber_angle.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cyber_blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cyber_blinds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cyber_folds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cyber_folds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cyber_petals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cyber_petals.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cyber_pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cyber_pixels.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cyber_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cyber_plain.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cyber_sequins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cyber_sequins.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cyber_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cyber_stripes.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cyber_vortex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cyber_vortex.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/discrete_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/discrete_mesh.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/electric_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/electric_mesh.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/flame_angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/flame_angle.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/flame_blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/flame_blinds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/flame_folds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/flame_folds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/flame_petals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/flame_petals.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/flame_pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/flame_pixels.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/flame_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/flame_plain.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/flame_sequins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/flame_sequins.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/flame_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/flame_stripes.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/flame_vortex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/flame_vortex.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/fuchsia_angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/fuchsia_angle.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/fuchsia_folds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/fuchsia_folds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/fuchsia_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/fuchsia_mesh.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/fuchsia_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/fuchsia_plain.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/joule_angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/joule_angle.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/joule_blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/joule_blinds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/joule_folds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/joule_folds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/joule_petals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/joule_petals.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/joule_pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/joule_pixels.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/joule_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/joule_plain.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/joule_sequins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/joule_sequins.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/joule_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/joule_stripes.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/joule_vortex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/joule_vortex.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/lime_blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/lime_blinds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/lime_petals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/lime_petals.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/lime_pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/lime_pixels.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/lime_sequins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/lime_sequins.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/lime_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/lime_stripes.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/lime_vortex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/lime_vortex.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_dj_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_dj_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_dj_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_dj_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_dj_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_dj_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_dj_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_dj_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_dj_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_dj_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_dj_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_dj_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_dj_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_dj_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_electric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_electric.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_kale_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_kale_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_kale_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_kale_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_killabee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_killabee.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_koolaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_koolaid.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lasertag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lasertag.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lime_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lime_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lime_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lime_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_skyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_skyline.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tang_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tang_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tang_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tang_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tuxedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tuxedo.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/orchid_angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/orchid_angle.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/orchid_blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/orchid_blinds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/orchid_folds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/orchid_folds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/orchid_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/orchid_mesh.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/orchid_petals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/orchid_petals.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/orchid_pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/orchid_pixels.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/orchid_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/orchid_plain.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/orchid_vortex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/orchid_vortex.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/violet_angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/violet_angle.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/violet_blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/violet_blinds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/violet_folds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/violet_folds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/violet_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/violet_mesh.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/violet_petals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/violet_petals.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/violet_pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/violet_pixels.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/violet_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/violet_plain.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/violet_vortex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/violet_vortex.png -------------------------------------------------------------------------------- /app/libs/microsoft-band-1.3.20307.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/libs/microsoft-band-1.3.20307.2.jar -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/coral_honeycomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/coral_honeycomb.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/coral_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/coral_triangles.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cornflower_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cornflower_mesh.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cyber_honeycomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cyber_honeycomb.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cyber_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cyber_triangles.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/discrete_angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/discrete_angle.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/discrete_blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/discrete_blinds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/discrete_folds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/discrete_folds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/discrete_petals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/discrete_petals.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/discrete_pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/discrete_pixels.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/discrete_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/discrete_plain.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/discrete_vortex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/discrete_vortex.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/electric_angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/electric_angle.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/electric_blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/electric_blinds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/electric_folds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/electric_folds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/electric_petals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/electric_petals.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/electric_pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/electric_pixels.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/electric_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/electric_plain.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/electric_vortex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/electric_vortex.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/flame_honeycomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/flame_honeycomb.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/flame_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/flame_triangles.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/fuchsia_blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/fuchsia_blinds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/fuchsia_petals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/fuchsia_petals.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/fuchsia_pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/fuchsia_pixels.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/fuchsia_sequins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/fuchsia_sequins.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/fuchsia_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/fuchsia_stripes.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/fuchsia_vortex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/fuchsia_vortex.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/joule_honeycomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/joule_honeycomb.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/joule_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/joule_triangles.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/lime_honeycomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/lime_honeycomb.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/lime_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/lime_triangles.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_berry_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_berry_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_berry_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_berry_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_berry_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_berry_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_berry_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_berry_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_california.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_california.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cargo_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cargo_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cargo_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cargo_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cargo_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cargo_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cargo_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cargo_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_coral_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_coral_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_coral_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_coral_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_coral_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_coral_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_coral_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_coral_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cyber_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cyber_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cyber_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cyber_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cyber_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cyber_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cyber_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cyber_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_dj_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_dj_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_dj_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_dj_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_kale_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_kale_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_kale_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_kale_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_kale_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_kale_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_kale_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_kale_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_kale_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_kale_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lime_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lime_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lime_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lime_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lime_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lime_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lime_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lime_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lime_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lime_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_pizza_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_pizza_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_pizza_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_pizza_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_pizza_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_pizza_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_pizza_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_pizza_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_storm_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_storm_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_storm_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_storm_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_storm_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_storm_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_storm_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_storm_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tang_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tang_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tang_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tang_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tang_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tang_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tang_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tang_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tang_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tang_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tangerine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tangerine.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tuxedo_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tuxedo_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tuxedo_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tuxedo_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/orchid_sequins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/orchid_sequins.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/orchid_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/orchid_stripes.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/violet_sequins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/violet_sequins.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/violet_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/violet_stripes.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable/band.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable/band.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cornflower_angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cornflower_angle.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cornflower_blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cornflower_blinds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cornflower_folds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cornflower_folds.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cornflower_petals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cornflower_petals.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cornflower_pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cornflower_pixels.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cornflower_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cornflower_plain.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cornflower_sequins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cornflower_sequins.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cornflower_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cornflower_stripes.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cornflower_vortex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cornflower_vortex.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/discrete_honeycomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/discrete_honeycomb.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/discrete_sequins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/discrete_sequins.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/discrete_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/discrete_stripes.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/discrete_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/discrete_triangles.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/electric_honeycomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/electric_honeycomb.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/electric_sequins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/electric_sequins.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/electric_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/electric_stripes.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/electric_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/electric_triangles.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/fuchsia_honeycomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/fuchsia_honeycomb.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/fuchsia_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/fuchsia_triangles.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_berry_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_berry_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_berry_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_berry_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_berry_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_berry_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_berry_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_berry_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_berry_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_berry_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cargo_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cargo_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cargo_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cargo_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cargo_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cargo_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cargo_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cargo_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cargo_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cargo_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_coral_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_coral_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_coral_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_coral_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_coral_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_coral_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_coral_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_coral_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_coral_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_coral_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cyber_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cyber_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cyber_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cyber_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cyber_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cyber_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cyber_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cyber_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_cyber_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_cyber_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_electric_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_electric_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_electric_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_electric_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_electric_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_electric_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_electric_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_electric_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_kale_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_kale_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_kale_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_kale_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_killabee_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_killabee_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_killabee_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_killabee_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_killabee_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_killabee_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_killabee_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_killabee_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_koolaid_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_koolaid_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_koolaid_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_koolaid_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_koolaid_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_koolaid_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_koolaid_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_koolaid_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_koolaid_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_koolaid_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_koolaid_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_koolaid_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_koolaid_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_koolaid_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lasertag_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lasertag_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lasertag_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lasertag_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lasertag_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lasertag_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lasertag_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lasertag_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lime_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lime_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lime_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lime_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_pizza_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_pizza_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_pizza_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_pizza_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_pizza_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_pizza_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_pizza_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_pizza_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_pizza_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_pizza_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_skyline_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_skyline_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_skyline_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_skyline_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_skyline_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_skyline_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_skyline_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_skyline_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_skyline_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_skyline_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_skyline_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_skyline_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_skyline_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_skyline_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_storm_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_storm_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_storm_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_storm_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_storm_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_storm_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_storm_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_storm_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_storm_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_storm_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tang_06_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tang_06_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tang_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tang_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tang_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tang_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tangerine_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tangerine_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tangerine_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tangerine_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tuxedo_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tuxedo_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tuxedo_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tuxedo_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tuxedo_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tuxedo_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tuxedo_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tuxedo_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tuxedo_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tuxedo_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tuxedo_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tuxedo_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tuxedo_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tuxedo_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/orchid_honeycomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/orchid_honeycomb.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/orchid_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/orchid_triangles.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/violet_honeycomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/violet_honeycomb.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/violet_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/violet_triangles.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable/pipboy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable/pipboy.jpg -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cornflower_honeycomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cornflower_honeycomb.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/cornflower_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/cornflower_triangles.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_california_dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_california_dan.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_california_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_california_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_california_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_california_fwd.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_california_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_california_time.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_electric_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_electric_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_electric_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_electric_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_electric_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_electric_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_electric_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_electric_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_electric_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_electric_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_killabee_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_killabee_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_killabee_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_killabee_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_killabee_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_killabee_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_killabee_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_killabee_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_killabee_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_killabee_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_koolaid_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_koolaid_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_koolaid_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_koolaid_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lasertag_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lasertag_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lasertag_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lasertag_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lasertag_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lasertag_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lasertag_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lasertag_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_lasertag_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_lasertag_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_skyline_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_skyline_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_skyline_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_skyline_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tangerine_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tangerine_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tangerine_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tangerine_fast.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tangerine_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tangerine_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tangerine_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tangerine_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tangerine_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tangerine_time.png -------------------------------------------------------------------------------- /SDK/MicrosoftBandExperienceDesignGuidelines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/MicrosoftBandExperienceDesignGuidelines.pdf -------------------------------------------------------------------------------- /SDK/MicrosoftBandExperienceDesignGuidelines2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/MicrosoftBandExperienceDesignGuidelines2.pdf -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_california_chevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_california_chevs.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_california_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_california_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_california_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_california_fiber.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_california_noods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_california_noods.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_california_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_california_plates.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tangerine_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tangerine_curves.png -------------------------------------------------------------------------------- /SDK/drawable-nodpi-v4/neon_tangerine_plates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/drawable-nodpi-v4/neon_tangerine_plates.png -------------------------------------------------------------------------------- /app/src/main/res-main/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-main/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res-main/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-main/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res-screen/raw/camera_tile_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/raw/camera_tile_large.png -------------------------------------------------------------------------------- /app/src/main/res-screen/raw/camera_tile_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/raw/camera_tile_small.png -------------------------------------------------------------------------------- /app/src/main/res-screen/raw/media_tile_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/raw/media_tile_large.png -------------------------------------------------------------------------------- /app/src/main/res-screen/raw/media_tile_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/raw/media_tile_small.png -------------------------------------------------------------------------------- /app/src/main/res-screen/raw/music_tile_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/raw/music_tile_large.png -------------------------------------------------------------------------------- /app/src/main/res-screen/raw/music_tile_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/raw/music_tile_small.png -------------------------------------------------------------------------------- /app/src/main/res-screen/raw/tile_icon_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/raw/tile_icon_large.png -------------------------------------------------------------------------------- /app/src/main/res-screen/raw/tile_icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/raw/tile_icon_small.png -------------------------------------------------------------------------------- /SDK/Microsoft Band SDK and Samples for Android.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/SDK/Microsoft Band SDK and Samples for Android.zip -------------------------------------------------------------------------------- /app/src/main/res-main/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-main/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res-main/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-main/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res-screen/raw/barcode_tile_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/raw/barcode_tile_large.png -------------------------------------------------------------------------------- /app/src/main/res-screen/raw/barcode_tile_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/raw/barcode_tile_small.png -------------------------------------------------------------------------------- /app/src/main/res-main/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-main/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res-screen/raw/calculator_tile_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/raw/calculator_tile_large.png -------------------------------------------------------------------------------- /app/src/main/res-screen/raw/calculator_tile_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/raw/calculator_tile_small.png -------------------------------------------------------------------------------- /app/src/main/res-screen/raw/flashlight_tile_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/raw/flashlight_tile_large.png -------------------------------------------------------------------------------- /app/src/main/res-screen/raw/flashlight_tile_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/raw/flashlight_tile_small.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-hdpi/ic_flash_on_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-hdpi/ic_flash_on_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-mdpi/ic_flash_on_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-mdpi/ic_flash_on_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-hdpi/ic_flash_auto_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-hdpi/ic_flash_auto_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-hdpi/ic_flash_off_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-hdpi/ic_flash_off_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-hdpi/ic_visibility_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-hdpi/ic_visibility_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-mdpi/ic_flash_auto_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-mdpi/ic_flash_auto_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-mdpi/ic_flash_off_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-mdpi/ic_flash_off_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-mdpi/ic_visibility_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-mdpi/ic_visibility_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xhdpi/ic_flash_off_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xhdpi/ic_flash_off_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xhdpi/ic_flash_on_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xhdpi/ic_flash_on_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xxhdpi/ic_flash_on_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xxhdpi/ic_flash_on_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-hdpi/ic_camera_front_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-hdpi/ic_camera_front_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-hdpi/ic_camera_rear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-hdpi/ic_camera_rear_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-mdpi/ic_camera_front_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-mdpi/ic_camera_front_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-mdpi/ic_camera_rear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-mdpi/ic_camera_rear_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xhdpi/ic_camera_front_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xhdpi/ic_camera_front_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xhdpi/ic_camera_rear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xhdpi/ic_camera_rear_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xhdpi/ic_flash_auto_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xhdpi/ic_flash_auto_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xhdpi/ic_visibility_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xhdpi/ic_visibility_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xxhdpi/ic_camera_rear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xxhdpi/ic_camera_rear_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xxhdpi/ic_flash_auto_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xxhdpi/ic_flash_auto_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xxhdpi/ic_flash_off_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xxhdpi/ic_flash_off_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xxhdpi/ic_visibility_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xxhdpi/ic_visibility_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xxxhdpi/ic_flash_auto_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xxxhdpi/ic_flash_auto_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xxxhdpi/ic_flash_off_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xxxhdpi/ic_flash_off_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xxxhdpi/ic_flash_on_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xxxhdpi/ic_flash_on_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xxxhdpi/ic_visibility_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xxxhdpi/ic_visibility_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-hdpi/ic_visibility_off_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-hdpi/ic_visibility_off_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-mdpi/ic_visibility_off_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-mdpi/ic_visibility_off_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xhdpi/ic_visibility_off_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xhdpi/ic_visibility_off_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xxhdpi/ic_camera_front_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xxhdpi/ic_camera_front_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xxxhdpi/ic_camera_front_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xxxhdpi/ic_camera_front_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xxxhdpi/ic_camera_rear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xxxhdpi/ic_camera_rear_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xxhdpi/ic_visibility_off_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xxhdpi/ic_visibility_off_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res-screen/drawable-xxxhdpi/ic_visibility_off_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya321/Companion-for-Band/HEAD/app/src/main/res-screen/drawable-xxxhdpi/ic_visibility_off_white_48dp.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | 15 | # Gradle files 16 | .gradle/ 17 | build/ 18 | 19 | # Local configuration file (sdk path, etc) 20 | local.properties 21 | 22 | # Proguard folder generated by Eclipse 23 | proguard/ 24 | 25 | # Log Files 26 | *.log 27 | 28 | # Android Studio Navigation editor temp files 29 | .navigation/ 30 | 31 | # Android Studio captures folder 32 | captures/ 33 | 34 | .idea/ 35 | *.DS_Store 36 | 37 | *.iml 38 | gradle.properties -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/adithya/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | include ':app' 20 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: android 2 | jdk: 3 | - oraclejdk8 4 | sudo: required 5 | android: 6 | components: 7 | - platform-tools 8 | - tools 9 | - build-tools-25.0.2 10 | - android-25 11 | - extra-android-support 12 | - extra-google-google_play_services 13 | - extra-android-m2repository 14 | - extra-google-m2repository 15 | licenses: 16 | - .+ 17 | before_install: 18 | - openssl aes-256-cbc -K $encrypted_9492eac0682c_key -iv $encrypted_9492eac0682c_iv 19 | -in app/ignore.xml.enc -out app/src/main/res-main/values/ignore.xml -d 20 | - openssl aes-256-cbc -K $encrypted_83fcb329e442_key -iv $encrypted_83fcb329e442_iv 21 | -in app/google-services.json.enc -out app/google-services.json -d 22 | - chmod +x gradlew 23 | script: 24 | - ./gradlew build jacocoTestReport 25 | after_success: 26 | - bash <(curl -s https://codecov.io/bash) 27 | notifications: 28 | email: false 29 | -------------------------------------------------------------------------------- /CompanionforBand.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Companion for Band 3 | # Copyright (C) 2016 Adithya J 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see 17 | # 18 | 19 | #Tue Dec 13 23:25:45 IST 2016 20 | distributionBase=GRADLE_USER_HOME 21 | distributionPath=wrapper/dists 22 | zipStoreBase=GRADLE_USER_HOME 23 | zipStorePath=wrapper/dists 24 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.2-all.zip 25 | -------------------------------------------------------------------------------- /app/src/test/java/com/pimp/companionforband/UnitTest.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband; 20 | 21 | import org.junit.Test; 22 | 23 | import static org.junit.Assert.assertTrue; 24 | 25 | public class UnitTest { 26 | 27 | @Test 28 | public void unitTest1() { 29 | assertTrue(1 + 1 == 2); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/src/main/res-screen/anim/slide_in_right.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 20 | 24 | -------------------------------------------------------------------------------- /app/src/main/res-screen/anim/slide_out_right.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 20 | 24 | -------------------------------------------------------------------------------- /app/src/main/res-screen/anim/fade_in.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 21 | 22 | 27 | -------------------------------------------------------------------------------- /app/src/main/res-main/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 20 | 23 | 64dp 24 | 25 | -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/dialog_donate.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 23 | 24 | 28 | -------------------------------------------------------------------------------- /app/src/main/res-main/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 20 | 21 | 16dp 22 | 16dp 23 | 16dp 24 | 8dp 25 | 26 | 20dp 27 | 22dp 28 | 29 | -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/fragment_main.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 26 | 27 | -------------------------------------------------------------------------------- /app/src/main/res-screen/menu/menu_sensor.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 23 | 28 | 29 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/activities/cloud/CloudConstants.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.activities.cloud; 20 | 21 | public class CloudConstants { 22 | public static String BASE_URL = "https://api.microsofthealth.net"; 23 | 24 | public static String Activities_URL = "/v1/me/Activities"; 25 | public static String Devices_URL = "/v1/me/Devices"; 26 | public static String Profile_URL = "/v1/me/Profile"; 27 | public static String Summaries_URL = "/v1/me/Summaries/"; 28 | } 29 | -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/activity_webview.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 24 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/activity_changelog.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/utils/UIUtils.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.utils; 20 | 21 | public class UIUtils { 22 | public static String splitCamelCase(String s) { 23 | String str = s.replaceAll( 24 | String.format("%s|%s|%s", 25 | "(?<=[A-Z])(?=[A-Z][a-z])", 26 | "(?<=[^A-Z])(?=[A-Z])", 27 | "(?<=[A-Za-z])(?=[^A-Za-z])" 28 | ), " "); 29 | return str.substring(0, 1).toUpperCase() + str.substring(1); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/src/main/res-main/values/colors.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 20 | #3F51B5 21 | #303F9F 22 | #FF4081 23 | #212121 24 | 25 | #F44336 26 | #2196F3 27 | #4CAF50 28 | 29 | @android:color/black 30 | 31 | -------------------------------------------------------------------------------- /app/src/main/res-screen/anim/fade_back.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 20 | 28 | 32 | -------------------------------------------------------------------------------- /app/src/main/res-screen/anim/fade_forward.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 20 | 28 | 32 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/activities/support/GittyActivity.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.activities.support; 20 | 21 | import android.os.Bundle; 22 | import android.support.annotation.Nullable; 23 | 24 | import com.github.paolorotolo.gitty_reporter.GittyReporter; 25 | import com.pimp.companionforband.R; 26 | 27 | public class GittyActivity extends GittyReporter { 28 | @Override 29 | public void init(@Nullable Bundle savedInstanceState) { 30 | setTargetRepository("adithya321", "Companion-for-Band"); 31 | setGuestOAuth2Token(getString(R.string.oauth_token)); 32 | canEditDebugInfo(true); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/activities_list_item.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 22 | 23 | 30 | -------------------------------------------------------------------------------- /app/src/main/res-main/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 20 | "登录背景" 21 | "通过进入软件设置窗口允许访问存储" 22 | "计步器" 23 | "无线接收器频率" 24 | "皮肤温度" 25 | "通知一色调" 26 | "通知二色调" 27 | "通知闹钟" 28 | "通知计时器" 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/AnalyticsApplication.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband; 20 | 21 | import android.app.Application; 22 | 23 | import com.google.android.gms.analytics.GoogleAnalytics; 24 | import com.google.android.gms.analytics.Tracker; 25 | 26 | public class AnalyticsApplication extends Application { 27 | private Tracker mTracker; 28 | 29 | synchronized public Tracker getDefaultTracker() { 30 | if (mTracker == null) { 31 | GoogleAnalytics analytics = GoogleAnalytics.getInstance(this); 32 | // To enable debug logging use: adb shell setprop log.tag.GAv4 DEBUG 33 | mTracker = analytics.newTracker(R.xml.global_tracker); 34 | } 35 | return mTracker; 36 | } 37 | } -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/summaries_item_layout.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 23 | 24 | 28 | 29 | 33 | 34 | 38 | -------------------------------------------------------------------------------- /app/src/main/res-main/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 20 | 21 | 26 | 27 | 34 | -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/fragment_activities.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 24 | 25 | 31 | 32 | 39 | -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/fragment_summaries.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 24 | 25 | 31 | 32 | 39 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/activities/support/ChangelogActivity.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.activities.support; 20 | 21 | import android.os.Bundle; 22 | import android.support.annotation.Nullable; 23 | import android.support.v7.app.AppCompatActivity; 24 | import android.view.MenuItem; 25 | 26 | import com.pimp.companionforband.R; 27 | 28 | public class ChangelogActivity extends AppCompatActivity { 29 | @Override 30 | protected void onCreate(@Nullable Bundle savedInstanceState) { 31 | super.onCreate(savedInstanceState); 32 | setContentView(R.layout.activity_changelog); 33 | setTitle("Changelog"); 34 | if (getSupportActionBar() != null) 35 | getSupportActionBar().setDisplayHomeAsUpEnabled(true); 36 | } 37 | 38 | @Override 39 | public boolean onOptionsItemSelected(MenuItem item) { 40 | if (item.getItemId() == android.R.id.home) { 41 | onBackPressed(); 42 | } 43 | 44 | return super.onOptionsItemSelected(item); 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/utils/iab/IabException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.utils.iab; 20 | 21 | /** 22 | * Exception thrown when something went wrong with in-app billing. 23 | * An IabException has an associated IabResult (an error). 24 | * To get the IAB result that caused this exception to be thrown, 25 | * call {@link #getResult()}. 26 | */ 27 | public class IabException extends Exception { 28 | IabResult mResult; 29 | 30 | public IabException(IabResult r) { 31 | this(r, null); 32 | } 33 | 34 | public IabException(int response, String message) { 35 | this(new IabResult(response, message)); 36 | } 37 | 38 | public IabException(IabResult r, Exception cause) { 39 | super(r.getMessage(), cause); 40 | mResult = r; 41 | } 42 | 43 | public IabException(int response, String message, Exception cause) { 44 | this(new IabResult(response, message), cause); 45 | } 46 | 47 | /** 48 | * Returns the IAB result (error) that this exception signals. 49 | */ 50 | public IabResult getResult() { 51 | return mResult; 52 | } 53 | } -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/activities/cloud/JsonAccessTokenExtractor.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.activities.cloud; 20 | 21 | import java.util.regex.Matcher; 22 | import java.util.regex.Pattern; 23 | 24 | public class JsonAccessTokenExtractor { 25 | private Pattern accessTokenPattern = Pattern.compile("\"access_token\":\\s*\"(\\S*?)\""); 26 | private Pattern refreshTokenPattern = Pattern.compile("\"refresh_token\":\\s*\"(\\S*?)\""); 27 | 28 | public String extractAccessToken(String response) { 29 | if (response != null && !response.trim().equals("")) { 30 | Matcher matcher = accessTokenPattern.matcher(response); 31 | if (matcher.find()) { 32 | return matcher.group(1); 33 | } 34 | } 35 | return null; 36 | } 37 | 38 | public String extractRefreshToken(String response) { 39 | if (response != null && !response.trim().equals("")) { 40 | Matcher matcher = refreshTokenPattern.matcher(response); 41 | if (matcher.find()) { 42 | return matcher.group(1); 43 | } 44 | } 45 | return null; 46 | } 47 | } -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/activity_camera.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 24 | 25 | 29 | 30 | 38 | 39 | 47 | -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/donate_row.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 24 | 25 | 32 | 33 | 40 | 41 | 49 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/fragments/sensors/ChartAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.fragments.sensors; 20 | 21 | import android.graphics.RectF; 22 | 23 | import com.robinhood.spark.SparkAdapter; 24 | 25 | public class ChartAdapter extends SparkAdapter { 26 | private final float[] yData; 27 | int i = 0; 28 | 29 | public ChartAdapter() { 30 | yData = new float[50]; 31 | } 32 | 33 | public void add(Float y) { 34 | yData[i] = y; 35 | i = (i < 49) ? i + 1 : 0; 36 | notifyDataSetChanged(); 37 | } 38 | 39 | @Override 40 | public int getCount() { 41 | return yData.length; 42 | } 43 | 44 | @Override 45 | public Object getItem(int index) { 46 | return yData[index]; 47 | } 48 | 49 | @Override 50 | public float getY(int index) { 51 | return yData[index]; 52 | } 53 | 54 | @Override 55 | public float getX(int index) { 56 | return super.getX(index); 57 | } 58 | 59 | @Override 60 | public RectF getDataBounds() { 61 | return super.getDataBounds(); 62 | } 63 | 64 | @Override 65 | public boolean hasBaseLine() { 66 | return false; 67 | } 68 | 69 | @Override 70 | public float getBaseLine() { 71 | return super.getBaseLine(); 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/sensor_cardview.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 24 | 25 | 28 | 29 | 37 | 38 | 46 | 47 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/utils/iab/IabResult.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.utils.iab; 20 | 21 | /** 22 | * Represents the result of an in-app billing operation. 23 | * A result is composed of a response code (an integer) and possibly a 24 | * message (String). You can get those by calling 25 | * {@link #getResponse} and {@link #getMessage()}, respectively. You 26 | * can also inquire whether a result is a success or a failure by 27 | * calling {@link #isSuccess()} and {@link #isFailure()}. 28 | */ 29 | public class IabResult { 30 | int mResponse; 31 | String mMessage; 32 | 33 | public IabResult(int response, String message) { 34 | mResponse = response; 35 | if (message == null || message.trim().length() == 0) { 36 | mMessage = IabHelper.getResponseDesc(response); 37 | } else { 38 | mMessage = message + " (response: " + IabHelper.getResponseDesc(response) + ")"; 39 | } 40 | } 41 | 42 | public int getResponse() { 43 | return mResponse; 44 | } 45 | 46 | public String getMessage() { 47 | return mMessage; 48 | } 49 | 50 | public boolean isSuccess() { 51 | return mResponse == IabHelper.BILLING_RESPONSE_RESULT_OK; 52 | } 53 | 54 | public boolean isFailure() { 55 | return !isSuccess(); 56 | } 57 | 58 | public String toString() { 59 | return "IabResult: " + getMessage(); 60 | } 61 | } 62 | 63 | -------------------------------------------------------------------------------- /app/src/main/res-main/values-de/strings.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 20 | "Anmeldehintergrund" 21 | "Erteilen Sie die Berechtigung für die Speicherung wenn sie zu Einstellungen gehen" 22 | "Schrittzähler" 23 | "RR Abstände" 24 | "Hauttemperatur" 25 | "UV" 26 | "Basis" 27 | "Startstreifen Schaltfläche" 28 | "Hervorgehoben" 29 | "Überschrift" 30 | "Dunkelheit" 31 | "Benachrichtigungston 1" 32 | "Benachrichtigungston 2" 33 | "Benachrichtigungs Alarm" 34 | "Benachrichtigungs Timer" 35 | "Ein Ton hoch" 36 | "Zwei Ton hoch" 37 | "Drei Ton hoch" 38 | "Aufstocken" 39 | "Vertieft" 40 | "Art" 41 | "Seite" 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 26 | 27 | 33 | 34 | 41 | 42 | 46 | 47 | 48 | 53 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/activities/main/SectionsPagerAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.activities.main; 20 | 21 | import android.support.v4.app.Fragment; 22 | import android.support.v4.app.FragmentManager; 23 | import android.support.v4.app.FragmentPagerAdapter; 24 | 25 | import com.pimp.companionforband.R; 26 | import com.pimp.companionforband.fragments.extras.ExtrasFragment; 27 | import com.pimp.companionforband.fragments.sensors.SensorsFragment; 28 | import com.pimp.companionforband.fragments.theme.ThemeFragment; 29 | 30 | public class SectionsPagerAdapter extends FragmentPagerAdapter { 31 | 32 | public SectionsPagerAdapter(FragmentManager fm) { 33 | super(fm); 34 | } 35 | 36 | @Override 37 | public Fragment getItem(int position) { 38 | switch (position) { 39 | case 0: 40 | return new ThemeFragment(); 41 | case 1: 42 | return new SensorsFragment(); 43 | case 2: 44 | return new ExtrasFragment(); 45 | default: 46 | return null; 47 | } 48 | } 49 | 50 | @Override 51 | public int getCount() { 52 | return 3; 53 | } 54 | 55 | @Override 56 | public CharSequence getPageTitle(int position) { 57 | switch (position) { 58 | case 0: 59 | return MainActivity.sContext.getString(R.string.theme); 60 | case 1: 61 | return MainActivity.sContext.getString(R.string.sensors); 62 | case 2: 63 | return MainActivity.sContext.getString(R.string.extras); 64 | } 65 | return null; 66 | } 67 | } -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/utils/band/subscription/HeartRateConsentTask.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.utils.band.subscription; 20 | 21 | import android.app.Activity; 22 | import android.os.AsyncTask; 23 | 24 | import com.microsoft.band.BandException; 25 | import com.microsoft.band.sensors.HeartRateConsentListener; 26 | import com.pimp.companionforband.R; 27 | import com.pimp.companionforband.activities.main.MainActivity; 28 | import com.pimp.companionforband.utils.band.BandUtils; 29 | 30 | import java.lang.ref.WeakReference; 31 | 32 | public class HeartRateConsentTask extends AsyncTask, Void, Void> { 33 | 34 | @Override 35 | protected Void doInBackground(WeakReference... params) { 36 | try { 37 | if (BandUtils.getConnectedBandClient()) { 38 | 39 | if (params[0].get() != null) { 40 | MainActivity.client.getSensorManager().requestHeartRateConsent(params[0].get(), new HeartRateConsentListener() { 41 | @Override 42 | public void userAccepted(boolean consentGiven) { 43 | new HeartRateSubscriptionTask().execute(); 44 | } 45 | }); 46 | } 47 | } else { 48 | MainActivity.appendToUI(MainActivity.sContext.getString(R.string.band_not_found), "Style.ALERT"); 49 | } 50 | } catch (BandException e) { 51 | BandUtils.handleBandException(e); 52 | } catch (Exception e) { 53 | MainActivity.appendToUI(e.getMessage(), "Style.ALERT"); 54 | } 55 | return null; 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/activity_cloud.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 26 | 27 | 33 | 34 | 42 | 43 | 47 | 48 | 49 | 54 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/utils/iab/IabBroadcastReceiver.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.utils.iab; 20 | 21 | import android.content.BroadcastReceiver; 22 | import android.content.Context; 23 | import android.content.Intent; 24 | 25 | /** 26 | * Receiver for the "com.android.vending.billing.PURCHASES_UPDATED" Action 27 | * from the Play Store. 28 | *

29 | *

It is possible that an in-app item may be acquired without the 30 | * application calling getBuyIntent(), for example if the item can be 31 | * redeemed from inside the Play Store using a promotional code. If this 32 | * application isn't running at the time, then when it is started a call 33 | * to getPurchases() will be sufficient notification. However, if the 34 | * application is already running in the background when the item is acquired, 35 | * a message to this BroadcastReceiver will indicate that the an item 36 | * has been acquired.

37 | */ 38 | public class IabBroadcastReceiver extends BroadcastReceiver { 39 | /** 40 | * The Intent action that this Receiver should filter for. 41 | */ 42 | public static final String ACTION = "com.android.vending.billing.PURCHASES_UPDATED"; 43 | private final IabBroadcastListener mListener; 44 | 45 | public IabBroadcastReceiver(IabBroadcastListener listener) { 46 | mListener = listener; 47 | } 48 | 49 | @Override 50 | public void onReceive(Context context, Intent intent) { 51 | if (mListener != null) { 52 | mListener.receivedBroadcast(); 53 | } 54 | } 55 | 56 | /** 57 | * Listener interface for received broadcast messages. 58 | */ 59 | public interface IabBroadcastListener { 60 | void receivedBroadcast(); 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/activities/cloud/CloudPagerAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.activities.cloud; 20 | 21 | import android.support.v4.app.Fragment; 22 | import android.support.v4.app.FragmentManager; 23 | import android.support.v4.app.FragmentPagerAdapter; 24 | 25 | import com.pimp.companionforband.R; 26 | import com.pimp.companionforband.activities.main.MainActivity; 27 | import com.pimp.companionforband.fragments.cloud.ActivitiesFragment; 28 | import com.pimp.companionforband.fragments.cloud.ProfileFragment; 29 | import com.pimp.companionforband.fragments.cloud.SummariesFragment; 30 | 31 | public class CloudPagerAdapter extends FragmentPagerAdapter { 32 | 33 | public CloudPagerAdapter(FragmentManager fm) { 34 | super(fm); 35 | } 36 | 37 | @Override 38 | public Fragment getItem(int position) { 39 | switch (position) { 40 | case 0: 41 | return new ProfileFragment(); 42 | case 1: 43 | return new ActivitiesFragment(); 44 | case 2: 45 | return new SummariesFragment(); 46 | default: 47 | return null; 48 | } 49 | } 50 | 51 | @Override 52 | public int getCount() { 53 | return 3; 54 | } 55 | 56 | @Override 57 | public CharSequence getPageTitle(int position) { 58 | switch (position) { 59 | case 0: 60 | return MainActivity.sContext.getString(R.string.cloud_profile); 61 | case 1: 62 | return MainActivity.sContext.getString(R.string.cloud_activites); 63 | case 2: 64 | return MainActivity.sContext.getString(R.string.cloud_summaries); 65 | } 66 | return null; 67 | } 68 | } -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/activities/main/DonateListAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.activities.main; 20 | 21 | import android.content.Context; 22 | import android.view.LayoutInflater; 23 | import android.view.View; 24 | import android.view.ViewGroup; 25 | import android.widget.BaseAdapter; 26 | import android.widget.TextView; 27 | 28 | import com.pimp.companionforband.R; 29 | 30 | public class DonateListAdapter extends BaseAdapter { 31 | String[] title, amount; 32 | Context context; 33 | private LayoutInflater inflater; 34 | 35 | public DonateListAdapter(MainActivity mainActivity, String[] name, String[] price) { 36 | title = name; 37 | amount = price; 38 | context = mainActivity; 39 | inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 40 | } 41 | 42 | @Override 43 | public int getCount() { 44 | return title.length; 45 | } 46 | 47 | @Override 48 | public Object getItem(int position) { 49 | return position; 50 | } 51 | 52 | @Override 53 | public long getItemId(int position) { 54 | return position; 55 | } 56 | 57 | @Override 58 | public View getView(final int position, View convertView, ViewGroup parent) { 59 | Holder holder = new Holder(); 60 | View rowView; 61 | rowView = inflater.inflate(R.layout.donate_row, null); 62 | holder.tv2 = (TextView) rowView.findViewById(R.id.text11); 63 | holder.tv2.setText(amount[position]); 64 | holder.tv1 = (TextView) rowView.findViewById(R.id.text12); 65 | holder.tv1.setText(title[position]); 66 | return rowView; 67 | } 68 | 69 | public class Holder { 70 | TextView tv1, tv2; 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/changelog_row.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 26 | 27 | 33 | 34 | 43 | 44 | 54 | 55 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/activities/main/ZoomOutPageTransformer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.activities.main; 20 | 21 | import android.support.v4.view.ViewPager; 22 | import android.view.View; 23 | 24 | public class ZoomOutPageTransformer implements ViewPager.PageTransformer { 25 | private static final float MIN_SCALE = 0.9f; 26 | private static final float MIN_ALPHA = 0.7f; 27 | 28 | public void transformPage(View view, float position) { 29 | int pageWidth = view.getWidth(); 30 | int pageHeight = view.getHeight(); 31 | 32 | if (position < -1) { // [-Infinity,-1) 33 | // This page is way off-screen to the left. 34 | view.setAlpha(0); 35 | 36 | } else if (position <= 1) { // [-1,1] 37 | // Modify the default slide transition to shrink the page as well 38 | float scaleFactor = Math.max(MIN_SCALE, 1 - Math.abs(position)); 39 | float vertMargin = pageHeight * (1 - scaleFactor) / 2; 40 | float horzMargin = pageWidth * (1 - scaleFactor) / 2; 41 | if (position < 0) { 42 | view.setTranslationX(horzMargin - vertMargin / 2); 43 | } else { 44 | view.setTranslationX(-horzMargin + vertMargin / 2); 45 | } 46 | 47 | // Scale the page down (between MIN_SCALE and 1) 48 | view.setScaleX(scaleFactor); 49 | view.setScaleY(scaleFactor); 50 | 51 | // Fade the page relative to its size. 52 | view.setAlpha(MIN_ALPHA + 53 | (scaleFactor - MIN_SCALE) / 54 | (1 - MIN_SCALE) * (1 - MIN_ALPHA)); 55 | 56 | } else { // (1,+Infinity] 57 | // This page is way off-screen to the right. 58 | view.setAlpha(0); 59 | } 60 | } 61 | } -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/changelog_header.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 29 | 30 | 43 | 44 | 57 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/utils/band/subscription/RRIntervalSubscriptionTask.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.utils.band.subscription; 20 | 21 | import android.os.AsyncTask; 22 | import android.widget.TextView; 23 | 24 | import com.microsoft.band.BandException; 25 | import com.microsoft.band.UserConsent; 26 | import com.pimp.companionforband.R; 27 | import com.pimp.companionforband.activities.main.MainActivity; 28 | import com.pimp.companionforband.fragments.sensors.SensorsFragment; 29 | import com.pimp.companionforband.utils.band.BandUtils; 30 | 31 | public class RRIntervalSubscriptionTask extends AsyncTask { 32 | @Override 33 | protected Void doInBackground(TextView... params) { 34 | try { 35 | if (BandUtils.getConnectedBandClient()) { 36 | if (MainActivity.band2) { 37 | if (MainActivity.sharedPreferences.getBoolean("RR Interval", true)) 38 | if (MainActivity.client.getSensorManager().getCurrentHeartRateConsent() 39 | == UserConsent.GRANTED) { 40 | MainActivity.client.getSensorManager() 41 | .registerRRIntervalEventListener(SensorsFragment.bandRRIntervalEventListener); 42 | } else { 43 | SensorsFragment.appendToUI(MainActivity.sContext 44 | .getString(R.string.heart_rate_consent) + "\n", 45 | params[0]); 46 | } 47 | } 48 | } else { 49 | MainActivity.appendToUI(MainActivity.sContext.getString(R.string.band_not_found), 50 | "Style.ALERT"); 51 | } 52 | } catch (BandException e) { 53 | BandUtils.handleBandException(e); 54 | } catch (Exception e) { 55 | MainActivity.appendToUI(e.getMessage(), "Style.ALERT"); 56 | } 57 | return null; 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/utils/iab/SkuDetails.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.utils.iab; 20 | 21 | import org.json.JSONException; 22 | import org.json.JSONObject; 23 | 24 | /** 25 | * Represents an in-app product's listing details. 26 | */ 27 | public class SkuDetails { 28 | private final String mItemType; 29 | private final String mSku; 30 | private final String mType; 31 | private final String mPrice; 32 | private final long mPriceAmountMicros; 33 | private final String mPriceCurrencyCode; 34 | private final String mTitle; 35 | private final String mDescription; 36 | private final String mJson; 37 | 38 | public SkuDetails(String jsonSkuDetails) throws JSONException { 39 | this(IabHelper.ITEM_TYPE_INAPP, jsonSkuDetails); 40 | } 41 | 42 | public SkuDetails(String itemType, String jsonSkuDetails) throws JSONException { 43 | mItemType = itemType; 44 | mJson = jsonSkuDetails; 45 | JSONObject o = new JSONObject(mJson); 46 | mSku = o.optString("productId"); 47 | mType = o.optString("type"); 48 | mPrice = o.optString("price"); 49 | mPriceAmountMicros = o.optLong("price_amount_micros"); 50 | mPriceCurrencyCode = o.optString("price_currency_code"); 51 | mTitle = o.optString("title"); 52 | mDescription = o.optString("description"); 53 | } 54 | 55 | public String getSku() { 56 | return mSku; 57 | } 58 | 59 | public String getType() { 60 | return mType; 61 | } 62 | 63 | public String getPrice() { 64 | return mPrice; 65 | } 66 | 67 | public long getPriceAmountMicros() { 68 | return mPriceAmountMicros; 69 | } 70 | 71 | public String getPriceCurrencyCode() { 72 | return mPriceCurrencyCode; 73 | } 74 | 75 | public String getTitle() { 76 | return mTitle; 77 | } 78 | 79 | public String getDescription() { 80 | return mDescription; 81 | } 82 | 83 | @Override 84 | public String toString() { 85 | return "SkuDetails:" + mJson; 86 | } 87 | } 88 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/utils/band/subscription/HeartRateSubscriptionTask.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.utils.band.subscription; 20 | 21 | import android.os.AsyncTask; 22 | import android.widget.TextView; 23 | 24 | import com.microsoft.band.BandException; 25 | import com.microsoft.band.UserConsent; 26 | import com.pimp.companionforband.R; 27 | import com.pimp.companionforband.activities.main.MainActivity; 28 | import com.pimp.companionforband.fragments.sensors.SensorsFragment; 29 | import com.pimp.companionforband.utils.band.BandUtils; 30 | 31 | public class HeartRateSubscriptionTask extends AsyncTask { 32 | @Override 33 | protected Void doInBackground(TextView... params) { 34 | try { 35 | if (BandUtils.getConnectedBandClient()) { 36 | if (MainActivity.sharedPreferences.getBoolean("Heart Rate", true)) 37 | if (MainActivity.client.getSensorManager().getCurrentHeartRateConsent() == UserConsent.GRANTED) { 38 | MainActivity.client.getSensorManager().registerHeartRateEventListener(SensorsFragment.bandHeartRateEventListener); 39 | } else { 40 | MainActivity.sActivity.runOnUiThread(new Runnable() { 41 | @SuppressWarnings("unchecked") 42 | @Override 43 | public void run() { 44 | new HeartRateConsentTask().execute(SensorsFragment.reference); 45 | } 46 | }); 47 | SensorsFragment.appendToUI(MainActivity.sContext.getString(R.string.heart_rate_consent) + "\n", params[0]); 48 | } 49 | } else { 50 | MainActivity.appendToUI(MainActivity.sContext.getString(R.string.band_not_found), "Style.ALERT"); 51 | } 52 | } catch (BandException e) { 53 | BandUtils.handleBandException(e); 54 | } catch (Exception e) { 55 | MainActivity.appendToUI(e.getMessage(), "Style.ALERT"); 56 | } 57 | return null; 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/utils/jsontocsv/writer/CSVWriter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.utils.jsontocsv.writer; 20 | 21 | import java.io.BufferedWriter; 22 | import java.io.FileNotFoundException; 23 | import java.io.FileWriter; 24 | import java.io.IOException; 25 | import java.util.ArrayList; 26 | import java.util.LinkedHashMap; 27 | import java.util.LinkedHashSet; 28 | import java.util.List; 29 | 30 | import autovalue.shaded.org.apache.commons.lang.StringUtils; 31 | 32 | public class CSVWriter { 33 | 34 | public void writeAsCSV(List> flatJson, String fileName) throws FileNotFoundException { 35 | LinkedHashSet headers = collectHeaders(flatJson); 36 | String output = StringUtils.join(headers.toArray(), ",") + "\n"; 37 | for (LinkedHashMap map : flatJson) { 38 | output = output + getCommaSeperatedRow(headers, map) + "\n"; 39 | } 40 | writeToFile(output, fileName); 41 | } 42 | 43 | private void writeToFile(String output, String fileName) throws FileNotFoundException { 44 | BufferedWriter writer = null; 45 | try { 46 | writer = new BufferedWriter(new FileWriter(fileName)); 47 | writer.write(output); 48 | } catch (IOException e) { 49 | e.printStackTrace(); 50 | } finally { 51 | close(writer); 52 | } 53 | } 54 | 55 | private void close(BufferedWriter writer) { 56 | try { 57 | if (writer != null) { 58 | writer.close(); 59 | } 60 | } catch (IOException e) { 61 | e.printStackTrace(); 62 | } 63 | } 64 | 65 | private String getCommaSeperatedRow(LinkedHashSet headers, LinkedHashMap map) { 66 | List items = new ArrayList<>(); 67 | for (String header : headers) { 68 | String value = map.get(header) == null ? "" : map.get(header).replace(",", ""); 69 | items.add(value); 70 | } 71 | return StringUtils.join(items.toArray(), ","); 72 | } 73 | 74 | private LinkedHashSet collectHeaders(List> flatJson) { 75 | LinkedHashSet headers = new LinkedHashSet<>(); 76 | for (LinkedHashMap map : flatJson) { 77 | headers.addAll(map.keySet()); 78 | } 79 | return headers; 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/utils/iab/Purchase.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.utils.iab; 20 | 21 | import org.json.JSONException; 22 | import org.json.JSONObject; 23 | 24 | /** 25 | * Represents an in-app billing purchase. 26 | */ 27 | public class Purchase { 28 | String mItemType; // ITEM_TYPE_INAPP or ITEM_TYPE_SUBS 29 | String mOrderId; 30 | String mPackageName; 31 | String mSku; 32 | long mPurchaseTime; 33 | int mPurchaseState; 34 | String mDeveloperPayload; 35 | String mToken; 36 | String mOriginalJson; 37 | String mSignature; 38 | boolean mIsAutoRenewing; 39 | 40 | public Purchase(String itemType, String jsonPurchaseInfo, String signature) throws JSONException { 41 | mItemType = itemType; 42 | mOriginalJson = jsonPurchaseInfo; 43 | JSONObject o = new JSONObject(mOriginalJson); 44 | mOrderId = o.optString("orderId"); 45 | mPackageName = o.optString("packageName"); 46 | mSku = o.optString("productId"); 47 | mPurchaseTime = o.optLong("purchaseTime"); 48 | mPurchaseState = o.optInt("purchaseState"); 49 | mDeveloperPayload = o.optString("developerPayload"); 50 | mToken = o.optString("token", o.optString("purchaseToken")); 51 | mIsAutoRenewing = o.optBoolean("autoRenewing"); 52 | mSignature = signature; 53 | } 54 | 55 | public String getItemType() { 56 | return mItemType; 57 | } 58 | 59 | public String getOrderId() { 60 | return mOrderId; 61 | } 62 | 63 | public String getPackageName() { 64 | return mPackageName; 65 | } 66 | 67 | public String getSku() { 68 | return mSku; 69 | } 70 | 71 | public long getPurchaseTime() { 72 | return mPurchaseTime; 73 | } 74 | 75 | public int getPurchaseState() { 76 | return mPurchaseState; 77 | } 78 | 79 | public String getDeveloperPayload() { 80 | return mDeveloperPayload; 81 | } 82 | 83 | public String getToken() { 84 | return mToken; 85 | } 86 | 87 | public String getOriginalJson() { 88 | return mOriginalJson; 89 | } 90 | 91 | public String getSignature() { 92 | return mSignature; 93 | } 94 | 95 | public boolean isAutoRenewing() { 96 | return mIsAutoRenewing; 97 | } 98 | 99 | @Override 100 | public String toString() { 101 | return "PurchaseInfo(type:" + mItemType + "):" + mOriginalJson; 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /app/src/main/res-screen/layout/fragment_profile.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 22 | 23 | 28 | 29 | 33 | 34 | 38 | 39 | 45 | 46 | 52 | 53 | 54 | 55 | 59 | 60 | 64 | 65 | 71 | 72 | 78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /app/src/main/java/com/pimp/companionforband/utils/band/subscription/Band2SubscriptionTask.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Companion for Band 3 | * Copyright (C) 2016 Adithya J 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see 17 | */ 18 | 19 | package com.pimp.companionforband.utils.band.subscription; 20 | 21 | import android.os.AsyncTask; 22 | 23 | import com.microsoft.band.BandException; 24 | import com.microsoft.band.sensors.GsrSampleRate; 25 | import com.pimp.companionforband.R; 26 | import com.pimp.companionforband.activities.main.MainActivity; 27 | import com.pimp.companionforband.fragments.sensors.SensorsFragment; 28 | import com.pimp.companionforband.utils.band.BandUtils; 29 | 30 | public class Band2SubscriptionTask extends AsyncTask { 31 | @Override 32 | protected Void doInBackground(Void... params) { 33 | try { 34 | if (BandUtils.getConnectedBandClient()) { 35 | if (MainActivity.band2) { 36 | if (MainActivity.sharedPreferences.getBoolean("Altimeter", true)) 37 | MainActivity.client.getSensorManager().registerAltimeterEventListener(SensorsFragment.bandAltimeterEventListener); 38 | if (MainActivity.sharedPreferences.getBoolean("Ambient Light", true)) 39 | MainActivity.client.getSensorManager().registerAmbientLightEventListener(SensorsFragment.bandAmbientLightEventListener); 40 | if (MainActivity.sharedPreferences.getBoolean("Barometer", true)) 41 | MainActivity.client.getSensorManager().registerBarometerEventListener(SensorsFragment.bandBarometerEventListener); 42 | 43 | if (MainActivity.sharedPreferences.getBoolean("GSR", true)) 44 | if (MainActivity.sharedPreferences.getInt("gsr_hz", 31) == 31) 45 | MainActivity.client.getSensorManager().registerGsrEventListener(SensorsFragment.bandGsrEventListener, GsrSampleRate.MS200); 46 | else 47 | MainActivity.client.getSensorManager().registerGsrEventListener(SensorsFragment.bandGsrEventListener, GsrSampleRate.MS5000); 48 | 49 | SensorsFragment.appendToUI("Firmware Version : " + MainActivity.client.getFirmwareVersion().await() 50 | + "\nHardware Version : " + MainActivity.client.getHardwareVersion().await(), SensorsFragment.band2TV); 51 | } else { 52 | SensorsFragment.appendToUI("Firmware Version : " + MainActivity.client.getFirmwareVersion().await() 53 | + "\nHardware Version : " + MainActivity.client.getHardwareVersion().await() 54 | + "\n\n" + MainActivity.sContext.getString(R.string.band_2_required), SensorsFragment.band2TV); 55 | } 56 | } else { 57 | MainActivity.appendToUI(MainActivity.sContext.getString(R.string.band_not_found), "Style.ALERT"); 58 | } 59 | } catch (BandException e) { 60 | BandUtils.handleBandException(e); 61 | } catch (Exception e) { 62 | MainActivity.appendToUI(e.getMessage(), "Style.ALERT"); 63 | } 64 | return null; 65 | } 66 | } 67 | --------------------------------------------------------------------------------