Skip to content

Commit 3aaad8f

Browse files
committed
add dependencies
1 parent e64c3d0 commit 3aaad8f

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

kronos/build.gradle.kts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ kotlin {
2222
framework {
2323
baseName = "kronos"
2424
}
25+
pod("Kronos", "~> 4.2")
2526
}
2627

2728
sourceSets {
@@ -31,7 +32,17 @@ kotlin {
3132
implementation(kotlin("test"))
3233
}
3334
}
34-
val androidMain by getting
35+
val jvmMain by getting {
36+
dependencies {
37+
api("com.lyft.kronos:kronos-java:0.0.1-alpha11")
38+
}
39+
}
40+
val jvmTest by getting
41+
val androidMain by getting {
42+
dependencies {
43+
api("com.lyft.kronos:kronos-android:0.0.1-alpha11")
44+
}
45+
}
3546
val androidUnitTest by getting
3647
val iosX64Main by getting
3748
val iosArm64Main by getting

kronos/kronos.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
99
spec.vendored_frameworks = 'build/cocoapods/framework/kronos.framework'
1010
spec.libraries = 'c++'
1111
spec.ios.deployment_target = '14.1'
12-
12+
spec.dependency 'Kronos', '~> 4.2'
1313

1414
spec.pod_target_xcconfig = {
1515
'KOTLIN_PROJECT_PATH' => ':kronos',

0 commit comments

Comments
 (0)