lib/android: intro support for launching service at device boot
authorAlexis Laferrière <alexis.laf@xymus.net>
Fri, 19 Feb 2016 23:39:40 +0000 (18:39 -0500)
committerAlexis Laferrière <alexis.laf@xymus.net>
Sun, 13 Mar 2016 14:23:24 +0000 (10:23 -0400)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

lib/android/service/NitBroadcastReceiver.java [new file with mode: 0644]
lib/android/service/at_boot.nit [new file with mode: 0644]

diff --git a/lib/android/service/NitBroadcastReceiver.java b/lib/android/service/NitBroadcastReceiver.java
new file mode 100644 (file)
index 0000000..bd358cf
--- /dev/null
@@ -0,0 +1,29 @@
+/* This file is part of NIT ( http://www.nitlanguage.org ).
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package nit.app;
+
+import android.content.BroadcastReceiver;
+import android.content.Context;
+import android.content.Intent;
+
+// BroadcastReceiver launching NitService
+public class NitBroadcastReceiver extends BroadcastReceiver {
+
+       @Override
+       public void onReceive(Context context, Intent intent) {
+               context.startService(new Intent(context, NitService.class));
+       }
+}
diff --git a/lib/android/service/at_boot.nit b/lib/android/service/at_boot.nit
new file mode 100644 (file)
index 0000000..a2c1868
--- /dev/null
@@ -0,0 +1,30 @@
+# This file is part of NIT ( http://www.nitlanguage.org ).
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Import this module to launch `Service` at device boot
+module at_boot is
+       extra_java_files "NitBroadcastReceiver.java"
+       android_manifest """
+<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
+"""
+       android_manifest_application """
+<receiver android:name="nit.app.NitBroadcastReceiver">
+       <intent-filter>
+               <action android:name="android.intent.action.BOOT_COMPLETED" />
+       </intent-filter>
+</receiver>
+"""
+end
+
+import service