Skip to content

Commit

Permalink
Release 1.1.0 (#19)
Browse files Browse the repository at this point in the history
* Release 1.1.0

* set compileSdkVersion and targetSdkVersion to 32
  • Loading branch information
rahul27 authored Aug 4, 2022
1 parent 5a6dc40 commit f156f75
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 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.0.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.1.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
6 changes: 3 additions & 3 deletions buildSrc/src/main/java/AppConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
*/

object AppConfig {
const val compileSdkVersion = 31
const val compileSdkVersion = 32
const val minSdkVersion = 16
const val targetSdkVersion = 31
const val targetSdkVersion = 32
const val versionCode = 1
const val versionName = "1.0.0"
const val versionName = "1.1.0"
const val buildToolsVersion = "30.0.3"
const val androidTestInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
const val jvmTarget = "11"
Expand Down
8 changes: 4 additions & 4 deletions buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
*/

object Versions {
const val gradleTools = "7.2.1"
const val kotlinVersion = "1.7.0"
const val gradleTools = "7.2.2"
const val kotlinVersion = "1.7.10"
const val junit = "4.13.2"
const val junitAndroidX = "1.1.3"
const val espressoCore = "3.4.0"
const val squareWireRuntime = "4.4.0"
const val constraintLayout = "2.1.4"
const val fragmentKtx = "1.5.0"
const val fragmentKtx = "1.5.1"
const val androidXLegacySupport = "1.0.0"
const val material = "1.6.1"
const val retrofit = "2.9.0"
const val gson = "2.9.0"
const val gson = "2.9.1"
const val mockWebServer = "4.10.0"
const val gradleVersionsPlugin = "0.42.0"
}

0 comments on commit f156f75

Please sign in to comment.