I got an error when Xcode builds the project.
In WebViewPlugin.mm
-extern "C" void _WebViewPluginLoadUrl(const char* url, boolean isClearCache) {
+extern "C" void _WebViewPluginLoadUrl(const char* url, bool isClearCache) {
The Xcode, the version I used is 4.6 does not resolve 'boolean'. So it should be changed either 'bool' or 'Boolean'. (also BOOL seems to be ok)
I got an error when Xcode builds the project.
In WebViewPlugin.mm
-extern "C" void _WebViewPluginLoadUrl(const char* url, boolean isClearCache) {
+extern "C" void _WebViewPluginLoadUrl(const char* url, bool isClearCache) {
The Xcode, the version I used is 4.6 does not resolve 'boolean'. So it should be changed either 'bool' or 'Boolean'. (also BOOL seems to be ok)