Thought I'd share this with you guys. Possible Bug?Linky:http://stackoverflow.com/questions/15210889/ios-phonegap-2-5-cross-device-link-error --
-- You received this message because you are subscribed to the Google
Groups "phonegap" group.
To post to this group, send email to phon...@googlegroups.com
To unsubscribe from this group, send email to
phonegap+u...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/phonegap?hl=en?hl=en
For more info on PhoneGap or to download the code go to www.phonegap.com
To compile in the cloud, check out build.phonegap.com
---
You received this message because you are subscribed to the Google Groups "phonegap" group.
To unsubscribe from this group and stop receiving emails from it, send an email to phonegap+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
For now I removed the IF ! LN in the 'copy www directory' of the build phase...
# Files
for p in $(do_find -type f -print); do
subpath="${p#$SRC_DIR}"
#if ! ln "$SRC_DIR$subpath" "$DST_DIR$subpath"; then
cp -a "$SRC_DIR$subpath" "$DST_DIR$subpath" || exit 3
#fi
done
Hmm does this work for symlink directories?Say i have "www" in the following mannerwww > common libiOS/www -> ../wwwAndroid/www -> ../wwwwin8/www -> ../wwwUsed to work in older versions where the build phase script was much simpler just the following line:touch -cm ${PROJECT_DIR}/www
On Wednesday, 13 March 2013 02:49:42 UTC+1, James Jong wrote:This has been fixed in 2.6. If you want it for 2.5, you can download and replace the project.pbxproj file in your app.Here's the link:https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git;a=blob_plain;f=bin/templates/project/__TESTING__.xcodeproj/project.pbxproj;hb=dfa5d0a8acd85c2953d8a15ee7e009995f944efd
-James Jong