MCSD
MCSD

Reputation: 151

Update J2ObjC library in Xcode10

I'm currently working on an app in Xcode10 which references the J2ObjC library.

When trying to build the app i get the following errors. See line 486-490 in image below. enter image description here

I currently have j2objc version 0.9.8.2.1, but would like to update this to a new version as i believe the update would fix the issue. How can I update the library to a newer version?

I'm new to ios , so not sure exactly where to get instructions. I checked the official website but with no luck.

Any thoughts?

Upvotes: 0

Views: 101

Answers (1)

tball
tball

Reputation: 2044

The CocoaPods site is not the official website: the j2objc team doesn't support CocoaPods (our team is too small), so community members contributed it independently.

What is supported is using Xcode frameworks. In the latest j2objc release, the distribution bundle contains a j2objc/frameworks directory; here is the doc on updating Xcode to reference this directory.

Upvotes: 1

Related Questions