├── .gitignore ├── README.md ├── Sensorium ├── .classpath ├── .gitignore ├── .idea │ └── gradle.xml ├── .project ├── AndroidManifest.xml ├── COPYING ├── COPYING.LESSER ├── Sensorium.iml ├── assets │ ├── icon.png │ ├── icon.svg │ ├── icon512.png │ └── o3gmpreferences.json ├── build.gradle ├── build.xml ├── ic_launcher-web.png ├── libs │ ├── LICENSE │ ├── android-support-v4.jar │ ├── apache-mime4j-core-0.7.2.jar │ ├── apache-mime4j-dom-0.7.2.jar │ ├── apache-mime4j-storage-0.7.2.jar │ ├── commons-codec-1.6.jar │ ├── commons-logging-1.1.1.jar │ ├── fluent-hc-4.2.3.jar │ ├── gson-2.2.4-javadoc.jar │ ├── gson-2.2.4-sources.jar │ ├── gson-2.2.4.jar │ ├── httpclient-4.2.3.jar │ ├── httpclient-cache-4.2.3.jar │ ├── httpcore-4.2.2.jar │ └── httpmime-4.2.3.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_action_search.png │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ ├── ic_action_search.png │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ ├── ic_action_search.png │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_sensor_debug.xml │ │ ├── seattle_sensors_main.xml │ │ ├── sensor_preference_item.xml │ │ ├── sensor_view_item.xml │ │ └── upload_dialogpreference.xml │ ├── menu │ │ ├── activity_main.xml │ │ ├── activity_sensor_debug.xml │ │ └── activity_sensors_view.xml │ ├── raw │ │ └── defaultpreferences.json │ ├── values-pt-rBR │ │ └── strings.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── dimens.xml │ │ ├── sensors.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── upload_interval_strings.xml └── src │ ├── at │ └── univie │ │ └── sensorium │ │ ├── SensorBootCompletedReceiver.java │ │ ├── SensorDebugActivity.java │ │ ├── SensorRegistry.java │ │ ├── SensorService.java │ │ ├── SensorViewArrayAdapter.java │ │ ├── SensorViewItem.java │ │ ├── SensoriumActivity.java │ │ ├── SensoriumApplication.java │ │ ├── extinterfaces │ │ ├── HTTPSUploader.java │ │ └── XMLRPCSensorServerThread.java │ │ ├── logging │ │ └── JSONLogger.java │ │ ├── preferences │ │ ├── CampaignTrackingBroadcastReceiver.java │ │ ├── HTTPSUploaderDialogPreference.java │ │ ├── Preferences.java │ │ ├── SensorPreference.java │ │ └── SensorPreferenceActivity.java │ │ ├── privacy │ │ ├── HashingPrivacy.java │ │ ├── LocationPrivacy.java │ │ ├── Privacy.java │ │ └── SignalstrengthPrivacy.java │ │ └── sensors │ │ ├── AbstractSensor.java │ │ ├── BatterySensor.java │ │ ├── BluetoothSensor.java │ │ ├── DeviceInfoSensor.java │ │ ├── FusedLocationSensor.java │ │ ├── GPSLocationSensor.java │ │ ├── NestedSensorValue.java │ │ ├── NetworkLocationSensor.java │ │ ├── PressureSensor.java │ │ ├── RadioSensor.java │ │ ├── SIMSensor.java │ │ ├── SensorChangeListener.java │ │ ├── SensorException.java │ │ ├── SensorValue.java │ │ ├── WifiConnectionSensor.java │ │ └── WifiSensor.java │ └── org │ └── xmlrpc │ └── android │ ├── Base64Coder.java │ ├── IXMLRPCSerializer.java │ ├── MethodCall.java │ ├── Tag.java │ ├── XMLRPCClient.java │ ├── XMLRPCCommon.java │ ├── XMLRPCException.java │ ├── XMLRPCFault.java │ ├── XMLRPCSerializable.java │ ├── XMLRPCSerializer.java │ └── XMLRPCServer.java └── netsys.md /.gitignore: -------------------------------------------------------------------------------- 1 | # built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # files for the dex VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # generated files 12 | bin/ 13 | gen/ 14 | build/ 15 | 16 | # Local configuration file (sdk path, etc) 17 | local.properties 18 | 19 | # Eclipse project files 20 | .classpath 21 | .project 22 | .settings/ 23 | 24 | # Android Studio 25 | .gradle/ 26 | gradle/ 27 | .idea/ 28 | /*/local.properties 29 | /*/out 30 | /*/*/build 31 | /*/*/production 32 | *.iws 33 | *.ipr 34 | *~ 35 | *.swp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Sensorium # 2 | 3 | Sensorium is an Android Application that collects "sensor" information from your device ("Sensor data") and provides external interfaces to gather and process the data for scientific experiments. This is done in a privacy-preserving way. Only the data and only in the level of detail you allow will be made available. 4 | 5 | Sensorium can be remotely pre-configured to suite the needs for your experiment campaign. If you want to implement further sensors or interfaces, please do so. 6 | 7 | We are using some of the sensor values for [Open 3G Map][6]. 8 | 9 | All our code is available under the GNU Lesser GPL 3.0. We would appreciate it if you contributed back to the Sensorium project. 10 | 11 | ### Currently Available Sensors ### 12 | 13 | * Radio Cell Coverage Information Sensor 14 | * Network Location Sensor determines location based on availability of cellular 15 | tower and Wifi access points. 16 | * GPS Location Sensor determines location using satellites. 17 | * Wifi Scan Sensor periodically scans the current 802.11 network for all the 18 | access points nearby. 19 | * Wifi Connection Sensor displays the current active Wifi connection status. 20 | * Bluetooth Sensor displays local Bluetooth chip information, list of bonded 21 | and (periodically) scanned device. 22 | 23 | ### External Interfaces ### 24 | 25 | * Local XMLRPC. You could use this to talk to programs running outside of the Android Framework, e.g. we use this to talk to the [Seattle Testbed][1] 26 | * automatic JSON log generation and upload to HTTPS sites 27 | 28 | ### Sensor, Interfaces and Privacy Configuration ### 29 | 30 | Users can also configure each sensor individually to suite their privacy needs. Also, can prevent Sensorium from running at boot or disable individual interfaces, 31 | 32 | * Full privacy: the sensor will not share any information on the external interfaces 33 | * High-Low privacy: Depending on the exact level of privacy, some information might not be shared at all, some data points might be rounded (e.g. longitude/latitude, i.e. only your coarse location will be seen), or salted and hashed (so you only can compare these hashes against each other). 34 | * No privacy: All information available to the sensor will be shared. 35 | 36 | ## Develop ## 37 | 38 | Apart from improving the core Sensorium code, you are probably mostly interesting in writing your own Sensor or Interface classes. The following might help you with that. 39 | 40 | ### Implementing New Sensors ### 41 | 42 | 1. Extend the AbstractSensor class 43 | 2. Implement your sensor reading stuff, putting all values to be published in SensorValue objects 44 | 3. Call notifyListeners() whenever your Sensors wants to have its values updated 45 | 4. Put your class name into the res/values/sensors.xml to get it loaded 46 | 47 | ### Implementing New External Interfaces ### 48 | 49 | Currently, we either talk through XMLRPC to your locally running code or we push JSON data to Web Servers. 50 | 51 | Have better ways of communicating your sensors? Implement it! At the moment, it would be best if you read the code to understand what you would need to do. We are still working on a small tutorial to get you started. 52 | 53 | 54 | ## Third Party Libraries ## 55 | 56 | * An adapted version of [android-xmlrpc][2] is used to provide XMLRPC. It's available under the APL 2.0. 57 | * Uses [google-gson][3] (APL 2.0) to provide JSON logging support for Android 2.3.x support. 58 | * Apache [HTTPClient][4] and related libs (APL 2.0) for Multipart Entity HTTP POST support in 2.3.x. 59 | 60 | 61 | (Note: If you were looking for information on our NetSys2013 demonstration, please look [here][5].) 62 | 63 | 64 | [1]: https://seattle.cs.washington.edu/html/ 65 | [2]: https://code.google.com/p/android-xmlrpc/ 66 | [3]: https://code.google.com/p/google-gson/ 67 | [4]: https://hc.apache.org/httpcomponents-client-ga/index.html 68 | [5]: https://github.com/fmetzger/android-sensorium/blob/master/netsys.md 69 | [6]: https://o3gm.cs.univie.ac.at/o3gm/ -------------------------------------------------------------------------------- /Sensorium/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Sensorium/.gitignore: -------------------------------------------------------------------------------- 1 | /gen 2 | /bin 3 | -------------------------------------------------------------------------------- /Sensorium/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /Sensorium/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Sensorium 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /Sensorium/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 30 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 42 | 45 | 46 | 49 | 50 | 51 | 52 | 53 | 54 | 58 | 59 | 60 | 61 | 62 | 63 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /Sensorium/COPYING.LESSER: -------------------------------------------------------------------------------- 1 | GNU LESSER GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | 9 | This version of the GNU Lesser General Public License incorporates 10 | the terms and conditions of version 3 of the GNU General Public 11 | License, supplemented by the additional permissions listed below. 12 | 13 | 0. Additional Definitions. 14 | 15 | As used herein, "this License" refers to version 3 of the GNU Lesser 16 | General Public License, and the "GNU GPL" refers to version 3 of the GNU 17 | General Public License. 18 | 19 | "The Library" refers to a covered work governed by this License, 20 | other than an Application or a Combined Work as defined below. 21 | 22 | An "Application" is any work that makes use of an interface provided 23 | by the Library, but which is not otherwise based on the Library. 24 | Defining a subclass of a class defined by the Library is deemed a mode 25 | of using an interface provided by the Library. 26 | 27 | A "Combined Work" is a work produced by combining or linking an 28 | Application with the Library. The particular version of the Library 29 | with which the Combined Work was made is also called the "Linked 30 | Version". 31 | 32 | The "Minimal Corresponding Source" for a Combined Work means the 33 | Corresponding Source for the Combined Work, excluding any source code 34 | for portions of the Combined Work that, considered in isolation, are 35 | based on the Application, and not on the Linked Version. 36 | 37 | The "Corresponding Application Code" for a Combined Work means the 38 | object code and/or source code for the Application, including any data 39 | and utility programs needed for reproducing the Combined Work from the 40 | Application, but excluding the System Libraries of the Combined Work. 41 | 42 | 1. Exception to Section 3 of the GNU GPL. 43 | 44 | You may convey a covered work under sections 3 and 4 of this License 45 | without being bound by section 3 of the GNU GPL. 46 | 47 | 2. Conveying Modified Versions. 48 | 49 | If you modify a copy of the Library, and, in your modifications, a 50 | facility refers to a function or data to be supplied by an Application 51 | that uses the facility (other than as an argument passed when the 52 | facility is invoked), then you may convey a copy of the modified 53 | version: 54 | 55 | a) under this License, provided that you make a good faith effort to 56 | ensure that, in the event an Application does not supply the 57 | function or data, the facility still operates, and performs 58 | whatever part of its purpose remains meaningful, or 59 | 60 | b) under the GNU GPL, with none of the additional permissions of 61 | this License applicable to that copy. 62 | 63 | 3. Object Code Incorporating Material from Library Header Files. 64 | 65 | The object code form of an Application may incorporate material from 66 | a header file that is part of the Library. You may convey such object 67 | code under terms of your choice, provided that, if the incorporated 68 | material is not limited to numerical parameters, data structure 69 | layouts and accessors, or small macros, inline functions and templates 70 | (ten or fewer lines in length), you do both of the following: 71 | 72 | a) Give prominent notice with each copy of the object code that the 73 | Library is used in it and that the Library and its use are 74 | covered by this License. 75 | 76 | b) Accompany the object code with a copy of the GNU GPL and this license 77 | document. 78 | 79 | 4. Combined Works. 80 | 81 | You may convey a Combined Work under terms of your choice that, 82 | taken together, effectively do not restrict modification of the 83 | portions of the Library contained in the Combined Work and reverse 84 | engineering for debugging such modifications, if you also do each of 85 | the following: 86 | 87 | a) Give prominent notice with each copy of the Combined Work that 88 | the Library is used in it and that the Library and its use are 89 | covered by this License. 90 | 91 | b) Accompany the Combined Work with a copy of the GNU GPL and this license 92 | document. 93 | 94 | c) For a Combined Work that displays copyright notices during 95 | execution, include the copyright notice for the Library among 96 | these notices, as well as a reference directing the user to the 97 | copies of the GNU GPL and this license document. 98 | 99 | d) Do one of the following: 100 | 101 | 0) Convey the Minimal Corresponding Source under the terms of this 102 | License, and the Corresponding Application Code in a form 103 | suitable for, and under terms that permit, the user to 104 | recombine or relink the Application with a modified version of 105 | the Linked Version to produce a modified Combined Work, in the 106 | manner specified by section 6 of the GNU GPL for conveying 107 | Corresponding Source. 108 | 109 | 1) Use a suitable shared library mechanism for linking with the 110 | Library. A suitable mechanism is one that (a) uses at run time 111 | a copy of the Library already present on the user's computer 112 | system, and (b) will operate properly with a modified version 113 | of the Library that is interface-compatible with the Linked 114 | Version. 115 | 116 | e) Provide Installation Information, but only if you would otherwise 117 | be required to provide such information under section 6 of the 118 | GNU GPL, and only to the extent that such information is 119 | necessary to install and execute a modified version of the 120 | Combined Work produced by recombining or relinking the 121 | Application with a modified version of the Linked Version. (If 122 | you use option 4d0, the Installation Information must accompany 123 | the Minimal Corresponding Source and Corresponding Application 124 | Code. If you use option 4d1, you must provide the Installation 125 | Information in the manner specified by section 6 of the GNU GPL 126 | for conveying Corresponding Source.) 127 | 128 | 5. Combined Libraries. 129 | 130 | You may place library facilities that are a work based on the 131 | Library side by side in a single library together with other library 132 | facilities that are not Applications and are not covered by this 133 | License, and convey such a combined library under terms of your 134 | choice, if you do both of the following: 135 | 136 | a) Accompany the combined library with a copy of the same work based 137 | on the Library, uncombined with any other library facilities, 138 | conveyed under the terms of this License. 139 | 140 | b) Give prominent notice with the combined library that part of it 141 | is a work based on the Library, and explaining where to find the 142 | accompanying uncombined form of the same work. 143 | 144 | 6. Revised Versions of the GNU Lesser General Public License. 145 | 146 | The Free Software Foundation may publish revised and/or new versions 147 | of the GNU Lesser General Public License from time to time. Such new 148 | versions will be similar in spirit to the present version, but may 149 | differ in detail to address new problems or concerns. 150 | 151 | Each version is given a distinguishing version number. If the 152 | Library as you received it specifies that a certain numbered version 153 | of the GNU Lesser General Public License "or any later version" 154 | applies to it, you have the option of following the terms and 155 | conditions either of that published version or of any later version 156 | published by the Free Software Foundation. If the Library as you 157 | received it does not specify a version number of the GNU Lesser 158 | General Public License, you may choose any version of the GNU Lesser 159 | General Public License ever published by the Free Software Foundation. 160 | 161 | If the Library as you received it specifies that a proxy can decide 162 | whether future versions of the GNU Lesser General Public License shall 163 | apply, that proxy's public statement of acceptance of any version is 164 | permanent authorization for you to choose that version for the 165 | Library. 166 | -------------------------------------------------------------------------------- /Sensorium/Sensorium.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 15 | 16 | 17 | 18 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /Sensorium/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/assets/icon.png -------------------------------------------------------------------------------- /Sensorium/assets/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/assets/icon512.png -------------------------------------------------------------------------------- /Sensorium/assets/o3gmpreferences.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "upload_url": "https://o3gm.cs.univie.ac.at/sensorium/", 4 | "upload_username": "o3gm_upload_user", 5 | "upload_password": "o3gm_upload_user_password", 6 | "upload_automatic": "true", 7 | "upload_wifi": "false", 8 | "upload_interval": "3600", 9 | 10 | "xmlrpc_enabled": "true", 11 | "sensor_autostart": "true", 12 | 13 | "at.univie.sensorium.sensors.BatterySensor": "true", 14 | "at.univie.sensorium.sensors.GPSLocationSensor": "true", 15 | "at.univie.sensorium.sensors.DeviceInfoSensor": "true", 16 | "at.univie.sensorium.sensors.NetworkLocationSensor": "true", 17 | "at.univie.sensorium.sensors.RadioSensor": "true", 18 | "at.univie.sensorium.sensors.BluetoothSensor": "false", 19 | "at.univie.sensorium.sensors.WifiConnectionSensor": "false", 20 | "at.univie.sensorium.sensors.WifiSensor": "false", 21 | 22 | 23 | "at.univie.sensorium.sensors.BatterySensor-privacylevel": "0", 24 | "at.univie.sensorium.sensors.BluetoothSensor-privacylevel": "4", 25 | "at.univie.sensorium.sensors.GPSLocationSensor-privacylevel": "0", 26 | "at.univie.sensorium.sensors.DeviceInfoSensor-privacylevel": "0", 27 | "at.univie.sensorium.sensors.NetworkLocationSensor-privacylevel": "0", 28 | "at.univie.sensorium.sensors.RadioSensor-privacylevel": "0", 29 | "at.univie.sensorium.sensors.WifiConnectionSensor-privacylevel": "4", 30 | "at.univie.sensorium.sensors.WifiSensor-privacylevel": "4" 31 | 32 | } 33 | ] 34 | -------------------------------------------------------------------------------- /Sensorium/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | mavenCentral() 4 | } 5 | dependencies { 6 | classpath 'com.android.tools.build:gradle:2.3.0' 7 | } 8 | } 9 | apply plugin: 'com.android.application' 10 | 11 | dependencies { 12 | compile fileTree(dir: 'libs', include: '*.jar') 13 | } 14 | 15 | android { 16 | compileSdkVersion 19 17 | buildToolsVersion "25.0.0" 18 | 19 | sourceSets { 20 | main { 21 | manifest.srcFile 'AndroidManifest.xml' 22 | java.srcDirs = ['src'] 23 | resources.srcDirs = ['src'] 24 | aidl.srcDirs = ['src'] 25 | renderscript.srcDirs = ['src'] 26 | res.srcDirs = ['res'] 27 | assets.srcDirs = ['assets'] 28 | } 29 | 30 | // Move the tests to tests/java, tests/res, etc... 31 | instrumentTest.setRoot('tests') 32 | 33 | // Move the build types to build-types/ 34 | // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ... 35 | // This moves them out of them default location under src//... which would 36 | // conflict with src/ being used by the main source set. 37 | // Adding new build types or product flavors should be accompanied 38 | // by a similar customization. 39 | debug.setRoot('build-types/debug') 40 | release.setRoot('build-types/release') 41 | } 42 | 43 | packagingOptions { 44 | exclude 'META-INF/LICENSE' 45 | exclude 'META-INF/LICENSE.txt' 46 | exclude 'META-INF/NOTICE' 47 | exclude 'META-INF/NOTICE.txt' 48 | exclude 'META-INF/DEPENDENCIES' 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /Sensorium/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | /*@IF_PLAY_SERVICES@ 68 | 69 | 70 | 71 | @ENDIF_PLAY_SERVICES@*/ 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | ]]> 80 | 81 | 82 | 83 | 84 | 85 | //@IF_PLAY_SERVICES@ 86 | 87 | 88 | 89 | //@ENDIF_PLAY_SERVICES@ 90 | 91 | 92 | 93 | ]]> 94 | 95 | 96 | 97 | ]]> 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /Sensorium/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/ic_launcher-web.png -------------------------------------------------------------------------------- /Sensorium/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Sensorium/libs/apache-mime4j-core-0.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/libs/apache-mime4j-core-0.7.2.jar -------------------------------------------------------------------------------- /Sensorium/libs/apache-mime4j-dom-0.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/libs/apache-mime4j-dom-0.7.2.jar -------------------------------------------------------------------------------- /Sensorium/libs/apache-mime4j-storage-0.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/libs/apache-mime4j-storage-0.7.2.jar -------------------------------------------------------------------------------- /Sensorium/libs/commons-codec-1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/libs/commons-codec-1.6.jar -------------------------------------------------------------------------------- /Sensorium/libs/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/libs/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /Sensorium/libs/fluent-hc-4.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/libs/fluent-hc-4.2.3.jar -------------------------------------------------------------------------------- /Sensorium/libs/gson-2.2.4-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/libs/gson-2.2.4-javadoc.jar -------------------------------------------------------------------------------- /Sensorium/libs/gson-2.2.4-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/libs/gson-2.2.4-sources.jar -------------------------------------------------------------------------------- /Sensorium/libs/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/libs/gson-2.2.4.jar -------------------------------------------------------------------------------- /Sensorium/libs/httpclient-4.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/libs/httpclient-4.2.3.jar -------------------------------------------------------------------------------- /Sensorium/libs/httpclient-cache-4.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/libs/httpclient-cache-4.2.3.jar -------------------------------------------------------------------------------- /Sensorium/libs/httpcore-4.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/libs/httpcore-4.2.2.jar -------------------------------------------------------------------------------- /Sensorium/libs/httpmime-4.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/libs/httpmime-4.2.3.jar -------------------------------------------------------------------------------- /Sensorium/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Sensorium/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /Sensorium/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | 16 | -------------------------------------------------------------------------------- /Sensorium/res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /Sensorium/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sensorium/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /Sensorium/res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /Sensorium/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sensorium/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /Sensorium/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmetzger/android-sensorium/4f8a6ce2d31fbb21e45a1cea0c8b6313aaf6aa64/Sensorium/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sensorium/res/layout/activity_sensor_debug.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 13 | 14 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Sensorium/res/layout/seattle_sensors_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 12 | 13 | 14 | 15 | 23 | 24 | -------------------------------------------------------------------------------- /Sensorium/res/layout/sensor_preference_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 20 | 21 | 22 | 28 | 29 | 30 | 31 | 39 | 40 | 41 | 49 | 50 | -------------------------------------------------------------------------------- /Sensorium/res/layout/sensor_view_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 18 | 19 | 26 | 33 | 34 | 35 | 41 | 42 | 50 | 51 | 59 | 60 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /Sensorium/res/layout/upload_dialogpreference.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 17 | 18 | 25 | 26 |