Skip to content

Commit

Permalink
Merge pull request #21 from xLaMbChOpSx/master
Browse files Browse the repository at this point in the history
Service, Boot Completed Receiver, TableView & Femtocatcher Additions
  • Loading branch information
xLaMbChOpSx committed Apr 8, 2014
2 parents 4dabf00 + 23a56c6 commit fe70392
Show file tree
Hide file tree
Showing 9 changed files with 1,239 additions and 642 deletions.
18 changes: 16 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_SUPERUSER"/>

<application
android:icon="@drawable/icon"
Expand All @@ -26,7 +25,7 @@

<activity
android:name=".AIMSICD"
android:label="@string/app_name"
android:label="@string/app_name_short"
android:process="com.android.phone"
android:screenOrientation="portrait"
android:exported="true">
Expand All @@ -37,6 +36,21 @@
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE"/>
</intent-filter>
</activity>

<service
android:name=".service.AimsicdService"
android:process="com.android.phone"
android:enabled="true"
android:exported="false">
</service>

<receiver android:name=".receiver.BootCompletedReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</receiver>

<activity
android:name=".MapViewer"
android:label="@string/app_name"
Expand Down
Loading

0 comments on commit fe70392

Please sign in to comment.