We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40f414a commit a179c7bCopy full SHA for a179c7b
app/src/main/java/com/teamfire/picontroller/StatusService.java
@@ -48,6 +48,11 @@ protected void onHandleIntent(Intent intent) {
48
intService.setAction("com.teamfire.picontroller");
49
intService.putExtra("DATA", "Waiting for vehicle location...");
50
sendBroadcast(intService);
51
+ } else if (message.contains("ARRIVED")) {
52
+ Intent intService = new Intent();
53
+ intService.setAction("com.teamfire.picontroller");
54
+ intService.putExtra("DATA", "Vehicle arrived to target location.");
55
+ sendBroadcast(intService);
56
}
57
58
} catch (Exception e) {
0 commit comments