├── .metadata ├── .lock ├── .log ├── .plugins │ ├── org.eclipse.cdt.core │ │ └── .log │ ├── org.eclipse.cdt.make.core │ │ ├── specs.c │ │ └── specs.cpp │ ├── org.eclipse.core.resources │ │ ├── .projects │ │ │ ├── FallDetectionAndroid │ │ │ │ ├── .indexes │ │ │ │ │ ├── a0 │ │ │ │ │ │ ├── 3c │ │ │ │ │ │ │ └── properties.index │ │ │ │ │ │ ├── 5f │ │ │ │ │ │ │ └── properties.index │ │ │ │ │ │ ├── 8a │ │ │ │ │ │ │ └── properties.index │ │ │ │ │ │ ├── d6 │ │ │ │ │ │ │ └── properties.index │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── properties.index │ │ │ │ │ │ ├── eb │ │ │ │ │ │ │ └── properties.index │ │ │ │ │ │ └── ee │ │ │ │ │ │ │ └── properties.index │ │ │ │ │ └── properties.index │ │ │ │ └── org.eclipse.jdt.core │ │ │ │ │ └── state.dat │ │ │ └── PEBBLE_KIT │ │ │ │ ├── .indexes │ │ │ │ ├── a0 │ │ │ │ │ ├── d6 │ │ │ │ │ │ └── properties.index │ │ │ │ │ └── de │ │ │ │ │ │ └── properties.index │ │ │ │ └── properties.index │ │ │ │ ├── .location │ │ │ │ ├── .markers │ │ │ │ └── org.eclipse.jdt.core │ │ │ │ └── state.dat │ │ ├── .root │ │ │ ├── .indexes │ │ │ │ ├── history.version │ │ │ │ ├── properties.index │ │ │ │ └── properties.version │ │ │ └── 4.tree │ │ └── .safetable │ │ │ └── org.eclipse.core.resources │ ├── org.eclipse.core.runtime │ │ └── .settings │ │ │ ├── com.android.ide.eclipse.adt.prefs │ │ │ ├── org.eclipse.cdt.debug.core.prefs │ │ │ ├── org.eclipse.cdt.ui.prefs │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.debug.core.prefs │ │ │ ├── org.eclipse.debug.ui.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.launching.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.team.ui.prefs │ │ │ ├── org.eclipse.ui.editors.prefs │ │ │ ├── org.eclipse.ui.ide.prefs │ │ │ ├── org.eclipse.ui.prefs │ │ │ ├── org.eclipse.wst.sse.core.prefs │ │ │ └── org.python.pydev.prefs │ ├── org.eclipse.e4.workbench │ │ └── workbench.xmi │ ├── org.eclipse.jdt.core │ │ ├── 1532612313.index │ │ ├── 1864741550.index │ │ ├── 2473479906.index │ │ ├── 2706090599.index │ │ ├── 3488915235.index │ │ ├── externalLibsTimeStamps │ │ ├── indexNamesMap.txt │ │ ├── invalidArchivesCache │ │ ├── javaLikeNames.txt │ │ ├── nonChainingJarsCache │ │ ├── savedIndexNames.txt │ │ └── variablesAndContainers.dat │ ├── org.eclipse.jdt.ui │ │ ├── OpenTypeHistory.xml │ │ ├── QualifiedTypeNameHistory.xml │ │ └── dialog_settings.xml │ ├── org.eclipse.ui.ide │ │ └── dialog_settings.xml │ └── org.eclipse.ui.workbench │ │ ├── dialog_settings.xml │ │ └── workingsets.xml └── version.ini ├── FD_AndroidStudio ├── .gradle │ └── 2.2.1 │ │ └── taskArtifacts │ │ ├── cache.properties │ │ ├── cache.properties.lock │ │ ├── fileHashes.bin │ │ ├── fileSnapshots.bin │ │ ├── outputFileStates.bin │ │ └── taskArtifacts.bin ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── libraries │ │ ├── guava_14_0_1.xml │ │ └── support_v4_19_1_0.xml │ ├── misc.xml │ ├── modules.xml │ ├── scopes │ │ └── scope_settings.xml │ ├── vcs.xml │ └── workspace.xml ├── FD_AndroidStudio.iml ├── build.gradle ├── build │ └── intermediates │ │ └── model_data.bin ├── fallDetection │ ├── build.gradle │ ├── build │ │ ├── generated │ │ │ └── source │ │ │ │ ├── buildConfig │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── com │ │ │ │ │ │ └── pulusata │ │ │ │ │ │ └── falldetection │ │ │ │ │ │ └── test │ │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── debug │ │ │ │ │ └── com │ │ │ │ │ └── pulusata │ │ │ │ │ └── falldetection │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── r │ │ │ │ └── debug │ │ │ │ └── com │ │ │ │ ├── getpebble │ │ │ │ └── android │ │ │ │ │ └── kit │ │ │ │ │ └── R.java │ │ │ │ └── pulusata │ │ │ │ └── falldetection │ │ │ │ └── R.java │ │ ├── intermediates │ │ │ ├── exploded-aar │ │ │ │ └── FD_AndroidStudio │ │ │ │ │ └── pEBBLE_KIT │ │ │ │ │ └── unspecified │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── aapt │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── classes.jar │ │ │ │ │ └── res │ │ │ │ │ ├── layout │ │ │ │ │ └── main.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── incremental │ │ │ │ ├── aidl │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── dependency.store │ │ │ │ │ └── debug │ │ │ │ │ │ └── dependency.store │ │ │ │ ├── mergeAssets │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ └── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ └── mergeResources │ │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ ├── manifests │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── full │ │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── res │ │ │ │ └── debug │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── background_view_rounded_single.xml │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── progressbar.xml │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_configure.xml │ │ │ │ │ ├── activity_fall_detection.xml │ │ │ │ │ ├── contact_list_layout.xml │ │ │ │ │ ├── fragment_configure.xml │ │ │ │ │ ├── fragment_fall_detection.xml │ │ │ │ │ └── main.xml │ │ │ │ │ ├── menu │ │ │ │ │ ├── configure.xml │ │ │ │ │ └── fall_detection.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ └── values.xml │ │ │ │ │ ├── values-v14 │ │ │ │ │ └── values.xml │ │ │ │ │ ├── values-w820dp-v13 │ │ │ │ │ └── values.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── resources │ │ │ │ ├── resources-debug-androidTest.ap_ │ │ │ │ └── resources-debug.ap_ │ │ │ └── symbols │ │ │ │ └── debug │ │ │ │ └── R.txt │ │ └── outputs │ │ │ └── logs │ │ │ └── manifest-merger-debug-report.txt │ ├── fallDetection.iml │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── pulusata │ │ │ └── falldetection │ │ │ ├── Configure.java │ │ │ ├── FallDetection.java │ │ │ └── SMSSend.java │ │ └── res │ │ ├── drawable-hdpi │ │ ├── background_view_rounded_single.xml │ │ ├── ic_launcher.png │ │ └── progressbar.xml │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── layout │ │ ├── activity_configure.xml │ │ ├── activity_fall_detection.xml │ │ ├── contact_list_layout.xml │ │ ├── fragment_configure.xml │ │ └── fragment_fall_detection.xml │ │ ├── menu │ │ ├── configure.xml │ │ └── fall_detection.xml │ │ ├── values-v11 │ │ └── styles.xml │ │ ├── values-v14 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── import-summary.txt ├── local.properties ├── pEBBLE_KIT │ ├── build.gradle │ ├── build │ │ ├── generated │ │ │ └── source │ │ │ │ ├── buildConfig │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── com │ │ │ │ │ │ └── getpebble │ │ │ │ │ │ └── android │ │ │ │ │ │ └── kit │ │ │ │ │ │ └── test │ │ │ │ │ │ └── BuildConfig.java │ │ │ │ ├── debug │ │ │ │ │ └── com │ │ │ │ │ │ └── getpebble │ │ │ │ │ │ └── android │ │ │ │ │ │ └── kit │ │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── release │ │ │ │ │ └── com │ │ │ │ │ └── getpebble │ │ │ │ │ └── android │ │ │ │ │ └── kit │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── r │ │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── com │ │ │ │ │ └── getpebble │ │ │ │ │ └── android │ │ │ │ │ └── kit │ │ │ │ │ ├── R.java │ │ │ │ │ └── test │ │ │ │ │ └── R.java │ │ │ │ ├── debug │ │ │ │ └── com │ │ │ │ │ └── getpebble │ │ │ │ │ └── android │ │ │ │ │ └── kit │ │ │ │ │ └── R.java │ │ │ │ └── release │ │ │ │ └── com │ │ │ │ └── getpebble │ │ │ │ └── android │ │ │ │ └── kit │ │ │ │ └── R.java │ │ ├── intermediates │ │ │ ├── bundles │ │ │ │ ├── debug │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── classes.jar │ │ │ │ │ └── res │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── main.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── release │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── aapt │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── classes.jar │ │ │ │ │ └── res │ │ │ │ │ ├── layout │ │ │ │ │ └── main.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── classes │ │ │ │ ├── debug │ │ │ │ │ └── com │ │ │ │ │ │ └── getpebble │ │ │ │ │ │ └── android │ │ │ │ │ │ └── kit │ │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ │ ├── Constants$PebbleAppType.class │ │ │ │ │ │ ├── Constants$PebbleDataType.class │ │ │ │ │ │ ├── Constants.class │ │ │ │ │ │ ├── PebbleKit$1.class │ │ │ │ │ │ ├── PebbleKit$FirmwareVersionInfo.class │ │ │ │ │ │ ├── PebbleKit$PebbleAckReceiver.class │ │ │ │ │ │ ├── PebbleKit$PebbleDataLogReceiver.class │ │ │ │ │ │ ├── PebbleKit$PebbleDataReceiver.class │ │ │ │ │ │ ├── PebbleKit$PebbleNackReceiver.class │ │ │ │ │ │ ├── PebbleKit.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── PebbleDictionary$1.class │ │ │ │ │ │ ├── PebbleDictionary$PebbleDictTypeException.class │ │ │ │ │ │ ├── PebbleDictionary$TupleOverflowException.class │ │ │ │ │ │ ├── PebbleDictionary.class │ │ │ │ │ │ ├── PebbleTuple$TupleType.class │ │ │ │ │ │ ├── PebbleTuple$ValueOverflowException.class │ │ │ │ │ │ ├── PebbleTuple$Width.class │ │ │ │ │ │ └── PebbleTuple.class │ │ │ │ └── release │ │ │ │ │ └── com │ │ │ │ │ └── getpebble │ │ │ │ │ └── android │ │ │ │ │ └── kit │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── Constants$PebbleAppType.class │ │ │ │ │ ├── Constants$PebbleDataType.class │ │ │ │ │ ├── Constants.class │ │ │ │ │ ├── PebbleKit$1.class │ │ │ │ │ ├── PebbleKit$FirmwareVersionInfo.class │ │ │ │ │ ├── PebbleKit$PebbleAckReceiver.class │ │ │ │ │ ├── PebbleKit$PebbleDataLogReceiver.class │ │ │ │ │ ├── PebbleKit$PebbleDataReceiver.class │ │ │ │ │ ├── PebbleKit$PebbleNackReceiver.class │ │ │ │ │ ├── PebbleKit.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R.class │ │ │ │ │ └── util │ │ │ │ │ ├── PebbleDictionary$1.class │ │ │ │ │ ├── PebbleDictionary$PebbleDictTypeException.class │ │ │ │ │ ├── PebbleDictionary$TupleOverflowException.class │ │ │ │ │ ├── PebbleDictionary.class │ │ │ │ │ ├── PebbleTuple$TupleType.class │ │ │ │ │ ├── PebbleTuple$ValueOverflowException.class │ │ │ │ │ ├── PebbleTuple$Width.class │ │ │ │ │ └── PebbleTuple.class │ │ │ ├── incremental │ │ │ │ ├── aidl │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── dependency.store │ │ │ │ │ ├── debug │ │ │ │ │ │ └── dependency.store │ │ │ │ │ └── release │ │ │ │ │ │ └── dependency.store │ │ │ │ ├── mergeAssets │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ ├── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ │ └── release │ │ │ │ │ │ └── merger.xml │ │ │ │ ├── mergeResources │ │ │ │ │ └── androidTest │ │ │ │ │ │ └── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ └── packageResources │ │ │ │ │ ├── debug │ │ │ │ │ └── merger.xml │ │ │ │ │ └── release │ │ │ │ │ └── merger.xml │ │ │ ├── manifests │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── tmp │ │ │ │ │ └── manifestMerger428854280270716708.xml │ │ │ ├── res │ │ │ │ └── androidTest │ │ │ │ │ └── debug │ │ │ │ │ ├── layout │ │ │ │ │ └── main.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── resources │ │ │ │ └── resources-debug-androidTest.ap_ │ │ │ └── symbols │ │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── R.txt │ │ ├── outputs │ │ │ └── aar │ │ │ │ ├── pEBBLE_KIT-debug.aar │ │ │ │ └── pEBBLE_KIT-release.aar │ │ └── tmp │ │ │ ├── packageDebugJar │ │ │ └── MANIFEST.MF │ │ │ └── packageReleaseJar │ │ │ └── MANIFEST.MF │ ├── pEBBLE_KIT.iml │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── getpebble │ │ │ └── android │ │ │ └── kit │ │ │ ├── Constants.java │ │ │ ├── PebbleKit.java │ │ │ └── util │ │ │ ├── PebbleDictionary.java │ │ │ └── PebbleTuple.java │ │ └── res │ │ ├── layout │ │ └── main.xml │ │ └── values │ │ └── strings.xml └── settings.gradle ├── FallDetectionAndroid ├── .classpath ├── .metadata │ ├── .lock │ ├── .log │ ├── .plugins │ │ ├── org.eclipse.cdt.core │ │ │ └── .log │ │ ├── org.eclipse.cdt.make.core │ │ │ ├── specs.c │ │ │ └── specs.cpp │ │ ├── org.eclipse.core.resources │ │ │ ├── .root │ │ │ │ ├── .indexes │ │ │ │ │ ├── history.version │ │ │ │ │ ├── properties.index │ │ │ │ │ └── properties.version │ │ │ │ └── 1.tree │ │ │ └── .safetable │ │ │ │ └── org.eclipse.core.resources │ │ ├── org.eclipse.core.runtime │ │ │ └── .settings │ │ │ │ ├── com.android.ide.eclipse.adt.prefs │ │ │ │ ├── org.eclipse.cdt.ui.prefs │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ │ ├── org.eclipse.ui.ide.prefs │ │ │ │ └── org.python.pydev.prefs │ │ ├── org.eclipse.e4.workbench │ │ │ └── workbench.xmi │ │ ├── org.eclipse.jdt.core │ │ │ ├── invalidArchivesCache │ │ │ ├── nonChainingJarsCache │ │ │ └── variablesAndContainers.dat │ │ ├── org.eclipse.jdt.ui │ │ │ ├── OpenTypeHistory.xml │ │ │ ├── QualifiedTypeNameHistory.xml │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.ui.ide │ │ │ └── dialog_settings.xml │ │ └── org.eclipse.ui.workbench │ │ │ ├── dialog_settings.xml │ │ │ └── workingsets.xml │ └── version.ini ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ ├── FallDetection.apk │ ├── R.txt │ ├── classes.dex │ ├── classes │ │ └── com │ │ │ ├── getpebble │ │ │ └── android │ │ │ │ └── kit │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ └── R.class │ │ │ └── pulusata │ │ │ └── falldetection │ │ │ ├── BuildConfig.class │ │ │ ├── Configure$1$1.class │ │ │ ├── Configure$1.class │ │ │ ├── Configure$2$1.class │ │ │ ├── Configure$2.class │ │ │ ├── Configure.class │ │ │ ├── FallDetection$MyArrayAdapter$1.class │ │ │ ├── FallDetection$MyArrayAdapter.class │ │ │ ├── FallDetection.class │ │ │ ├── R$attr.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R.class │ │ │ ├── SMSSend$1.class │ │ │ └── SMSSend.class │ ├── dexedLibs │ │ ├── android-support-v4-bd5ddb6b2669ce16469b1f4b43fbcbeb.jar │ │ ├── guava-14.0.1-83dac1da3cb924e303eff1e04d383475.jar │ │ └── pebble_kit-d5d41ff40332f9348bc047d3d304582d.jar │ ├── jarlist.cache │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ ├── gen │ └── com │ │ ├── getpebble │ │ └── android │ │ │ └── kit │ │ │ └── R.java │ │ └── pulusata │ │ └── falldetection │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── background_view_rounded_single.xml │ │ ├── ic_launcher.png │ │ └── progressbar.xml │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_configure.xml │ │ ├── activity_fall_detection.xml │ │ ├── contact_list_layout.xml │ │ ├── fragment_configure.xml │ │ └── fragment_fall_detection.xml │ ├── menu │ │ ├── configure.xml │ │ └── fall_detection.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── pulusata │ └── falldetection │ ├── Configure.java │ ├── FallDetection.java │ └── SMSSend.java ├── README.md └── fall_detection_pebble ├── appinfo.json ├── jshintrc ├── src ├── button_click.c ├── window2.c └── window3.c └── wscript /.metadata/.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.lock -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.cdt.core/.log: -------------------------------------------------------------------------------- 1 | *** SESSION Apr 20, 2014 19:23:20.87 ------------------------------------------- 2 | *** SESSION Apr 29, 2015 10:56:48.77 ------------------------------------------- 3 | *** SESSION Apr 29, 2015 10:57:46.43 ------------------------------------------- 4 | *** SESSION Apr 29, 2015 11:00:27.18 ------------------------------------------- 5 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.cdt.make.core/specs.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.cdt.make.core/specs.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/FallDetectionAndroid/.indexes/a0/3c/properties.index: -------------------------------------------------------------------------------- 1 | 5/res/drawable-hdpi/background_view_rounded_single.xml7org.eclipse.ui.internal.registry.ResourceEditorRegistryEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor"/res/drawable-hdpi/progressbar.xmlEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/FallDetectionAndroid/.indexes/a0/5f/properties.index: -------------------------------------------------------------------------------- 1 | /res/menu/configure.xml7org.eclipse.ui.internal.registry.ResourceEditorRegistryEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor/res/menu/fall_detection.xmlEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/FallDetectionAndroid/.indexes/a0/8a/properties.index: -------------------------------------------------------------------------------- 1 | /res/values-w820dp/dimens.xml7org.eclipse.ui.internal.registry.ResourceEditorRegistryEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/FallDetectionAndroid/.indexes/a0/d6/properties.index: -------------------------------------------------------------------------------- 1 | "/res/layout/activity_configure.xml7org.eclipse.ui.internal.registry.ResourceEditorRegistryEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor"/res/layout/fragment_configure.xmlEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor'/res/layout/fragment_fall_detection.xmlEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor#/res/layout/contact_list_layout.xmlEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor'/res/layout/activity_fall_detection.xmlEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/FallDetectionAndroid/.indexes/a0/de/properties.index: -------------------------------------------------------------------------------- 1 | /res/values/strings.xml7org.eclipse.ui.internal.registry.ResourceEditorRegistryEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor/res/values/colors.xmlEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor/res/values/dimens.xmlEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor/res/values/styles.xmlEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/FallDetectionAndroid/.indexes/a0/eb/properties.index: -------------------------------------------------------------------------------- 1 | /res/values-v11/styles.xml7org.eclipse.ui.internal.registry.ResourceEditorRegistryEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/FallDetectionAndroid/.indexes/a0/ee/properties.index: -------------------------------------------------------------------------------- 1 | /res/values-v14/styles.xml7org.eclipse.ui.internal.registry.ResourceEditorRegistryEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/FallDetectionAndroid/.indexes/properties.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.plugins/org.eclipse.core.resources/.projects/FallDetectionAndroid/.indexes/properties.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/FallDetectionAndroid/org.eclipse.jdt.core/state.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.plugins/org.eclipse.core.resources/.projects/FallDetectionAndroid/org.eclipse.jdt.core/state.dat -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/PEBBLE_KIT/.indexes/a0/d6/properties.index: -------------------------------------------------------------------------------- 1 | /res/layout/main.xml7org.eclipse.ui.internal.registry.ResourceEditorRegistryEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/PEBBLE_KIT/.indexes/a0/de/properties.index: -------------------------------------------------------------------------------- 1 | /res/values/strings.xml7org.eclipse.ui.internal.registry.ResourceEditorRegistryEditorProperty/com.android.ide.eclipse.editors.CommonXmlEditor -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/PEBBLE_KIT/.indexes/properties.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.plugins/org.eclipse.core.resources/.projects/PEBBLE_KIT/.indexes/properties.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/PEBBLE_KIT/.location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.plugins/org.eclipse.core.resources/.projects/PEBBLE_KIT/.location -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/PEBBLE_KIT/.markers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.plugins/org.eclipse.core.resources/.projects/PEBBLE_KIT/.markers -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/PEBBLE_KIT/org.eclipse.jdt.core/state.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.plugins/org.eclipse.core.resources/.projects/PEBBLE_KIT/org.eclipse.jdt.core/state.dat -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index: -------------------------------------------------------------------------------- 1 | /com.android.ide.eclipse.adt 2 | androidApiHfile:/Users/hitheshaum/adt-bundle-mac-x86_64-20140702/sdk/docs/referenceorg.eclipse.core.resourcescontentCacheState2contentCacheTimestamp 1430330256767org.eclipse.jdt.corestateVersionNumber27 -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.root/4.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.plugins/org.eclipse.core.resources/.root/4.tree -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/com.android.ide.eclipse.adt.prefs: -------------------------------------------------------------------------------- 1 | com.android.ide.eclipse.adt.fixLegacyEditors=1 2 | com.android.ide.eclipse.adt.sdk=/Users/hitheshaum/adt-bundle-mac-x86_64-20140702/sdk 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.debug.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.cdt.debug.core.cDebug.default_source_containers=\n\n\n\n\n\n\n\n 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | spelling_locale_initialized=true 3 | useAnnotationsPrefPage=true 4 | useQuickDiffPrefPage=true 5 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | version=1 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.core.prefs: -------------------------------------------------------------------------------- 1 | //org.eclipse.debug.core.PREFERRED_DELEGATES/org.eclipse.cdt.launch.applicationLaunchType=org.eclipse.cdt.dsf.gdb.launch.localCLaunch,debug;org.eclipse.cdt.cdi.launch.localCLaunch,run 2 | //org.eclipse.debug.core.PREFERRED_DELEGATES/org.eclipse.cdt.launch.attachLaunchType=org.eclipse.cdt.dsf.gdb.launch.attachCLaunch,debug 3 | //org.eclipse.debug.core.PREFERRED_DELEGATES/org.eclipse.cdt.launch.postmortemLaunchType=org.eclipse.cdt.dsf.gdb.launch.coreCLaunch,debug 4 | eclipse.preferences.version=1 5 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=\n\n 3 | preferredTargets=org.eclipse.cdt.debug.ui.toggleCBreakpointTarget\:org.eclipse.cdt.debug.ui.toggleCBreakpointTarget| 4 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.codeComplete.visibilityCheck=enabled 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.launching.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.launching.PREF_VM_XML=\n\n 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- 1 | content_assist_number_of_computers=12 2 | content_assist_proposals_background=255,255,255 3 | content_assist_proposals_foreground=0,0,0 4 | eclipse.preferences.version=1 5 | fontPropagated=true 6 | org.eclipse.jdt.ui.editor.tab.width= 7 | org.eclipse.jdt.ui.formatterprofiles.version=12 8 | org.eclipse.jdt.ui.javadoclocations.migrated=true 9 | org.eclipse.jface.textfont=1|Monaco|11.0|0|COCOA|1|; 10 | proposalOrderMigrated=true 11 | spelling_locale_initialized=true 12 | tabWidthPropagated=true 13 | useAnnotationsPrefPage=true 14 | useQuickDiffPrefPage=true 15 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.team.ui.first_time=false 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.editors.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | overviewRuler_migration=migrated_3.1 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs: -------------------------------------------------------------------------------- 1 | PROBLEMS_FILTERS_MIGRATE=true 2 | eclipse.preferences.version=1 3 | platformState=1430330256767 4 | quickStart=false 5 | tipsAndTricks=true 6 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | showIntro=false 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.sse.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | task-tag-projects-already-scanned=FallDetectionAndroid 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.python.pydev.prefs: -------------------------------------------------------------------------------- 1 | INTERPRETERS_CHECKED_ONCE=true 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/1532612313.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.plugins/org.eclipse.jdt.core/1532612313.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/1864741550.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.plugins/org.eclipse.jdt.core/1864741550.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/2473479906.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.plugins/org.eclipse.jdt.core/2473479906.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/2706090599.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.plugins/org.eclipse.jdt.core/2706090599.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/3488915235.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.plugins/org.eclipse.jdt.core/3488915235.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/indexNamesMap.txt: -------------------------------------------------------------------------------- 1 | INDEX VERSION 1.126 2 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/invalidArchivesCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/javaLikeNames.txt: -------------------------------------------------------------------------------- 1 | java -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache: -------------------------------------------------------------------------------- 1 | ^/Users/hitheshaum/pebble-dev/PebbleSDK-2.0.1/PebbleKit-Android/PebbleKit/libs/guava-14.0.1.jar[/Users/hitheshaum/pebble-dev/PebbleSDK-2.0.1/PebbleKit-Android/PebbleKit/bin/pebble_kit.jarU/Users/hitheshaum/adt-bundle-mac-x86_64-20140702/sdk/platforms/android-19/android.jarQ/Users/hitheshaum/fall-detection/FallDetectionAndroid/libs/android-support-v4.jar -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/savedIndexNames.txt: -------------------------------------------------------------------------------- 1 | INDEX VERSION 1.126+/Users/hitheshaum/fall-detection/.metadata/.plugins/org.eclipse.jdt.core 2 | 2706090599.index 3 | 1864741550.index 4 | 3488915235.index 5 | 1532612313.index 6 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat: -------------------------------------------------------------------------------- 1 | FallDetectionAndroid(com.android.ide.eclipse.adt.DEPENDENCIES[/Users/hitheshaum/pebble-dev/PebbleSDK-2.0.1/PebbleKit-Android/PebbleKit/bin/pebble_kit.jar/PEBBLE_KIT/src%com.android.ide.eclipse.adt.LIBRARIES^/Users/hitheshaum/pebble-dev/PebbleSDK-2.0.1/PebbleKit-Android/PebbleKit/libs/guava-14.0.1.jarQ/Users/hitheshaum/fall-detection/FallDetectionAndroid/libs/android-support-v4.jar-com.android.ide.eclipse.adt.ANDROID_FRAMEWORKU/Users/hitheshaum/adt-bundle-mac-x86_64-20140702/sdk/platforms/android-19/android.jar3 com/android/internal/** 2 | javadoc_location Hfile:/Users/hitheshaum/adt-bundle-mac-x86_64-20140702/sdk/docs/reference 3 | PEBBLE_KIT JRE_LIB JRE_SRCROOT 4 | JUNIT_HOMEJRE_SRCJUNIT_SRC_HOME -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 | 7 | 8 | 9 |
10 |
11 |
12 |
13 | 14 |
15 |
16 |
17 |
18 |
19 |
20 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 |
21 |
22 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 |
20 | 21 | 22 | 23 | 24 | 25 |
26 |
27 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /.metadata/version.ini: -------------------------------------------------------------------------------- 1 | org.eclipse.core.runtime=1 -------------------------------------------------------------------------------- /FD_AndroidStudio/.gradle/2.2.1/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 29 11:16:57 PDT 2015 2 | -------------------------------------------------------------------------------- /FD_AndroidStudio/.gradle/2.2.1/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/FD_AndroidStudio/.gradle/2.2.1/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /FD_AndroidStudio/.gradle/2.2.1/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/FD_AndroidStudio/.gradle/2.2.1/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /FD_AndroidStudio/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/FD_AndroidStudio/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /FD_AndroidStudio/.gradle/2.2.1/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/FD_AndroidStudio/.gradle/2.2.1/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /FD_AndroidStudio/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/FD_AndroidStudio/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /FD_AndroidStudio/.idea/.name: -------------------------------------------------------------------------------- 1 | FallDetectionAndroid -------------------------------------------------------------------------------- /FD_AndroidStudio/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /FD_AndroidStudio/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /FD_AndroidStudio/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /FD_AndroidStudio/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /FD_AndroidStudio/.idea/libraries/guava_14_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /FD_AndroidStudio/.idea/libraries/support_v4_19_1_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /FD_AndroidStudio/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FD_AndroidStudio/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /FD_AndroidStudio/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /FD_AndroidStudio/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FD_AndroidStudio/FD_AndroidStudio.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /FD_AndroidStudio/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | buildscript { 3 | repositories { 4 | jcenter() 5 | } 6 | dependencies { 7 | classpath 'com.android.tools.build:gradle:1.1.0' 8 | } 9 | } 10 | 11 | allprojects { 12 | repositories { 13 | jcenter() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /FD_AndroidStudio/build/intermediates/model_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/FD_AndroidStudio/build/intermediates/model_data.bin -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 19 5 | buildToolsVersion "21.1.2" 6 | 7 | defaultConfig { 8 | applicationId "com.pulusata.falldetection" 9 | minSdkVersion 14 10 | targetSdkVersion 19 11 | } 12 | 13 | buildTypes { 14 | release { 15 | minifyEnabled false 16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 17 | } 18 | } 19 | } 20 | 21 | dependencies { 22 | compile project(':pEBBLE_KIT') 23 | compile 'com.android.support:support-v4:19.1.0' 24 | } 25 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/generated/source/buildConfig/androidTest/debug/com/pulusata/falldetection/test/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.pulusata.falldetection.test; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.pulusata.falldetection.test"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = -1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/generated/source/buildConfig/debug/com/pulusata/falldetection/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.pulusata.falldetection; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.pulusata.falldetection"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = 1; 12 | public static final String VERSION_NAME = ""; 13 | } 14 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/generated/source/r/debug/com/getpebble/android/kit/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package com.getpebble.android.kit; 8 | 9 | public final class R { 10 | public static final class layout { 11 | public static final int main = 0x7f030005; 12 | } 13 | public static final class string { 14 | public static final int app_name = 0x7f060001; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/generated/source/r/debug/com/pulusata/falldetection/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.pulusata.falldetection; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class color { 14 | public static final int default_screen_bg=0x7f040000; 15 | public static final int light_gray_header_color=0x7f040001; 16 | public static final int rounded_container_bg=0x7f040002; 17 | public static final int rounded_container_border=0x7f040003; 18 | } 19 | public static final class dimen { 20 | public static final int activity_horizontal_margin=0x7f050000; 21 | public static final int activity_vertical_margin=0x7f050001; 22 | } 23 | public static final class drawable { 24 | public static final int background_view_rounded_single=0x7f020000; 25 | public static final int ic_launcher=0x7f020001; 26 | public static final int progressbar=0x7f020002; 27 | } 28 | public static final class id { 29 | public static final int above60F=0x7f090009; 30 | public static final int above60M=0x7f090008; 31 | public static final int action_settings=0x7f090014; 32 | public static final int button1=0x7f090010; 33 | public static final int car_crash=0x7f09000e; 34 | public static final int current_message=0x7f090001; 35 | public static final int customMessage=0x7f090000; 36 | public static final int default_tresh=0x7f090006; 37 | public static final int delete_button=0x7f090013; 38 | public static final int fall_treshold_display=0x7f090003; 39 | public static final int fractured=0x7f09000d; 40 | public static final int get_contact=0x7f09000f; 41 | public static final int less12=0x7f09000c; 42 | public static final int name=0x7f090011; 43 | public static final int osteopenia=0x7f09000b; 44 | public static final int osteoporosis=0x7f090007; 45 | public static final int phoneNumber=0x7f090012; 46 | public static final int refresh_match_layout=0x7f090002; 47 | public static final int treshold=0x7f090004; 48 | public static final int treshold_defaults=0x7f090005; 49 | public static final int young=0x7f09000a; 50 | } 51 | public static final class layout { 52 | public static final int activity_configure=0x7f030000; 53 | public static final int activity_fall_detection=0x7f030001; 54 | public static final int contact_list_layout=0x7f030002; 55 | public static final int fragment_configure=0x7f030003; 56 | public static final int fragment_fall_detection=0x7f030004; 57 | public static final int main=0x7f030005; 58 | } 59 | public static final class menu { 60 | public static final int configure=0x7f080000; 61 | public static final int fall_detection=0x7f080001; 62 | } 63 | public static final class string { 64 | public static final int action_settings=0x7f060000; 65 | public static final int app_name=0x7f060001; 66 | public static final int braodcast=0x7f060002; 67 | public static final int delete=0x7f060003; 68 | public static final int hello_world=0x7f060004; 69 | public static final int pick_contact=0x7f060005; 70 | public static final int start_service=0x7f060006; 71 | public static final int stop_service=0x7f060007; 72 | public static final int title_activity_configure=0x7f060008; 73 | } 74 | public static final class style { 75 | /** 76 | Theme customizations available in newer API levels can go in 77 | res/values-vXX/styles.xml, while customizations related to 78 | backward-compatibility can go here. 79 | 80 | API 11 theme customizations can go here. 81 | API 14 theme customizations can go here. 82 | */ 83 | public static final int AppBaseTheme=0x7f070000; 84 | /** All customizations that are NOT specific to a particular API-level can go here. 85 | */ 86 | public static final int AppTheme=0x7f070001; 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/exploded-aar/FD_AndroidStudio/pEBBLE_KIT/unspecified/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/exploded-aar/FD_AndroidStudio/pEBBLE_KIT/unspecified/R.txt: -------------------------------------------------------------------------------- 1 | int layout main 0x7f020000 2 | int string app_name 0x7f030000 3 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/exploded-aar/FD_AndroidStudio/pEBBLE_KIT/unspecified/aapt/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/exploded-aar/FD_AndroidStudio/pEBBLE_KIT/unspecified/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/FD_AndroidStudio/fallDetection/build/intermediates/exploded-aar/FD_AndroidStudio/pEBBLE_KIT/unspecified/classes.jar -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/exploded-aar/FD_AndroidStudio/pEBBLE_KIT/unspecified/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/exploded-aar/FD_AndroidStudio/pEBBLE_KIT/unspecified/res/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PEBBLE_SPORTS_SDK 6 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/incremental/aidl/androidTest/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/incremental/aidl/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/incremental/mergeAssets/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/incremental/mergeResources/androidTest/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/manifests/androidTest/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 16 | 17 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/manifests/full/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 22 | 23 | 28 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 52 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/res/debug/drawable-hdpi-v4/background_view_rounded_single.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/res/debug/drawable-hdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/FD_AndroidStudio/fallDetection/build/intermediates/res/debug/drawable-hdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/res/debug/drawable-hdpi-v4/progressbar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/res/debug/drawable-mdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/FD_AndroidStudio/fallDetection/build/intermediates/res/debug/drawable-mdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/res/debug/drawable-xhdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/FD_AndroidStudio/fallDetection/build/intermediates/res/debug/drawable-xhdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/res/debug/drawable-xxhdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hitheshaum/fall-detection/2625d669838d9dab473a7d697cccfec06ffc9b42/FD_AndroidStudio/fallDetection/build/intermediates/res/debug/drawable-xxhdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /FD_AndroidStudio/fallDetection/build/intermediates/res/debug/layout/activity_fall_detection.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | 15 |