summaryrefslogtreecommitdiff
path: root/altosdroid/AndroidManifest.xml
diff options
context:
space:
mode:
authorMike Beattie <mike@ethernal.org>2012-02-23 16:41:26 +1300
committerKeith Packard <keithp@keithp.com>2012-06-02 19:39:55 -0700
commit392c878000e9909d37dae6342df3d6cb8f217a1b (patch)
tree3dc5e3e7804040136eafcec778e1a700d8b67954 /altosdroid/AndroidManifest.xml
parent69e6df07976a56b49e07c242cd6e5b2cbd2a578d (diff)
Add TelemetryService.java and associated files
Signed-off-by: Mike Beattie <mike@ethernal.org>
Diffstat (limited to 'altosdroid/AndroidManifest.xml')
-rw-r--r--altosdroid/AndroidManifest.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/altosdroid/AndroidManifest.xml b/altosdroid/AndroidManifest.xml
index b72f0384..1d55737d 100644
--- a/altosdroid/AndroidManifest.xml
+++ b/altosdroid/AndroidManifest.xml
@@ -34,5 +34,32 @@
android:label="@string/select_device"
android:theme="@android:style/Theme.Dialog"
android:configChanges="orientation|keyboardHidden" />
+
+
+ <!-- Service Samples -->
+
+ <service android:name=".TelemetryService" />
+
+ <activity android:name=".TelemetryServiceActivities$Controller"
+ android:label="@string/activity_telemetry_service_controller"
+ android:launchMode="singleTop">
+<!--
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.SAMPLE_CODE" />
+ </intent-filter>
+-->
+ </activity>
+
+ <activity android:name="TelemetryServiceActivities$Binding"
+ android:label="@string/activity_telemetry_service_binding">
+<!--
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.SAMPLE_CODE" />
+ </intent-filter>
+-->
+ </activity>
+
</application>
</manifest>