From e39c099bdc7faf9ddd892c4c8341bf3178dcb9be Mon Sep 17 00:00:00 2001 From: Emux Date: Sun, 24 Jul 2016 11:46:49 +0300 Subject: [PATCH] Update iOS documentation, #83 --- docs/ios.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ios.md b/docs/ios.md index f06cb4b0..cd846157 100644 --- a/docs/ios.md +++ b/docs/ios.md @@ -1,13 +1,13 @@ ### iOS implementation RoboVm needs the native libs / frameworks to create a build. -Copy those files from `vtm-ios-0.6.0-SNAPSHOT-natives.jar` into a temp folder. +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-0.6.0-SNAPSHOT-natives.jar")) + from(zipTree("./libs/vtm-ios-[CURRENT-VERSION]-natives.jar")) into("${buildDir}/native") }