I am trying to turn an app into a framework so I can distribute it publicly. I want to keep all my logic private yet just expose the API so people can use them easily.
This is easy if you simply use objective-c or swift code, but I use a lot of javascript files which I call using JavascriptCore. I don't want these JS files to be public either.
Is there a way to keep these private as well?