This repository was archived by the owner on Oct 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed
sqlite-storage-plugin/src/main/kotlin Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ kotlin.code.style=official
88# Android
99android.useAndroidX =true
1010
11+ # Publishing
12+ SONATYPE_AUTOMATIC_RELEASE =false
13+
1114# KMM
1215kotlin.mpp.stability.nowarn =true
1316kotlin.mpp.enableCInteropCommonization =true
Original file line number Diff line number Diff line change 11{
22 "name" : " Async Storage SQLite" ,
3- "version" : " 0.0.1 " ,
3+ "version" : " 0.0.3 " ,
44 "description" : " Multiplatform key-value storage backed by SQLite for React Native Async Storage" ,
55 "author" : " Krzysztof Borowy" ,
66 "homepage" : " https://github.com/react-native-async-storage/sqlite-storage-native" ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ internal fun Project.configurePublish(info: PackageInfoExtension) {
1414 }
1515
1616 (project as ExtensionAware ).extensions.configure<MavenPublishBaseExtension > {
17- publishToMavenCentral(SonatypeHost .S01 , automaticRelease = true )
17+ publishToMavenCentral(SonatypeHost .S01 , automaticRelease = false )
1818 signAllPublications()
1919
2020 coordinates(
Original file line number Diff line number Diff line change @@ -12,7 +12,10 @@ plugins {
1212
1313
1414kotlin {
15- androidTarget()
15+ androidTarget {
16+ publishLibraryVariants(" release" )
17+ }
18+
1619 val xcf = XCFramework (packageInfo.darwin.xcframeworkName)
1720 listOf (
1821 iosX64(),
You can’t perform that action at this time.
0 commit comments