-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
121 lines (104 loc) · 2.39 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
buildscript {
repositories {
google()
mavenCentral()
mavenLocal()
gradlePluginPortal()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.android.tools.build:gradle:$gradle_android_version"
classpath "io.github.gradle-nexus:publish-plugin:$nexus_plugin_version"
}
}
repositories {
mavenCentral()
google()
mavenLocal()
}
apply plugin: 'kotlin-multiplatform'
apply plugin: 'maven-publish'
apply plugin: 'com.android.library'
apply plugin: 'io.github.gradle-nexus.publish-plugin'
apply plugin: 'signing'
android {
compileSdkVersion 33
defaultConfig {
minSdkVersion 15
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
kotlin {
jvm()
android {
publishLibraryVariants("release", "debug")
}
iosArm32() {
binaries {
framework()
}
}
iosArm64() {
binaries {
framework()
}
}
iosX64() {
binaries {
framework()
}
}
iosSimulatorArm64() {
binaries {
framework()
}
}
sourceSets {
commonMain {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlin_version"
}
}
jvmMain {
dependencies {
implementation kotlin('stdlib-jdk8')
}
}
androidMain {
dependencies {
implementation kotlin('stdlib-jdk8')
}
}
nativeMain {
dependsOn(commonMain)
}
iosArm64Main {
dependsOn(nativeMain)
}
iosArm32Main {
dependsOn(nativeMain)
}
iosX64Main {
dependsOn(nativeMain)
}
iosSimulatorArm64Main {
dependsOn(nativeMain)
}
}
}
afterEvaluate {
project.publishing.publications.all {
groupId = group
if (it.name.contains('metadata')) {
artifactId = "$libraryName"
} else {
artifactId = "$libraryName-$name"
}
}
}
apply from: rootProject.file('pom.gradle')
apply from: rootProject.file('gradle/publish.gradle')
apply from: rootProject.file('gradle/nexus.gradle')