Skip to content

Commit

Permalink
Release 1.4.0 (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
moonsense-ci authored Oct 27, 2022
1 parent 9c37bd0 commit 21a8b42
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ maven {

## Version History

The latest release of the SDK is `1.3.0`. Details about the current and past releases can be found in the [Releases](https://github.com/moonsense/moonsense-android-sdk/releases) section.
The latest release of the SDK is `1.4.0`. Details about the current and past releases can be found in the [Releases](https://github.com/moonsense/moonsense-android-sdk/releases) section.

## Integration

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/AppConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object AppConfig {
const val minSdkVersion = 16
const val targetSdkVersion = 33
const val versionCode = 1
const val versionName = "1.3.0"
const val versionName = "1.4.0"
const val buildToolsVersion = "30.0.3"
const val androidTestInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
const val jvmTarget = "11"
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ object Versions {
const val junit = "4.13.2"
const val junitAndroidX = "1.1.3"
const val espressoCore = "3.4.0"
const val squareWireRuntime = "4.4.2"
const val squareWireRuntime = "4.4.3"
const val constraintLayout = "2.1.4"
const val fragmentKtx = "1.5.4"
const val androidXLegacySupport = "1.0.0"
const val material = "1.7.0"
const val retrofit = "2.9.0"
const val gson = "2.9.1"
const val gson = "2.10"
const val mockWebServer = "4.10.0"
const val gradleVersionsPlugin = "0.43.0"
const val moonsenseFeatures = "0.1.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import android.util.Log
import io.moonsense.models.v2.Bundle
import io.moonsense.sdk.Moonsense
import io.moonsense.sdk.callback.MoonsenseCoreCallback
import io.moonsense.sdk.config.SDKCoreConfig
import io.moonsense.sdk.config.SDKConfig
import io.moonsense.sdk.config.SensorType
import io.moonsense.sdk.model.Session
import okhttp3.HttpUrl
Expand Down Expand Up @@ -110,7 +110,7 @@ class AcmeSdk(context: Context) {
init {
Moonsense.initialize(
context,
SDKCoreConfig(
SDKConfig(
// generate a bundle every second,
bundleGenerationInterval = ONE_SECOND_IN_MILLIS,
// only record accelerometer data
Expand Down

0 comments on commit 21a8b42

Please sign in to comment.