summaryrefslogtreecommitdiff
path: root/altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java
diff options
context:
space:
mode:
authorMike Beattie <mike@ethernal.org>2012-08-26 14:48:48 +1200
committerMike Beattie <mike@ethernal.org>2012-08-26 14:48:48 +1200
commit372840b4ebfd3da3cd713b6bc6a8ffc8cd6b6b8c (patch)
treed107e42146ad5ccb8b0cdbee3a6c22f0a8bf5573 /altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java
parent24503eb330bf887f5c76afe2aaa9c9f2ce177460 (diff)
altosdroid: remove TelemetryService activities
service start/stop will be handled by AltosDroid/itself now. Signed-off-by: Mike Beattie <mike@ethernal.org>
Diffstat (limited to 'altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java')
-rw-r--r--altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java b/altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java
index a1c5fede..95b655c2 100644
--- a/altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java
+++ b/altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java
@@ -67,7 +67,7 @@ public class TelemetryService extends Service {
// The PendingIntent to launch our activity if the user selects this notification
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
- new Intent(this, TelemetryServiceActivities.Controller.class), 0);
+ new Intent(this, AltosDroid.class), 0);
// Set the info for the views that show in the notification panel.
notification.setLatestEventInfo(this, getText(R.string.telemetry_service_label), text, contentIntent);