aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.classpath2
-rw-r--r--AndroidManifest.xml43
-rw-r--r--project.properties (renamed from default.properties)8
-rw-r--r--res/layout/about.xml6
-rw-r--r--res/values-en/strings.xml4
-rw-r--r--res/values-es/strings.xml16
-rw-r--r--res/values-fr/strings.xml16
-rw-r--r--res/values-ru/strings.xml16
-rw-r--r--res/values/about_style.xml4
-rw-r--r--res/values/constants.xml4
-rw-r--r--res/values/strings.xml16
-rw-r--r--res/xml/pref.xml4
-rw-r--r--src/org/broeuschmeul/android/gps/bluetooth/provider/BlueetoothGpsManager.java4
-rw-r--r--src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsActivity.java4
-rw-r--r--src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsProviderService.java4
-rw-r--r--src/org/broeuschmeul/android/gps/nmea/util/NmeaParser.java12
-rw-r--r--src/org/broeuschmeul/android/gps/sirf/util/SirfUtils.java4
17 files changed, 85 insertions, 82 deletions
diff --git a/.classpath b/.classpath
index 8c3593d..9f8bd3e 100644
--- a/.classpath
+++ b/.classpath
@@ -4,5 +4,5 @@
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="lib" path="lib/backport-android-bluetooth2.jar"/>
- <classpathentry kind="output" path="bin"/>
+ <classpathentry kind="output" path="bin/classes"/>
</classpath>
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index f37b8d4..0b88c69 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
This file is part of BluetoothGPS4Droid.
@@ -22,6 +22,25 @@
package="org.broeuschmeul.android.gps.bluetooth.provider"
android:versionCode="123"
android:versionName="@string/versionName">
+
+ <uses-sdk android:targetSdkVersion="4" android:minSdkVersion="3" />
+
+ <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+ <uses-permission android:name="android.permission.BLUETOOTH" />
+ <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
+ <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
+
+ <!-- begin backport.android.bluetooth -->
+
+ <uses-permission android:name="android.permission.BLUETOOTH"></uses-permission>
+ <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"></uses-permission>
+
+ <!-- ${your package name}.PERMISSION -->
+ <uses-permission android:name="org.broeuschmeul.android.gps.bluetooth.provider.PERMISSION"></uses-permission>
+
+ <!-- end backport.android.bluetooth -->
+
<application android:icon="@drawable/ic_launcher_bluegps" android:label="@string/app_name" android:allowClearUserData="true">
<activity android:name=".BluetoothGpsActivity"
android:label="@string/app_name"
@@ -106,23 +125,5 @@
<!-- end backport.android.bluetooth -->
- </application>
-
- <!-- begin backport.android.bluetooth -->
-
- <uses-permission android:name="android.permission.BLUETOOTH"></uses-permission>
- <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"></uses-permission>
-
- <!-- ${your package name}.PERMISSION -->
- <uses-permission android:name="org.broeuschmeul.android.gps.bluetooth.provider.PERMISSION"></uses-permission>
-
- <!-- begin backport.android.bluetooth -->
-
-
- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
- <uses-permission android:name="android.permission.BLUETOOTH" />
- <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
- <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
-
+ </application>
</manifest>
diff --git a/default.properties b/project.properties
index 4513a1e..c957743 100644
--- a/default.properties
+++ b/project.properties
@@ -1,11 +1,11 @@
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
-#
+#
# This file must be checked in Version Control Systems.
-#
+#
# To customize properties used by the Ant build system use,
-# "build.properties", and override values to adapt the script to your
+# "ant.properties", and override values to adapt the script to your
# project structure.
# Project target.
-target=android-3
+target=android-4
diff --git a/res/layout/about.xml b/res/layout/about.xml
index 614d7ed..92245f4 100644
--- a/res/layout/about.xml
+++ b/res/layout/about.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
This file is part of BluetoothGPS4Droid.
@@ -83,4 +83,4 @@
android:text="@string/about_bluetooth_sources"
/>
</LinearLayout>
-</ScrollView> \ No newline at end of file
+</ScrollView>
diff --git a/res/values-en/strings.xml b/res/values-en/strings.xml
index c653854..d0295e7 100644
--- a/res/values-en/strings.xml
+++ b/res/values-en/strings.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
This file is part of BluetoothGPS4Droid.
diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml
index 734cf08..5dfe15c 100644
--- a/res/values-es/strings.xml
+++ b/res/values-es/strings.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
This file is part of BluetoothGPS4Droid.
@@ -89,9 +89,9 @@
<string name="pref_enable_static_navigation_summary_off">Navegación estática desactivado</string>
<string name="pref_enable_static_navigation_summary_on">Navegación estática activado</string>
- <string name="msg_gps_provider_started">GPS Bluetooth... arrancado</string>
- <string name="msg_gps_provider_stopped">GPS Bluetooth... parado</string>
- <string name="msg_gps_provider_already_started">GPS Bluetooth... ya está arrancado</string>
+ <string name="msg_gps_provider_started">GPS Bluetooth… arrancado</string>
+ <string name="msg_gps_provider_stopped">GPS Bluetooth… parado</string>
+ <string name="msg_gps_provider_already_started">GPS Bluetooth… ya está arrancado</string>
<string name="msg_gps_provider_stopped_by_problem">"¡Vaya, no puedo arrancar! %s"</string>
<string name="msg_two_many_connection_problems">Problemas de conexión</string>
<string name="msg_gps_provider_disabled">El GPS está desactivado</string>
@@ -99,9 +99,9 @@
<string name="msg_bluetooth_disabled">Bluetooth desactivado</string>
<string name="msg_mock_location_disabled">Ubicaciones ficticias (Mock) no activadas</string>
<string name="msg_bluetooth_gps_unavaible">Imposible conectarse al GPS</string>
- <string name="msg_nmea_recording_started">Registro de trazas NMEA... iniciado</string>
- <string name="msg_nmea_recording_stopped">Registro de trazas NMEA... parado</string>
- <string name="msg_nmea_recording_already_started">El registro de trazas GPS... ya está iniciado</string>
+ <string name="msg_nmea_recording_started">Registro de trazas NMEA… iniciado</string>
+ <string name="msg_nmea_recording_stopped">Registro de trazas NMEA… parado</string>
+ <string name="msg_nmea_recording_already_started">El registro de trazas GPS… ya está iniciado</string>
<string name="foreground_service_started_notification_title">BlueGps</string>
<string name="foreground_gps_provider_started_notification">GPS Bluetooth arrancado.</string>
<string name="foreground_nmea_recording_started_notification">Registro de trazas NMEA en curso.</string>
diff --git a/res/values-fr/strings.xml b/res/values-fr/strings.xml
index 30f3b5c..93681bf 100644
--- a/res/values-fr/strings.xml
+++ b/res/values-fr/strings.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
This file is part of BluetoothGPS4Droid.
@@ -86,9 +86,9 @@
<string name="pref_enable_static_navigation_summary_off">Navigation Statique désactivée</string>
<string name="pref_enable_static_navigation_summary_on">Navigation Statique activée</string>
- <string name="msg_gps_provider_started">GPS Bluetooth... démarré</string>
- <string name="msg_gps_provider_stopped">GPS Bluetooth... arrêté</string>
- <string name="msg_gps_provider_already_started">GPS Bluetooth... déjà démarré</string>
+ <string name="msg_gps_provider_started">GPS Bluetooth… démarré</string>
+ <string name="msg_gps_provider_stopped">GPS Bluetooth… arrêté</string>
+ <string name="msg_gps_provider_already_started">GPS Bluetooth… déjà démarré</string>
<string name="msg_gps_provider_stopped_by_problem">"Oups ! %s"</string>
<string name="msg_two_many_connection_problems">Problèmes de connexion</string>
<string name="msg_gps_provider_disabled">Le GPS est désactivé</string>
@@ -96,9 +96,9 @@
<string name="msg_bluetooth_disabled">Bluetooth désactivé</string>
<string name="msg_mock_location_disabled">Positions fictives non autorisées</string>
<string name="msg_bluetooth_gps_unavaible">Impossible de se connecter au GPS</string>
- <string name="msg_nmea_recording_started">Enregistrement des traces NMEA... démarré</string>
- <string name="msg_nmea_recording_stopped">Enregistrement des traces NMEA... arrêté</string>
- <string name="msg_nmea_recording_already_started">Enregistrement des traces GPS... déjà démarré</string>
+ <string name="msg_nmea_recording_started">Enregistrement des traces NMEA… démarré</string>
+ <string name="msg_nmea_recording_stopped">Enregistrement des traces NMEA… arrêté</string>
+ <string name="msg_nmea_recording_already_started">Enregistrement des traces GPS… déjà démarré</string>
<string name="foreground_service_started_notification_title">BlueGps</string>
<string name="foreground_gps_provider_started_notification">GPS Bluetooth démarré.</string>
<string name="foreground_nmea_recording_started_notification">Enregistrement des données NMEA en cours.</string>
diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml
index 5240b3f..4d4c893 100644
--- a/res/values-ru/strings.xml
+++ b/res/values-ru/strings.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
This file is part of BluetoothGPS4Droid.
@@ -83,9 +83,9 @@
<string name="pref_enable_static_navigation_title">Статическая навигация</string>
<string name="pref_enable_static_navigation_summary_off">Статическая навигация запрещена</string>
<string name="pref_enable_static_navigation_summary_on">Static Navigation разрешена</string>
- <string name="msg_gps_provider_started">Bluetooth GPS... запущен</string>
- <string name="msg_gps_provider_stopped">Bluetooth GPS... остановлен</string>
- <string name="msg_gps_provider_already_started">Bluetooth GPS... уже запущен</string>
+ <string name="msg_gps_provider_started">Bluetooth GPS… запущен</string>
+ <string name="msg_gps_provider_stopped">Bluetooth GPS… остановлен</string>
+ <string name="msg_gps_provider_already_started">Bluetooth GPS… уже запущен</string>
<string name="msg_gps_provider_stopped_by_problem">"Невозможно запустить: %s"</string>
<string name="msg_two_many_connection_problems">Сликом много ошибок соединения</string>
<string name="msg_gps_provider_disabled">GPS выключен</string>
@@ -93,9 +93,9 @@
<string name="msg_bluetooth_disabled">Bluetooth выключен</string>
<string name="msg_mock_location_disabled">Отключен Mock locations </string>
<string name="msg_bluetooth_gps_unavaible">Невозможно подключиться к bluetooth GPS</string>
- <string name="msg_nmea_recording_started">Запись GPS NMEA ... запущена</string>
- <string name="msg_nmea_recording_stopped">Запись GPS NMEA ... остановлена</string>
- <string name="msg_nmea_recording_already_started">Запись треков GPS ... уже запущена</string>
+ <string name="msg_nmea_recording_started">Запись GPS NMEA … запущена</string>
+ <string name="msg_nmea_recording_stopped">Запись GPS NMEA … остановлена</string>
+ <string name="msg_nmea_recording_already_started">Запись треков GPS … уже запущена</string>
<string name="foreground_service_started_notification_title">BlueGps</string>
<string name="foreground_gps_provider_started_notification">Служба BlueGps запущена</string>
<string name="foreground_nmea_recording_started_notification">Служба записи BlueGps NMEA запущена</string>
diff --git a/res/values/about_style.xml b/res/values/about_style.xml
index ac2d23c..7b312ae 100644
--- a/res/values/about_style.xml
+++ b/res/values/about_style.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
This file is part of BluetoothGPS4Droid.
diff --git a/res/values/constants.xml b/res/values/constants.xml
index 0309c50..331eef3 100644
--- a/res/values/constants.xml
+++ b/res/values/constants.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
This file is part of BluetoothGPS4Droid.
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 35494fd..1889aec 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
This file is part of BluetoothGPS4Droid.
@@ -86,9 +86,9 @@
<string name="pref_enable_static_navigation_summary_off">Static Navigation disabled</string>
<string name="pref_enable_static_navigation_summary_on">Static Navigation enabled</string>
- <string name="msg_gps_provider_started">Bluetooth GPS... started</string>
- <string name="msg_gps_provider_stopped">Bluetooth GPS... stopped</string>
- <string name="msg_gps_provider_already_started">Bluetooth GPS... is already on</string>
+ <string name="msg_gps_provider_started">Bluetooth GPS… started</string>
+ <string name="msg_gps_provider_stopped">Bluetooth GPS… stopped</string>
+ <string name="msg_gps_provider_already_started">Bluetooth GPS… is already on</string>
<string name="msg_gps_provider_stopped_by_problem">"Cannot start: %s"</string>
<string name="msg_two_many_connection_problems">Too many connection problems</string>
<string name="msg_gps_provider_disabled">GPS is disabled</string>
@@ -96,9 +96,9 @@
<string name="msg_bluetooth_disabled">Bluetooth is disabled</string>
<string name="msg_mock_location_disabled">Mock locations disabled</string>
<string name="msg_bluetooth_gps_unavaible">Cannot connect to bluetooth GPS</string>
- <string name="msg_nmea_recording_started">GPS NMEA recording... started</string>
- <string name="msg_nmea_recording_stopped">GPS NMEA recording... stopped</string>
- <string name="msg_nmea_recording_already_started">GPS track recording... is already on</string>
+ <string name="msg_nmea_recording_started">GPS NMEA recording… started</string>
+ <string name="msg_nmea_recording_stopped">GPS NMEA recording… stopped</string>
+ <string name="msg_nmea_recording_already_started">GPS track recording… is already on</string>
<string name="foreground_service_started_notification_title">BlueGps</string>
<string name="foreground_gps_provider_started_notification">BlueGps service started</string>
<string name="foreground_nmea_recording_started_notification">BlueGps NMEA recording service started</string>
diff --git a/res/xml/pref.xml b/res/xml/pref.xml
index 5227cf8..9c869bf 100644
--- a/res/xml/pref.xml
+++ b/res/xml/pref.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
This file is part of BluetoothGPS4Droid.
diff --git a/src/org/broeuschmeul/android/gps/bluetooth/provider/BlueetoothGpsManager.java b/src/org/broeuschmeul/android/gps/bluetooth/provider/BlueetoothGpsManager.java
index d8cf9a0..39e3514 100644
--- a/src/org/broeuschmeul/android/gps/bluetooth/provider/BlueetoothGpsManager.java
+++ b/src/org/broeuschmeul/android/gps/bluetooth/provider/BlueetoothGpsManager.java
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- * Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ * Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ * Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
*
* This file is part of BluetoothGPS4Droid.
*
diff --git a/src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsActivity.java b/src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsActivity.java
index fb8af27..ca5ef2b 100644
--- a/src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsActivity.java
+++ b/src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsActivity.java
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- * Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ * Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ * Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
*
* This file is part of BluetoothGPS4Droid.
*
diff --git a/src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsProviderService.java b/src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsProviderService.java
index 3570053..6ad573d 100644
--- a/src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsProviderService.java
+++ b/src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsProviderService.java
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- * Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ * Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ * Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
*
* This file is part of BluetoothGPS4Droid.
*
diff --git a/src/org/broeuschmeul/android/gps/nmea/util/NmeaParser.java b/src/org/broeuschmeul/android/gps/nmea/util/NmeaParser.java
index 3b98530..7c361a9 100644
--- a/src/org/broeuschmeul/android/gps/nmea/util/NmeaParser.java
+++ b/src/org/broeuschmeul/android/gps/nmea/util/NmeaParser.java
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- * Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ * Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ * Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
*
* This file is part of BluetoothGPS4Droid.
*
@@ -22,6 +22,7 @@ package org.broeuschmeul.android.gps.nmea.util;
import java.text.ParseException;
import java.text.SimpleDateFormat;
+import java.util.Locale;
import java.util.TimeZone;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
@@ -527,16 +528,17 @@ public class NmeaParser {
}
public long parseNmeaTime(String time){
long timestamp = 0;
- SimpleDateFormat fmt = new SimpleDateFormat("HHmmss.S");
+ SimpleDateFormat fmt = new SimpleDateFormat("HHmmss.SSS");
fmt.setTimeZone(TimeZone.getTimeZone("GMT"));
try {
if (time != null && time != null){
long now = System.currentTimeMillis();
long today = now - (now %86400000L);
long temp1;
- temp1 = fmt.parse(time).getTime();
+ // sometime we don't have millisecond in the time string, so we have to reformat it
+ temp1 = fmt.parse(String.format((Locale)null,"%010.3f", Double.parseDouble(time))).getTime();
long temp2 = today+temp1;
- //
+ // if we're around midnight we could have a problem...
if (temp2 - now > 43200000L) {
timestamp = temp2 - 86400000L;
} else if (now - temp2 > 43200000L){
diff --git a/src/org/broeuschmeul/android/gps/sirf/util/SirfUtils.java b/src/org/broeuschmeul/android/gps/sirf/util/SirfUtils.java
index 65e6b44..15bc829 100644
--- a/src/org/broeuschmeul/android/gps/sirf/util/SirfUtils.java
+++ b/src/org/broeuschmeul/android/gps/sirf/util/SirfUtils.java
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2010, 2011 Herbert von Broeuschmeul
- * Copyright (C) 2010, 2011 BluetoothGPS4Droid Project
+ * Copyright (C) 2010, 2011, 2012 Herbert von Broeuschmeul
+ * Copyright (C) 2010, 2011, 2012 BluetoothGPS4Droid Project
*
* This file is part of BluetoothGPS4Droid.
*