├── .github └── workflows │ └── android.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASING.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── pwittchen │ │ └── reactivesensors │ │ └── app │ │ ├── MainActivity.java │ │ ├── SensorActivity.java │ │ ├── SensorHelper.java │ │ └── samples │ │ ├── AccelerometerActivity.java │ │ ├── AmbientTemperatureActivity.java │ │ ├── GravityActivity.java │ │ ├── GyroscopeActivity.java │ │ ├── LightActivity.java │ │ ├── LinearAccelerationActivity.java │ │ ├── MagneticFieldActivity.java │ │ ├── OrientationActivity.java │ │ ├── PressureActivity.java │ │ ├── ProximityActivity.java │ │ ├── RelativeHumidityActivity.java │ │ ├── RotationVectorActivity.java │ │ └── TemperatureActivity.java │ └── res │ ├── layout │ ├── activity_main.xml │ └── activity_sensor_sample.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── config ├── quality.gradle └── quality │ ├── checkstyle │ ├── checkstyle.xml │ └── suppressions.xml │ ├── findbugs │ └── findbugs-filter.xml │ ├── lint │ └── lint.xml │ └── pmd │ └── pmd-ruleset.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── gradle.properties ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── pwittchen │ │ └── reactivesensors │ │ └── library │ │ └── ReactiveSensorsTest.java │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── github │ └── pwittchen │ └── reactivesensors │ └── library │ ├── ReactiveSensorEvent.java │ ├── ReactiveSensors.java │ ├── SensorEventListenerWrapper.java │ ├── SensorNotFoundException.java │ └── SensorsProxy.java ├── maven_push.gradle └── settings.gradle /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/RELEASING.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/SensorActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/SensorActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/SensorHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/SensorHelper.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/AccelerometerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/AccelerometerActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/AmbientTemperatureActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/AmbientTemperatureActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/GravityActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/GravityActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/GyroscopeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/GyroscopeActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/LightActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/LightActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/LinearAccelerationActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/LinearAccelerationActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/MagneticFieldActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/MagneticFieldActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/OrientationActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/OrientationActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/PressureActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/PressureActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/ProximityActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/ProximityActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/RelativeHumidityActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/RelativeHumidityActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/RotationVectorActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/RotationVectorActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/TemperatureActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/java/com/github/pwittchen/reactivesensors/app/samples/TemperatureActivity.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_sensor_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/res/layout/activity_sensor_sample.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /config/quality.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/config/quality.gradle -------------------------------------------------------------------------------- /config/quality/checkstyle/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/config/quality/checkstyle/checkstyle.xml -------------------------------------------------------------------------------- /config/quality/checkstyle/suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/config/quality/checkstyle/suppressions.xml -------------------------------------------------------------------------------- /config/quality/findbugs/findbugs-filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/config/quality/findbugs/findbugs-filter.xml -------------------------------------------------------------------------------- /config/quality/lint/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/config/quality/lint/lint.xml -------------------------------------------------------------------------------- /config/quality/pmd/pmd-ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/config/quality/pmd/pmd-ruleset.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/library/gradle.properties -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/androidTest/java/com/github/pwittchen/reactivesensors/library/ReactiveSensorsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/library/src/androidTest/java/com/github/pwittchen/reactivesensors/library/ReactiveSensorsTest.java -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/com/github/pwittchen/reactivesensors/library/ReactiveSensorEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/library/src/main/java/com/github/pwittchen/reactivesensors/library/ReactiveSensorEvent.java -------------------------------------------------------------------------------- /library/src/main/java/com/github/pwittchen/reactivesensors/library/ReactiveSensors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/library/src/main/java/com/github/pwittchen/reactivesensors/library/ReactiveSensors.java -------------------------------------------------------------------------------- /library/src/main/java/com/github/pwittchen/reactivesensors/library/SensorEventListenerWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/library/src/main/java/com/github/pwittchen/reactivesensors/library/SensorEventListenerWrapper.java -------------------------------------------------------------------------------- /library/src/main/java/com/github/pwittchen/reactivesensors/library/SensorNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/library/src/main/java/com/github/pwittchen/reactivesensors/library/SensorNotFoundException.java -------------------------------------------------------------------------------- /library/src/main/java/com/github/pwittchen/reactivesensors/library/SensorsProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/library/src/main/java/com/github/pwittchen/reactivesensors/library/SensorsProxy.java -------------------------------------------------------------------------------- /maven_push.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwittchen/ReactiveSensors/HEAD/maven_push.gradle -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':library' 2 | --------------------------------------------------------------------------------