Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit a1539a4

Browse files
authored
Merge pull request #291 from icerockdev/fixes-for-chat
Fixes from internal project
2 parents eca78eb + 9ba00dc commit a1539a4

File tree

22 files changed

+153
-10
lines changed

22 files changed

+153
-10
lines changed

build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ buildscript {
1313
maven { url = uri("https://dl.bintray.com/icerockdev/plugins") }
1414
}
1515
dependencies {
16-
plugin(Deps.Plugins.mokoResources)
17-
plugin(Deps.Plugins.mokoWidgets)
16+
classpath("dev.icerock.moko:resources-generator:0.13.2")
17+
classpath("dev.icerock.moko.widgets:gradle-plugin:0.1.0-dev-21")
18+
classpath("gradle:moko-widgets-deps:1")
1819
}
1920
}
2021

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@
55
import java.io.ByteArrayOutputStream
66

77
plugins {
8-
id("org.jetbrains.kotlin.jvm") version "1.4.30-M1"
8+
id("org.jetbrains.kotlin.jvm") version "1.4.21"
99
id("com.github.kukuhyoniatmoko.buildconfigkotlin") version "1.0.5"
1010
}
1111

12+
group = "gradle"
13+
version = "1"
14+
1215
repositories {
1316
jcenter()
1417
google()
@@ -19,7 +22,7 @@ repositories {
1922
dependencies {
2023
api(gradleApi())
2124
api("dev.icerock:mobile-multiplatform:0.9.0")
22-
api("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.30-M1")
25+
api("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.21")
2326
api("com.android.tools.build:gradle:4.1.1")
2427
}
2528

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44

55
object Deps {
6-
private const val kotlinVersion = "1.4.30-M1"
6+
private const val kotlinVersion = "1.4.21"
77
private const val autoServiceVersion = "1.0-rc6"
88

99
private const val androidAppCompatVersion = "1.1.0"

buildSrc/src/main/kotlin/dev/icerock/moko/widgets/gradle/BintrayPublishingPlugin.kt renamed to moko-widgets-deps/src/main/kotlin/dev/icerock/moko/widgets/gradle/BintrayPublishingPlugin.kt

File renamed without changes.

buildSrc/src/main/kotlin/dev/icerock/moko/widgets/gradle/PublishToBintrayRepository.kt renamed to moko-widgets-deps/src/main/kotlin/dev/icerock/moko/widgets/gradle/PublishToBintrayRepository.kt

File renamed without changes.

buildSrc/src/main/kotlin/org/gradle/api/publish/maven/internal/publisher/BintrayPublisher.kt renamed to moko-widgets-deps/src/main/kotlin/org/gradle/api/publish/maven/internal/publisher/BintrayPublisher.kt

File renamed without changes.

plugin/build.gradle.kts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

5+
buildscript {
6+
repositories {
7+
jcenter()
8+
google()
9+
10+
maven { url = uri("https://dl.bintray.com/kotlin/kotlin") }
11+
maven { url = uri("https://kotlin.bintray.com/kotlinx") }
12+
maven { url = uri("https://plugins.gradle.org/m2/") }
13+
maven { url = uri("https://dl.bintray.com/icerockdev/plugins") }
14+
}
15+
dependencies {
16+
classpath("gradle:moko-widgets-deps:1")
17+
}
18+
}
19+
520
allprojects {
621
repositories {
722
google()

plugin/buildSrc/build.gradle.kts

Lines changed: 0 additions & 1 deletion
This file was deleted.

plugin/buildSrc/src

Lines changed: 0 additions & 1 deletion
This file was deleted.

plugin/settings.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

5+
includeBuild("../moko-widgets-deps")
6+
57
include(":kotlin-common-plugin")
68
include(":kotlin-plugin")
79
include(":kotlin-native-plugin")

0 commit comments

Comments
 (0)