Skip to content

Commit

Permalink
filename bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jemshit committed Sep 14, 2018
1 parent 61c7cbd commit 6f82ff6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ android {
applicationId "com.jemshit.sensorlogger"
minSdkVersion 19
targetSdkVersion 28
versionCode 1
versionName "1.0"
versionCode 3
versionName "1.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

vectorDrawables.useSupportLibrary = true
Expand Down
2 changes: 0 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
xmlns:tools="http://schemas.android.com/tools"
package="com.jemshit.sensorlogger">

<!-- To access Google+ APIs: -->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,9 @@ class SensorLoggerService : Service() {
}
},
// onError
{ stopSelf() },
{
stopSelf()
},
// onComplete
{
launch(BACKGROUND_THREAD_POOL_CONTEXT) {
Expand Down Expand Up @@ -362,7 +364,7 @@ class SensorLoggerService : Service() {
floatListType = object : TypeToken<List<Float>>() {}.type
stringListType = object : TypeToken<List<String>>() {}.type
deviceInfo = DeviceInfoModel()
dateFormatter = SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ", Locale.US)
dateFormatter = SimpleDateFormat("yyyy-MM-dd'T'HH-mm-ss.SSSZ", Locale.US)

Unit
}
Expand Down

0 comments on commit 6f82ff6

Please sign in to comment.