Skip to content

Commit

Permalink
Bump to v4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
peplin committed Jun 19, 2013
1 parent 92fedf7 commit 364da6e
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.mkd
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# OpenXC Android Library Changelog

## v4.0.2

* Fix build with Eclipse and the latest version of Maven plugins.
* Increase logging verbosity for debugging VehicleDataSinks.
* Split trips in trace file recorder based on data received, not just time.
* Protect against a race condition in the Bluetooth and Network interfaces.

## v4.0.1

* Fix a regression for Android 2.3 and 3.0/3.1 devices. Library and Enabler now
Expand Down
3 changes: 2 additions & 1 deletion enabler/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.openxc.enabler" android:versionCode="1" android:versionName="1.0-SNAPSHOT">
package="com.openxc.enabler" android:versionCode="13"
android:versionName="4.0.2">

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Expand Down
2 changes: 1 addition & 1 deletion enabler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.openxcplatform</groupId>
<artifactId>openxc-parent</artifactId>
<version>4.0.1</version>
<version>4.0.2</version>
</parent>

<artifactId>openxc-enabler</artifactId>
Expand Down
3 changes: 2 additions & 1 deletion examples/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.openxc.examples" android:versionCode="1" android:versionName="1.0-SNAPSHOT">
package="com.openxc.examples" android:versionCode="13"
android:versionName="4.0.2">

<supports-screens android:largeScreens="true" android:xlargeScreens="true"
android:anyDensity="true" />
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.openxcplatform</groupId>
<artifactId>openxc-parent</artifactId>
<version>4.0.1</version>
<version>4.0.2</version>
</parent>

<artifactId>openxc-examples</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openxc-it/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.openxc" android:versionCode="1" android:versionName="1.0-SNAPSHOT">
package="com.openxc" android:versionCode="13" android:versionName="4.0.2">

<supports-screens android:largeScreens="true" android:xlargeScreens="true"
android:anyDensity="true" />
Expand Down
2 changes: 1 addition & 1 deletion openxc-it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.openxcplatform</groupId>
<artifactId>openxc-parent</artifactId>
<version>4.0.1</version>
<version>4.0.2</version>
</parent>

<artifactId>openxc-it</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openxc/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.openxc" android:versionCode="1" android:versionName="1.0">
package="com.openxc" android:versionCode="13" android:versionName="4.0.2">
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<service android:name="com.openxc.VehicleManager"/>
Expand Down
2 changes: 1 addition & 1 deletion openxc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.openxcplatform</groupId>
<artifactId>openxc-parent</artifactId>
<version>4.0.1</version>
<version>4.0.2</version>
</parent>

<artifactId>openxc</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.openxcplatform</groupId>
<artifactId>openxc-parent</artifactId>
<version>4.0.1</version>
<version>4.0.2</version>
<packaging>pom</packaging>
<name>OpenXC - Parent</name>
<description>Android library and example applications for the OpenXC Platform</description>
Expand Down

0 comments on commit 364da6e

Please sign in to comment.