Skip to content

Commit

Permalink
MP-1543 Update native Android SDK (#103)
Browse files Browse the repository at this point in the history
* Upgrade Sailthru Android SDK to 19.1.0
* Upgrade target Android API version to 34
* Upgrade required Java and Kotlin versions
  • Loading branch information
jethrocarr committed Dec 15, 2023
1 parent 6e62728 commit c2335a4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
10 changes: 5 additions & 5 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

buildscript {
ext.kotlin_version = '1.6.21'
ext.kotlin_version = '1.8.22'
repositories {
mavenCentral()
google()
Expand All @@ -16,12 +16,12 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
compileSdk 32
buildToolsVersion '32.0.0'
compileSdk 34
buildToolsVersion '34.0.0'

defaultConfig {
minSdk 21
targetSdk 32
targetSdk 34
}
testOptions {
unitTests {
Expand Down Expand Up @@ -53,7 +53,7 @@ dependencies {
exclude group:'com.facebook.fbjni'
exclude group:'com.facebook.yoga'
}
implementation 'com.sailthru.mobile.sdk:sailthru-mobile:17.0.3'
implementation 'com.sailthru.mobile.sdk:sailthru-mobile:19.1.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlin_version"

testImplementation 'junit:junit:4.13.2'
Expand Down
3 changes: 3 additions & 0 deletions bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ project_type: ios
workflows:
primary:
steps:
- set-java-version@1:
inputs:
- set_java_version: '17'
- activate-ssh-key:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone: {}
Expand Down

0 comments on commit c2335a4

Please sign in to comment.