Create NativeScript Plugin using IOS Static Library issue
问题 I have created .a static library (tested in Xcode for native ios project and Its working fine) Now I am following this https://github.com/NativeScript/nativescript-plugin-seed to create nativescript plugin using .a static framework. Plugin structure module.modulemap file is created by me and it's look like this module libstaticlibrary { umbrella header "staticlibrary.h" export * } staticlibrary.h #import <Foundation/Foundation.h> @interface staticlibrary : NSObject + (NSString *)sayHello;