Skip to content

Commit

Permalink
Merge pull request #507 from kennethshackleton/update-sample-android-cli
Browse files Browse the repository at this point in the history
Update AndroidCLI project dependencies.
  • Loading branch information
kennethshackleton authored Feb 5, 2024
2 parents 5a688b2 + 35a1095 commit 1a57add
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions AndroidCLI/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ android {
defaultConfig {
applicationId = "com.bloomberg.selekt.cli"
minSdk = 21
targetSdk = 33
targetSdk = 34
versionCode = 1
versionName = "0.1"
ndk {
Expand All @@ -45,7 +45,7 @@ android {
}

buildTypes {
getByName("release") {
release {
isMinifyEnabled = false
}
}
Expand All @@ -63,4 +63,5 @@ dependencies {
implementation(androidX("core", "ktx", version = "1.0.2"))
implementation(androidX("paging", "runtime", "2.1.0"))
implementation(androidX("constraintlayout", version = "1.1.3"))
runtimeOnly(projects.selektAndroidSqlcipher)
}
4 changes: 2 additions & 2 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
dependencies {
implementation(platform("com.bloomberg:selekt-bom:<version>"))
implementation("com.bloomberg:selekt-android")
implementation("com.bloomberg:selekt-android-sqlcipher")
runtimeOnly("com.bloomberg:selekt-android-sqlcipher")
}
```

Expand All @@ -24,7 +24,7 @@
dependencies {
implementation platform('com.bloomberg:selekt-bom:<version>'))
implementation 'com.bloomberg:selekt-android'
implementation 'com.bloomberg:selekt-android-sqlcipher'
runtimeOnly 'com.bloomberg:selekt-android-sqlcipher'
}
```

Expand Down

0 comments on commit 1a57add

Please sign in to comment.