Skip to content

Commit

Permalink
increased version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dewall committed Jul 15, 2020
1 parent 16862f7 commit 0e93f2b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ ext {
compileSdkVersion = 29
targetSdkVersion = 29
buildToolsVersion = '29.0.2'
versionCode = 48
versionName = "1.1.8"
versionCode = 49
versionName = "1.1.9"

javaCompileVersion = JavaVersion.VERSION_1_8

Expand Down
4 changes: 2 additions & 2 deletions org.envirocar.app/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
xmlns:tools="http://schemas.android.com/tools"
package="org.envirocar.app"
android:installLocation="internalOnly"
android:versionCode="48"
android:versionName="1.1.8">
android:versionCode="49"
android:versionName="1.1.9">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public Completable startLocating() {
});
}
} catch (Exception e) {
LOGGER.error("Error while initiating NMEA Listener");
LOGGER.error("Error while initiating NMEA Listener", e);
emitter.setCancellable(() -> {
LOGGER.info("stopLocating()");
mLocationManager.removeUpdates(mLocationListener);
Expand Down

0 comments on commit 0e93f2b

Please sign in to comment.