├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml ├── scopes │ └── scope_settings.xml └── vcs.xml ├── AndroidWearMotionSensors.iml ├── LICENSE.md ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── mobile ├── .gitignore ├── build.gradle ├── mobile.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── drejkim │ │ └── androidwearmotionsensors │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── drejkim │ │ └── androidwearmotionsensors │ │ └── MainActivity.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── layout │ ├── activity_main.xml │ └── fragment_main.xml │ ├── menu │ └── menu_main.xml │ ├── values-v21 │ └── styles.xml │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── settings.gradle └── wear ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── src └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── drejkim │ │ └── androidwearmotionsensors │ │ ├── MainActivity.java │ │ ├── SensorFragment.java │ │ └── SensorFragmentPagerAdapter.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── layout │ ├── activity_main.xml │ ├── rect_activity_wear.xml │ ├── round_activity_wear.xml │ └── sensor.xml │ └── values │ └── strings.xml └── wear.iml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Android Wear Motion Sensors -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /AndroidWearMotionSensors.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/AndroidWearMotionSensors.iml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/gradlew.bat -------------------------------------------------------------------------------- /mobile/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /mobile/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/build.gradle -------------------------------------------------------------------------------- /mobile/mobile.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/mobile.iml -------------------------------------------------------------------------------- /mobile/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/proguard-rules.pro -------------------------------------------------------------------------------- /mobile/src/androidTest/java/com/drejkim/androidwearmotionsensors/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/androidTest/java/com/drejkim/androidwearmotionsensors/ApplicationTest.java -------------------------------------------------------------------------------- /mobile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mobile/src/main/java/com/drejkim/androidwearmotionsensors/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/main/java/com/drejkim/androidwearmotionsensors/MainActivity.java -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/main/res/layout/fragment_main.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/mobile/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':mobile', ':wear' 2 | -------------------------------------------------------------------------------- /wear/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /wear/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/build.gradle -------------------------------------------------------------------------------- /wear/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/proguard-rules.pro -------------------------------------------------------------------------------- /wear/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /wear/src/main/java/com/drejkim/androidwearmotionsensors/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/src/main/java/com/drejkim/androidwearmotionsensors/MainActivity.java -------------------------------------------------------------------------------- /wear/src/main/java/com/drejkim/androidwearmotionsensors/SensorFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/src/main/java/com/drejkim/androidwearmotionsensors/SensorFragment.java -------------------------------------------------------------------------------- /wear/src/main/java/com/drejkim/androidwearmotionsensors/SensorFragmentPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/src/main/java/com/drejkim/androidwearmotionsensors/SensorFragmentPagerAdapter.java -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /wear/src/main/res/layout/rect_activity_wear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/src/main/res/layout/rect_activity_wear.xml -------------------------------------------------------------------------------- /wear/src/main/res/layout/round_activity_wear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/src/main/res/layout/round_activity_wear.xml -------------------------------------------------------------------------------- /wear/src/main/res/layout/sensor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/src/main/res/layout/sensor.xml -------------------------------------------------------------------------------- /wear/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /wear/wear.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estherjk/AndroidWearMotionSensors/HEAD/wear/wear.iml --------------------------------------------------------------------------------