touchlab-lab / KotlinCocoapods

Apache License 2.0
75 stars 6 forks source link

Could not set unknown property 'isStatic' for object of type co.touchlab.kotlin.gradle.plugin.cocoapods.CocoapodsExtension #27

Open mikezliu opened 3 years ago

mikezliu commented 3 years ago

When I try this (which should work per the examples):

cocoapodsext {
    summary = "Kotlin Native Shared Project"
    homepage = "..."
    authors = "..."
    license = "License"
    isStatic = false
}

I'm getting an error:

Could not set unknown property 'isStatic' for object of type co.touchlab.kotlin.gradle.plugin.cocoapods.CocoapodsExtension.

sergiocasero commented 3 years ago

The error is inside the docs, you need to specify it inside framework:

cocoapodsext {
        framework {
            isStatic = false
        }
    }