Skip to content

Commit

Permalink
Update sqlcipher to 4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ysy950803 committed Aug 6, 2024
1 parent ee5b22b commit c1f9ace
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ Just add WCDBRoomX in your app `build.gradle` :

```groovy
dependencies {
implementation 'com.github.ysy950803:WCDBRoomX:1.0.1'
implementation 'com.github.ysy950803:WCDBRoomX:1.0.2'
}
```

For `*.kts` :

```kotlin
dependencies {
implementation("com.github.ysy950803:WCDBRoomX:1.0.1")
implementation("com.github.ysy950803:WCDBRoomX:1.0.2")
}
```

Expand Down
12 changes: 6 additions & 6 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,17 @@ android {

dependencies {
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
androidTestImplementation("androidx.test.ext:junit:1.2.1")
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")

implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.11.0")
implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("com.google.android.material:material:1.12.0")

val roomVersion = "2.6.1"
ksp("androidx.room:room-compiler:$roomVersion")
implementation("androidx.room:room-ktx:$roomVersion")

implementation(project(":wcdbroomx"))
// implementation("com.github.ysy950803:WCDBRoomX:1.0.0")
// implementation("com.github.ysy950803:WCDBRoomX:1.0.2")
}
12 changes: 6 additions & 6 deletions wcdbroomx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ android {

dependencies {
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
androidTestImplementation("androidx.test.ext:junit:1.2.1")
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")

implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("androidx.sqlite:sqlite-ktx:2.4.0")

implementation("net.zetetic:sqlcipher-android:4.5.6@aar")
implementation("net.zetetic:sqlcipher-android:4.6.0@aar")
implementation("com.tencent.wcdb:wcdb-android:1.1-19")
}

Expand All @@ -54,7 +54,7 @@ afterEvaluate {

groupId = "com.github.ysy950803"
artifactId = "WCDBRoomX"
version = "1.0.1"
version = "1.0.2"
}
}
}
Expand Down

0 comments on commit c1f9ace

Please sign in to comment.