@momo-kits/native-kits 0.155.1-hello.6-debug → 0.155.1-hello.7-debug
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/compose/build.gradle.kts
CHANGED
|
@@ -85,13 +85,13 @@ kotlin {
|
|
|
85
85
|
|
|
86
86
|
android {
|
|
87
87
|
namespace = "$gitlabGroup.$gitlabArtifactId"
|
|
88
|
-
compileSdk =
|
|
88
|
+
compileSdk = 35
|
|
89
89
|
compileOptions {
|
|
90
90
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
91
91
|
targetCompatibility = JavaVersion.VERSION_17
|
|
92
92
|
}
|
|
93
93
|
defaultConfig {
|
|
94
|
-
minSdk =
|
|
94
|
+
minSdk = 24
|
|
95
95
|
}
|
|
96
96
|
}
|
|
97
97
|
|
|
@@ -125,18 +125,18 @@ compose {
|
|
|
125
125
|
}
|
|
126
126
|
}
|
|
127
127
|
|
|
128
|
-
publishing {
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
}
|
|
128
|
+
// publishing {
|
|
129
|
+
// repositories {
|
|
130
|
+
// maven {
|
|
131
|
+
// name = "${gitlabRepo}Packages"
|
|
132
|
+
// credentials {
|
|
133
|
+
// username = gitlabUser
|
|
134
|
+
// password = gitlabKey
|
|
135
|
+
// }
|
|
136
|
+
// url = uri("$gitlabUrl")
|
|
137
|
+
// }
|
|
138
|
+
// }
|
|
139
|
+
// }
|
|
140
140
|
|
|
141
141
|
// mavenPublishing {
|
|
142
142
|
// configure(
|
|
@@ -85,13 +85,13 @@ kotlin {
|
|
|
85
85
|
|
|
86
86
|
android {
|
|
87
87
|
namespace = "$gitlabGroup.$gitlabArtifactId"
|
|
88
|
-
compileSdk =
|
|
88
|
+
compileSdk = 35
|
|
89
89
|
compileOptions {
|
|
90
90
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
91
91
|
targetCompatibility = JavaVersion.VERSION_17
|
|
92
92
|
}
|
|
93
93
|
defaultConfig {
|
|
94
|
-
minSdk =
|
|
94
|
+
minSdk = 24
|
|
95
95
|
}
|
|
96
96
|
}
|
|
97
97
|
|
package/compose/compose.podspec
CHANGED
package/gradle.properties
CHANGED
package/package.json
CHANGED
package/publish_release.sh
CHANGED
|
@@ -74,6 +74,8 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
|
74
74
|
sed -i '' 's/^import com\.vanniktech\.maven\.publish\.KotlinMultiplatform$/\/\/ &/' compose/build.gradle.kts
|
|
75
75
|
# Comment out plugin
|
|
76
76
|
sed -i '' 's/^ alias(libs\.plugins\.vanniktech\.mavenPublish)$/\/\/ &/' compose/build.gradle.kts
|
|
77
|
+
# Comment out publishing block
|
|
78
|
+
sed -i '' '/^publishing {$/,/^}$/s/^/\/\/ /' compose/build.gradle.kts
|
|
77
79
|
# Comment out entire mavenPublishing block (lines starting from mavenPublishing { to its closing })
|
|
78
80
|
sed -i '' '/^mavenPublishing {$/,/^}$/s/^/\/\/ /' compose/build.gradle.kts
|
|
79
81
|
else
|
|
@@ -82,6 +84,8 @@ else
|
|
|
82
84
|
sed -i 's/^import com\.vanniktech\.maven\.publish\.KotlinMultiplatform$/\/\/ &/' compose/build.gradle.kts
|
|
83
85
|
# Comment out plugin
|
|
84
86
|
sed -i 's/^ alias(libs\.plugins\.vanniktech\.mavenPublish)$/\/\/ &/' compose/build.gradle.kts
|
|
87
|
+
# Comment out publishing block
|
|
88
|
+
sed -i '/^publishing {$/,/^}$/s/^/\/\/ /' compose/build.gradle.kts
|
|
85
89
|
# Comment out entire mavenPublishing block
|
|
86
90
|
sed -i '/^mavenPublishing {$/,/^}$/s/^/\/\/ /' compose/build.gradle.kts
|
|
87
91
|
fi
|