I created a simple external using the LiveCode iOS externals SDK. The test.lcidl file is as follows:
external test
function testMyExternal
return boolean
The test.mm file is as follows:
bool testMyExternal(void) {
return true;
}
The test.ios file is the default Foundation framework.
This is about as simple as it gets but it won't compile... why not?