Skip to content

Commit 598908c

Browse files
committed
dust off
1 parent c17537c commit 598908c

12 files changed

+312
-149
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ project.xcworkspace
3939
.settings
4040
local.properties
4141
android.iml
42+
.kotlin
4243

4344
# Cocoapods
4445
#

AsyncStorageSQLite.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ Pod::Spec.new do |spec|
1414
spec.author = info["author"]
1515
spec.source = { :git => info["repository"], :tag => "#{spec.version}" }
1616
spec.swift_version = "5.8"
17-
spec.platforms = { :ios => "13.0" }
17+
spec.platforms = { :ios => "16.0" }
1818

1919
spec.vendored_frameworks = "#{podspecName}/#{frameworkName}.xcframework"
2020
spec.source_files = "#{podspecName}/src/**/*.{swift}"
2121

22-
spec.dependency "KMPNativeCoroutinesAsync", "1.0.0-ALPHA-24"
22+
spec.dependency "KMPNativeCoroutinesAsync", "1.0.0-ALPHA-37"
2323

2424
end

RELEASING.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
### Versioning
1010

11-
1. Update version in [package_info.json](package_info.json) AND [README.md](README.md)
11+
1. Update version in [package_info.json](package_info.json)
1212
2. Build binaries via `bundleSQLiteStorage` gradle task
1313
3. Commit changes (name it `release: MAJOR.MINOR.PATCH`)
1414
4. Create tag (name it `MAJOR.MINOR.PATCH`)
@@ -19,7 +19,6 @@
1919

2020
https://vanniktech.github.io/gradle-maven-publish-plugin/central/#publishing-releases
2121

22-
2322
### iOS
2423

2524
https://guides.cocoapods.org/making/making-a-cocoapod.html#submitting-open-source-code

build.gradle.kts

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
plugins {
2-
id("com.android.application").version(libs.versions.agp.get()).apply(false)
3-
id("com.android.library").version(libs.versions.agp.get()).apply(false)
4-
kotlin("android").version(libs.versions.kotlin.get()).apply(false)
5-
kotlin("multiplatform").version(libs.versions.kotlin.get()).apply(false)
6-
kotlin("plugin.serialization").version(libs.versions.kotlin.get()).apply(false)
7-
id("app.cash.sqldelight").version(libs.versions.sqldelight.get()).apply(false)
8-
id("com.google.devtools.ksp").version(libs.versions.ksp.get()).apply(false)
9-
id("com.rickclephas.kmp.nativecoroutines").version(libs.versions.nativeCoroutines.get())
10-
.apply(false)
2+
alias(libs.plugins.android.application).apply(false)
3+
alias(libs.plugins.android.library).apply(false)
4+
alias(libs.plugins.kotlin.android).apply(false)
5+
alias(libs.plugins.kotlin.multiplatform).apply(false)
6+
alias(libs.plugins.kotlin.plugin.serialization).apply(false)
7+
alias(libs.plugins.sqldelight).apply(false)
8+
alias(libs.plugins.ksp).apply(false)
9+
alias(libs.plugins.nativecoroutines).apply(false)
1110
}

gradle/libs.versions.toml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
11
[versions]
2-
kotlin = "1.9.22"
3-
agp = "8.1.1"
4-
ksp = "1.9.22-1.0.16"
5-
nativeCoroutines = "1.0.0-ALPHA-24"
6-
sqldelight = "2.0.1"
7-
coroutines = "1.7.3"
2+
kotlin = "2.0.21"
3+
agp = "8.5.0"
4+
ksp = "2.0.21-1.0.25"
5+
nativeCoroutines = "1.0.0-ALPHA-37"
6+
sqldelight = "2.0.2"
7+
coroutines = "1.9.0"
88
ktx-serialization = "1.6.0"
99
spotless = "6.23.3"
1010

11+
12+
[plugins]
13+
android-application = { id = "com.android.application", version.ref = "agp" }
14+
android-library = { id = "com.android.library", version.ref = "agp" }
15+
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
16+
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
17+
kotlin-plugin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
18+
sqldelight = { id = "app.cash.sqldelight", version.ref = "sqldelight" }
19+
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
20+
nativecoroutines = { id = "com.rickclephas.kmp.nativecoroutines", version.ref = "nativeCoroutines" }
21+
1122
[libraries]
1223
serialization = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "ktx-serialization" }
1324
gson = { module = "com.google.code.gson:gson", version = "2.9.0" }

gradle/wrapper/gradle-wrapper.jar

-15.4 KB
Binary file not shown.
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
#Tue Oct 29 23:18:48 CET 2024
12
distributionBase=GRADLE_USER_HOME
23
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-all.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
5+
networkTimeout=10000
6+
validateDistributionUrl=true
47
zipStoreBase=GRADLE_USER_HOME
5-
zipStorePath=wrapper/dists
8+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)