Skip to content

Commit 8f0eb18

Browse files
committed
Merge pull request #21 from xLaMbChOpSx/master
Service, Boot Completed Receiver, TableView & Femtocatcher Additions
2 parents 049fc9e + 8a04096 commit 8f0eb18

File tree

9 files changed

+1239
-642
lines changed

9 files changed

+1239
-642
lines changed

AndroidManifest.xml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
1616
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/>
1717
<uses-permission android:name="android.permission.INTERNET"/>
18-
<uses-permission android:name="android.permission.ACCESS_SUPERUSER"/>
1918

2019
<application
2120
android:icon="@drawable/icon"
@@ -26,7 +25,7 @@
2625

2726
<activity
2827
android:name=".AIMSICD"
29-
android:label="@string/app_name"
28+
android:label="@string/app_name_short"
3029
android:process="com.android.phone"
3130
android:screenOrientation="portrait"
3231
android:exported="true">
@@ -37,6 +36,21 @@
3736
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE"/>
3837
</intent-filter>
3938
</activity>
39+
40+
<service
41+
android:name=".service.AimsicdService"
42+
android:process="com.android.phone"
43+
android:enabled="true"
44+
android:exported="false">
45+
</service>
46+
47+
<receiver android:name=".receiver.BootCompletedReceiver">
48+
<intent-filter>
49+
<action android:name="android.intent.action.BOOT_COMPLETED"/>
50+
<category android:name="android.intent.category.DEFAULT"/>
51+
</intent-filter>
52+
</receiver>
53+
4054
<activity
4155
android:name=".MapViewer"
4256
android:label="@string/app_name"

0 commit comments

Comments
 (0)