├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── library.iml ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── buradd │ │ └── timeoutsensor │ │ └── TimeoutSensor.java │ └── res │ ├── layout │ ├── activity_insensor.xml │ └── session_dialog.xml │ └── values │ └── strings.xml ├── local.properties ├── sample ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── TimeoutSensorSample.apk │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── buradd │ │ │ └── timeoutsample │ │ │ └── TimeoutSample.java │ │ └── res │ │ ├── layout │ │ └── activity_timeout_sample.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── settings.gradle └── timeoutsensorburadd.iml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/library.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/library/library.iml -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/com/buradd/timeoutsensor/TimeoutSensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/library/src/main/java/com/buradd/timeoutsensor/TimeoutSensor.java -------------------------------------------------------------------------------- /library/src/main/res/layout/activity_insensor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/library/src/main/res/layout/activity_insensor.xml -------------------------------------------------------------------------------- /library/src/main/res/layout/session_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/library/src/main/res/layout/session_dialog.xml -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/local.properties -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/.gitignore -------------------------------------------------------------------------------- /sample/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/.idea/compiler.xml -------------------------------------------------------------------------------- /sample/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /sample/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/.idea/encodings.xml -------------------------------------------------------------------------------- /sample/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/.idea/gradle.xml -------------------------------------------------------------------------------- /sample/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/.idea/misc.xml -------------------------------------------------------------------------------- /sample/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/.idea/modules.xml -------------------------------------------------------------------------------- /sample/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /sample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/app/TimeoutSensorSample.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/TimeoutSensorSample.apk -------------------------------------------------------------------------------- /sample/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/build.gradle -------------------------------------------------------------------------------- /sample/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/proguard-rules.pro -------------------------------------------------------------------------------- /sample/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/app/src/main/java/com/buradd/timeoutsample/TimeoutSample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/java/com/buradd/timeoutsample/TimeoutSample.java -------------------------------------------------------------------------------- /sample/app/src/main/res/layout/activity_timeout_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/res/layout/activity_timeout_sample.xml -------------------------------------------------------------------------------- /sample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/gradle.properties -------------------------------------------------------------------------------- /sample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /sample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /sample/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/gradlew -------------------------------------------------------------------------------- /sample/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/sample/gradlew.bat -------------------------------------------------------------------------------- /sample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':library' -------------------------------------------------------------------------------- /timeoutsensorburadd.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buradd/TimeoutSensor/HEAD/timeoutsensorburadd.iml --------------------------------------------------------------------------------