Ivan Buhov
Ivan Buhov
> the generated metadata for iOS contained references to AdSupport.framework causing the App being rejected by Apple @Buuhuu Generated metadata for an arbitrary framework/library is not something that can lead...
@Buuhuu I actually like the idea to add support for blacklisting some SDK frameworks. If you really want to optimize your app size, this is an easy-to-enable opportunity, so I...
@Buuhuu We don't know all used frameworks at build time. Currently, it is not required because the iOS Runtime [loads all used framework dynamically](https://github.com/NativeScript/ios-runtime/blob/master/src/NativeScript/SymbolLoader.mm#L93-L129). My proposal is to still generate...
@weslien The iOS runtime can be embedded in a native iOS application. Does [this example](https://github.com/NativeScript/sample-ios-embedded) work for you? Keep in mind that currently the example is working with iOS runtime...
@PanayotCankov I agree that your solution leads to more naturally calling protocol methods, and instead of writing ``` MyProtocol1.prototype.method1.call(instance, ...); ``` you will be able to achieve the same with...
It seems that (as @jasssonpet has noticed [here](https://github.com/NativeScript/ios-runtime/issues/543#issuecomment-206749739)) even after adding the `-exported_symbol` flag it is still not guaranteed that the symbol will get linked. Unfortunately, I can't find an...
@roblav96 Could you be more specific about the steps to reproduce. Is it reproduced with a blank app? It would be helpful if you give an example of a concrete...
I understand the pros of your proposal, but just want to hear your opinion on the drawbacks. Separating category methods from the actual class declaration means that if you use...
@PanayotCankov Thanks for the valuable info, I am adding this issue to the backlog.
@spbond The `SessionDelegate` methods are implemented in JavaScript but they are called from Objective-C, so you have to make them visible in the Objective-C world. You can do this by...