user6586661
user6586661

Reputation: 552

Java | Json String to Object without library

I want to convert a Json String to an object, without out a library. The reason is that I want to convert the Java code with J2Objc into a Objective-C file. And J2Objc doesn't allow libraries as far as I know. Does anyone know an answer to this question?

Thank you!

Upvotes: 1

Views: 1147

Answers (1)

KarelPeeters
KarelPeeters

Reputation: 1465

J2Objc does actually support libraries, as explained in the docs. The are plugins available for eclipse, maven and gradle that handle everything for you.

Upvotes: 1

Related Questions