### iOS implementation RoboVm needs the native libs / frameworks to create a build. Copy those files from `vtm-ios-[CURRENT-VERSION]-natives.jar` into a temp folder. Create a copy task into your **build.gradle**. ```groovy task copyFrameWorks(type: Copy) { from(zipTree("./libs/vtm-ios-[CURRENT-VERSION]-natives.jar")) into("${buildDir}/native") } tasks.withType(org.gradle.api.tasks.compile.JavaCompile) { compileTask -> compileTask.dependsOn copyFrameWorks } ``` Now you can configure your `robovm.xml` to implement the vtm-natives and the SVG-Framework. ```xml z build/native/libvtm-jni.a build/native SVGgh UIKit OpenGLES QuartzCore CoreGraphics OpenAL AudioToolbox AVFoundation ``` Remember the implementation of a iOS framework is possible since iOS 8. So we must set the min iOS-Version at `Info.plist.xml`. ```xml MinimumOSVersion 8.0 ... ```