AlecKazakova / kotlin-native-cocoapods

A Gradle plugin for configuring Kotlin/Native with Cocoapods
Apache License 2.0
128 stars 11 forks source link

Enable customization of cocoapods target #5

Closed AlecKazakova closed 5 years ago

AlecKazakova commented 5 years ago

Closes #3

this changes the syntax from:

targetFromPreset(cocoapodsPreset, 'ios')

to

targetForCocoapods('ios')

and you can optionally configure:

targetForCocoapods('ios') {
  compilations.main.extraOpts '-module-name', 'SC'
}