Skip to content

Commit

Permalink
[CI] Release 1.6.0 (#30)
Browse files Browse the repository at this point in the history
* Release 1.6.0

* set features to 0.1.1

* reset the feature changes

* revert README

---------

Co-authored-by: rahul27 <[email protected]>
  • Loading branch information
moonsense-ci and rahul27 authored Jan 30, 2023
1 parent c874573 commit 19f595b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 14 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.5.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.6.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.5.0"
const val versionName = "1.6.0"
const val buildToolsVersion = "30.0.3"
const val androidTestInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
const val jvmTarget = "11"
Expand Down
13 changes: 6 additions & 7 deletions buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,16 @@
*/

object Versions {
const val gradleTools = "7.3.1"
const val kotlinVersion = "1.7.20"
const val gradleTools = "7.4.0"
const val kotlinVersion = "1.8.0"
const val junit = "4.13.2"
const val junitAndroidX = "1.1.4"
const val squareWireRuntime = "4.4.3"
const val junitAndroidX = "1.1.5"
const val constraintLayout = "2.1.4"
const val fragmentKtx = "1.5.4"
const val fragmentKtx = "1.5.5"
const val androidXLegacySupport = "1.0.0"
const val material = "1.7.0"
const val material = "1.8.0"
const val retrofit = "2.9.0"
const val gson = "2.10"
const val gson = "2.10.1"
const val mockWebServer = "4.10.0"
const val gradleVersionsPlugin = "0.44.0"
const val moonsenseFeatures = "0.1.1"
Expand Down
1 change: 0 additions & 1 deletion sample-core-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ android {

dependencies {
implementation("io.moonsense:android-core-sdk:${AppConfig.versionName}")
implementation("com.squareup.wire:wire-runtime:${Versions.squareWireRuntime}")
implementation("com.squareup.retrofit2:retrofit:${Versions.retrofit}")
implementation("com.squareup.retrofit2:converter-gson:${Versions.retrofit}")
implementation("com.google.code.gson:gson:${Versions.gson}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import android.content.Context
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.callback.MoonsenseCallback
import io.moonsense.sdk.config.SDKConfig
import io.moonsense.sdk.config.SensorType
import io.moonsense.sdk.model.Session
Expand All @@ -32,7 +32,7 @@ import java.util.UUID
* a corresponding Acme Session.
*
* This example also demonstrates the handling of
* the Bundle data received via the [MoonsenseCoreCallback].
* the Bundle data received via the [MoonsenseCallback].
*/
class AcmeSdk(context: Context) {

Expand All @@ -53,7 +53,7 @@ class AcmeSdk(context: Context) {
.addConverterFactory(GsonConverterFactory.create())
.build().create(AcmeService::class.java)

private val moonsenseCoreCallback = object : MoonsenseCoreCallback {
private val moonsenseCallback = object : MoonsenseCallback {

override fun onBundleCreated(session: Session, bundle: Bundle) {
// retrieve the Acme Session
Expand Down Expand Up @@ -116,7 +116,7 @@ class AcmeSdk(context: Context) {
// only record accelerometer data
sensorTypes = listOf(SensorType.ACCELEROMETER)
),
moonsenseCoreCallback
moonsenseCallback
)
}

Expand Down

0 comments on commit 19f595b

Please sign in to comment.