This repository was archived by the owner on Oct 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 12 files changed +312
-149
lines changed Expand file tree Collapse file tree 12 files changed +312
-149
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ project.xcworkspace
3939.settings
4040local.properties
4141android.iml
42+ .kotlin
4243
4344# Cocoapods
4445#
Original file line number Diff line number Diff 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
2424end
Original file line number Diff line number Diff line change 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 )
12122 . Build binaries via ` bundleSQLiteStorage ` gradle task
13133 . Commit changes (name it ` release: MAJOR.MINOR.PATCH ` )
14144 . Create tag (name it ` MAJOR.MINOR.PATCH ` )
1919
2020https://vanniktech.github.io/gradle-maven-publish-plugin/central/#publishing-releases
2121
22-
2322### iOS
2423
2524https://guides.cocoapods.org/making/making-a-cocoapod.html#submitting-open-source-code
Original file line number Diff line number Diff line change 11plugins {
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}
Original file line number Diff line number Diff line change 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 "
88ktx-serialization = " 1.6.0"
99spotless = " 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 ]
1223serialization = { module = " org.jetbrains.kotlinx:kotlinx-serialization-json" , version.ref = " ktx-serialization" }
1324gson = { module = " com.google.code.gson:gson" , version = " 2.9.0" }
Original file line number Diff line number Diff line change 1+ # Tue Oct 29 23:18:48 CET 2024
12distributionBase =GRADLE_USER_HOME
23distributionPath =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
47zipStoreBase =GRADLE_USER_HOME
5- zipStorePath =wrapper/dists
8+ zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments