https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
t

tylerwilson

09/28/2021, 5:49 PM
Anybody know how to set the watchos deployment target in gradle file, using the standard watchos target - that is, not using cocoapods or multiplatform-swiftpackage? I currently have this:
Copy code
watchos {
        binaries {
            framework {
                baseName = "common"
                embedBitcode("bitcode")
                xcf.add(this)
            }
        }
    }
k

Konstantin Tskhovrebov

09/29/2021, 6:15 AM
You can use cocopods plugin with watchos target
2 Views