Browse Source

expemintal samples: add forgotten isStatic=true to cocoapods.framework configuration (#2634)

pull/2639/head
Nikita Lipsky 1 year ago committed by GitHub
parent
commit
fe3284aeb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      experimental/examples/codeviewer/shared/build.gradle.kts
  2. 1
      experimental/examples/todoapp-lite/shared/build.gradle.kts

1
experimental/examples/codeviewer/shared/build.gradle.kts

@ -22,6 +22,7 @@ kotlin {
podfile = project.file("../iosApp/Podfile") podfile = project.file("../iosApp/Podfile")
framework { framework {
baseName = "shared" baseName = "shared"
isStatic = true
} }
extraSpecAttributes["resources"] = "['src/commonMain/resources/**', 'src/iosMain/resources/**']" extraSpecAttributes["resources"] = "['src/commonMain/resources/**', 'src/iosMain/resources/**']"
} }

1
experimental/examples/todoapp-lite/shared/build.gradle.kts

@ -22,6 +22,7 @@ kotlin {
podfile = project.file("../iosApp/Podfile") podfile = project.file("../iosApp/Podfile")
framework { framework {
baseName = "shared" baseName = "shared"
isStatic = true
} }
} }

Loading…
Cancel
Save