Skip looks a really interesting piece of technology. If it works well, would be well-worth the price of the small business license ($29 per month).
Platform-specific API use (e.g. GPS data and accelerometer) could be extracted into separate Swift methods, with a transpiler directive to gate by platform:
#if os(Android)
print("Android")
#else
print("iOS")
#endif