aboutsummaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorHerbert von Broeuschmeul <Herbert.Broeuschmeul@gmail.com>2011-06-28 23:24:27 +0200
committerHerbert von Broeuschmeul <Herbert.Broeuschmeul@gmail.com>2011-06-28 23:24:27 +0200
commit903e8370e1829fc07b6efaea8286bb77e2f768a2 (patch)
treee3bff5b7c5545122fd2140caa4cccf1e754fd64f /AndroidManifest.xml
parent52ba995dca3ca0ab6c7fb7e2cd7b5beca7463c85 (diff)
downloadBlueGPS-903e8370e1829fc07b6efaea8286bb77e2f768a2.zip
BlueGPS-903e8370e1829fc07b6efaea8286bb77e2f768a2.tar.gz
BlueGPS-903e8370e1829fc07b6efaea8286bb77e2f768a2.tar.bz2
G-Tablet - Internal GPS 1st beta test version
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 04c3986..6f8846b 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -19,11 +19,11 @@
along with BluetoothGPS4Droid. If not, see : http://www.gnu.org/licenses/.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.broeuschmeul.android.gps.bluetooth.provider"
+ package="org.broeuschmeul.android.gps.internal.provider"
android:versionCode="122"
android:versionName="@string/versionName">
<application android:icon="@drawable/ic_launcher_bluegps" android:label="@string/app_name" android:allowClearUserData="true">
- <activity android:name=".BluetoothGpsActivity"
+ <activity android:name="org.broeuschmeul.android.gps.bluetooth.provider.BluetoothGpsActivity"
android:label="@string/app_name"
android:launchMode="singleTask" >
<intent-filter>
@@ -35,21 +35,21 @@
<!--
<service android:name=".BluetoothGpsProviderService" android:enabled="true" android:exported="true" android:process=":BluetoothGpsProviderService" >
-->
- <service android:name=".BluetoothGpsProviderService" android:enabled="true" android:exported="true" >
+ <service android:name="org.broeuschmeul.android.gps.bluetooth.provider.BluetoothGpsProviderService" android:enabled="true" android:exported="true" >
<intent-filter>
- <action android:name="org.broeuschmeul.android.gps.bluetooth.tracker.nmea.intent.action.START_TRACK_RECORDING">
+ <action android:name="org.broeuschmeul.android.gps.internal.tracker.nmea.intent.action.START_TRACK_RECORDING">
<category android:name="android.intent.category.DEFAULT" />
</action>
- <action android:name="org.broeuschmeul.android.gps.bluetooth.tracker.nmea.intent.action.STOP_TRACK_RECORDING">
+ <action android:name="org.broeuschmeul.android.gps.internal.tracker.nmea.intent.action.STOP_TRACK_RECORDING">
<category android:name="android.intent.category.DEFAULT" />
</action>
- <action android:name="org.broeuschmeul.android.gps.bluetooth.provider.nmea.intent.action.START_GPS_PROVIDER">
+ <action android:name="org.broeuschmeul.android.gps.internal.provider.nmea.intent.action.START_GPS_PROVIDER">
<category android:name="android.intent.category.DEFAULT" />
</action>
- <action android:name="org.broeuschmeul.android.gps.bluetooth.provider.nmea.intent.action.STOP_GPS_PROVIDER">
+ <action android:name="org.broeuschmeul.android.gps.internal.provider.nmea.intent.action.STOP_GPS_PROVIDER">
<category android:name="android.intent.category.DEFAULT" />
</action>
- <action android:name="org.broeuschmeul.android.gps.bluetooth.provider.nmea.intent.action.CONFIGURE_SIRF_GPS">
+ <action android:name="org.broeuschmeul.android.gps.internal.provider.nmea.intent.action.CONFIGURE_SIRF_GPS">
<category android:name="android.intent.category.DEFAULT" />
</action>
</intent-filter>