KotlinXcodeSync icon indicating copy to clipboard operation
KotlinXcodeSync copied to clipboard

Sync Kotlin files with an Xcode project

Results 7 KotlinXcodeSync issues
Sort by recently updated
recently updated
newest added

If missing 'xcodeproj', run `gem install xcodeproj`

Adding files to Xcode produces some huge and apparently incorrect relative paths. See tail end of this: https://kotlinlang.slack.com/archives/C3SGXARS6/p1561103800227400

My work laptop is partially locked and I can't use sudo to install `xcodeproj` globally. I can however use bundler to install it locally into `vendor/bundle`. So a workaround for...

After much research, importing dep sources is not that simple. The binaries are built with references to absolute source paths. For example, I built sqliter on this machine, so adding...

We currently add files that aren't in Xcode yet, but we don't remove files that have been renamed or deleted from the Kotlin sourceset.

Kotlin files are added as compile targets. We can turn that off and only the file to the group, but breakpoints don't work. Xcode doesn't attempt to compile Kotlin, so...