rhodes 6.2.0 → 7.1.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (553) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +14 -10
  3. data/appveyor.yml +1 -1
  4. data/extensions/emdk3-manager/ext/platform/android/Rakefile +2 -0
  5. data/extensions/rhoconnect-push/ext/rhoconnect-push/platform/android/Rakefile +18 -1
  6. data/extensions/rhoelementsext/ext/rhoelementsext/platform/android/Rakefile +19 -1
  7. data/lib/commonAPI/RubyServer/ext.yml +21 -0
  8. data/lib/commonAPI/RubyServer/ext/RubyServer.xml +101 -0
  9. data/lib/commonAPI/RubyServer/ext/build +19 -0
  10. data/lib/commonAPI/RubyServer/ext/build.bat +29 -0
  11. data/lib/commonAPI/RubyServer/ext/platform/android/Rakefile +161 -0
  12. data/lib/commonAPI/RubyServer/ext/platform/android/ext_java.files +9 -0
  13. data/lib/commonAPI/RubyServer/ext/platform/android/ext_native.files +7 -0
  14. data/lib/commonAPI/RubyServer/ext/platform/iphone/Rakefile +73 -0
  15. data/lib/commonAPI/RubyServer/ext/platform/iphone/RubyServer.xcodeproj/project.pbxproj +322 -0
  16. data/lib/commonAPI/RubyServer/ext/platform/iphone/RubyServer_Prefix.pch +7 -0
  17. data/lib/commonAPI/RubyServer/ext/shared/RubyServerImpl.cpp +242 -0
  18. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/BarcodeFactory.java +23 -3
  19. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/BarcodeRhoExtension.java +68 -8
  20. data/lib/commonAPI/barcode/ext/platform/iphone/Barcode.xcodeproj/project.pbxproj +24 -52
  21. data/lib/commonAPI/barcode/ext/platform/iphone/Classes/BarcodeViewController.h +38 -10
  22. data/lib/commonAPI/barcode/ext/platform/iphone/Classes/BarcodeViewController.m +300 -22
  23. data/lib/commonAPI/barcode/ext/platform/iphone/Classes/BarcodeViewFactory.mm +6 -0
  24. data/lib/commonAPI/barcode/ext/platform/iphone/Classes/barcode.m +6 -2
  25. data/lib/commonAPI/barcode/ext/platform/iphone/impl/Barcode.m +7 -3
  26. data/lib/commonAPI/barcode/ext/platform/iphone/impl/BarcodeFactory.m +13 -0
  27. data/lib/commonAPI/barcode/ext/platform/iphone/impl/BarcodeSingleton.m +25 -3
  28. data/lib/commonAPI/bluetooth/ext/platform/android/Rakefile +29 -10
  29. data/lib/commonAPI/clipboard/ext/platform/android/Rakefile +29 -10
  30. data/lib/commonAPI/coreapi/ext/Notification.xml +47 -0
  31. data/lib/commonAPI/coreapi/ext/platform/android/ApplicationManifestAdds.erb +1 -0
  32. data/lib/commonAPI/coreapi/ext/platform/android/Rakefile +19 -0
  33. data/lib/commonAPI/coreapi/ext/platform/android/ext_java.files +2 -0
  34. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/AlarmReceiver.java +27 -0
  35. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/Notification.java +28 -10
  36. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/NotificationFactory.java +14 -1
  37. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/NotificationScheduler.java +260 -0
  38. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/NotificationSingleton.java +23 -1
  39. data/lib/commonAPI/coreapi/ext/platform/iphone/Coreapi.xcodeproj/project.pbxproj +21 -19
  40. data/lib/commonAPI/coreapi/ext/platform/iphone/impl/NotificationSingleton.h +1 -0
  41. data/lib/commonAPI/coreapi/ext/platform/iphone/impl/NotificationSingleton.m +234 -1
  42. data/lib/commonAPI/coreapi/ext/platform/qt/coreapi.pro +2 -0
  43. data/lib/commonAPI/coreapi/ext/platform/qt/src/CNotificationImpl.cpp +7 -0
  44. data/lib/commonAPI/coreapi/ext/shared/ApplicationImpl.cpp +5 -0
  45. data/lib/commonAPI/coreapi/public/api/rhoapi.js +18 -8
  46. data/lib/commonAPI/devicesecurity/ext/platform/android/Rakefile +19 -0
  47. data/lib/commonAPI/devicesecurity/ext/platform/iphone/DeviceSecurity.xcodeproj/project.pbxproj +16 -0
  48. data/lib/commonAPI/hardwarekeys/ext/keycapture.xml +11 -9
  49. data/lib/commonAPI/hardwarekeys/ext/platform/iphone/impl/KeyCaptureSingleton.h +5 -3
  50. data/lib/commonAPI/hardwarekeys/ext/platform/iphone/impl/KeyCaptureSingleton.m +80 -67
  51. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraEclair.java +25 -14
  52. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraGingerbread.java +55 -25
  53. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraObject.java +34 -9
  54. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/ICameraObject.java +1 -0
  55. data/lib/commonAPI/printing_zebra/ext/platform/android/Rakefile +18 -0
  56. data/lib/commonAPI/sensor/ext/platform/android/src/com/rho/sensor/Sensor.java +4 -4
  57. data/lib/extensions/decrypt/ext/platform/android/Rakefile +19 -1
  58. data/lib/extensions/decryptstub/ext/platform/android/Rakefile +19 -0
  59. data/lib/extensions/decryptstub/ext/platform/iphone/Decryptstub.xcodeproj/project.pbxproj +4 -2
  60. data/lib/extensions/digest-md5/ext/android/Rakefile +18 -0
  61. data/lib/extensions/digest-sha1/ext/android/Rakefile +18 -0
  62. data/lib/extensions/digest-sha2/ext/android/Rakefile +18 -0
  63. data/lib/extensions/esri/ext/esri/platform/iphone/Classes/MapViewControllerESRI.h +19 -19
  64. data/lib/extensions/fcm-push/ext/android/Rakefile +18 -0
  65. data/lib/extensions/fcm-push/ext/android/src/com/rhomobile/rhodes/fcm/FCMIntentService.java +38 -16
  66. data/lib/extensions/gcm-push/ext/android/Rakefile +19 -0
  67. data/lib/extensions/keyboard/ext.yml +15 -0
  68. data/lib/extensions/keyboard/ext/Keyboard.xml +28 -0
  69. data/lib/extensions/keyboard/ext/build +19 -0
  70. data/lib/extensions/keyboard/ext/build.bat +29 -0
  71. data/lib/extensions/keyboard/ext/platform/android/Rakefile +141 -0
  72. data/lib/extensions/keyboard/ext/platform/android/ext_java.files +9 -0
  73. data/lib/extensions/keyboard/ext/platform/android/ext_native.files +7 -0
  74. data/lib/extensions/keyboard/ext/platform/android/jni/Keyboard_impl.cpp +61 -0
  75. data/lib/extensions/keyboard/ext/platform/android/src/com/rho/keyboard/Keyboard.java +32 -0
  76. data/lib/extensions/keyboard/ext/platform/android/src/com/rho/keyboard/KeyboardFactory.java +18 -0
  77. data/lib/extensions/keyboard/ext/platform/android/src/com/rho/keyboard/KeyboardSingleton.java +29 -0
  78. data/lib/extensions/keyboard/ext/platform/iphone/Keyboard.xcodeproj/project.pbxproj +368 -0
  79. data/lib/extensions/keyboard/ext/platform/iphone/Keyboard_Prefix.pch +7 -0
  80. data/lib/extensions/keyboard/ext/platform/iphone/Rakefile +73 -0
  81. data/lib/extensions/keyboard/ext/platform/iphone/impl/Keyboard.h +14 -0
  82. data/lib/extensions/keyboard/ext/platform/iphone/impl/Keyboard.m +24 -0
  83. data/lib/extensions/keyboard/ext/platform/iphone/impl/KeyboardFactorySingleton.m +16 -0
  84. data/lib/extensions/keyboard/ext/platform/iphone/impl/KeyboardSetup.m +9 -0
  85. data/lib/extensions/keyboard/ext/platform/iphone/impl/KeyboardSingleton.h +17 -0
  86. data/lib/extensions/keyboard/ext/platform/iphone/impl/KeyboardSingleton.m +23 -0
  87. data/lib/extensions/keyboard/ext/platform/iphone/impl/readme.txt +7 -0
  88. data/lib/extensions/keyboard/ext/platform/qt/Keyboard.pro +68 -0
  89. data/lib/extensions/keyboard/ext/platform/qt/Makefile +473 -0
  90. data/lib/extensions/keyboard/ext/platform/qt/Makefile.Release +408 -0
  91. data/lib/extensions/keyboard/ext/platform/qt/Rakefile +39 -0
  92. data/lib/extensions/keyboard/ext/platform/qt/src/Keyboard_impl.cpp +99 -0
  93. data/lib/extensions/keyboard/ext/platform/uwp/Keyboard.props +18 -0
  94. data/lib/extensions/keyboard/ext/platform/uwp/Keyboard.vcxproj +197 -0
  95. data/lib/extensions/keyboard/ext/platform/uwp/Keyboard.vcxproj.filters +50 -0
  96. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardImpl.csproj +119 -0
  97. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardImpl.props +8 -0
  98. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardImpl.targets +7 -0
  99. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardLib.props +18 -0
  100. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardLib.vcxproj +197 -0
  101. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardLib.vcxproj.filters +58 -0
  102. data/lib/extensions/keyboard/ext/platform/uwp/src/Keyboard_impl.cpp +76 -0
  103. data/lib/extensions/keyboard/ext/platform/uwp/src/Keyboard_impl.cs +69 -0
  104. data/lib/extensions/keyboard/ext/platform/uwp/src/Properties/AssemblyInfo.cs +37 -0
  105. data/lib/extensions/keyboard/ext/platform/wm/Keyboard.sln +52 -0
  106. data/lib/extensions/keyboard/ext/platform/wm/Keyboard.vcproj +714 -0
  107. data/lib/extensions/keyboard/ext/platform/wm/Keyboard.vsprops +15 -0
  108. data/lib/extensions/keyboard/ext/platform/wm/src/Keyboard_impl.cpp +77 -0
  109. data/lib/extensions/openssl.so.src/ext/android/Rakefile +18 -0
  110. data/lib/extensions/openssl.so/ext/android/aarch64/libopenssl.so.a +0 -0
  111. data/lib/extensions/openssl.so/ext/iphone/OpenSSl.SDK/howtobuild.txt +2 -0
  112. data/lib/extensions/openssl.so/ext/iphone/OpenSSl.SDK/libcrypto.a +0 -0
  113. data/lib/extensions/openssl.so/ext/iphone/OpenSSl.SDK/libssl.a +0 -0
  114. data/lib/extensions/openssl.so/ext/iphone/Release-iphoneos/libopenssl.so.a +0 -0
  115. data/lib/extensions/openssl.so/ext/iphone/Release-iphonesimulator/libopenssl.so.a +0 -0
  116. data/lib/extensions/openssl/ext/android/Rakefile +18 -0
  117. data/lib/extensions/zlib/ext/zlib.c +5 -1
  118. data/lib/framework/autocomplete/Rhodes.rb +1 -1
  119. data/lib/framework/rhodes.rb +1 -1
  120. data/lib/framework/set.rb +799 -0
  121. data/lib/framework/version.rb +1 -1
  122. data/lib/rhodes.rb +1 -1
  123. data/platform/android/Rhodes/AndroidManifest.xml.erb +11 -2
  124. data/platform/android/Rhodes/jni/include/rhodes.h +6 -0
  125. data/platform/android/Rhodes/jni/include/rhodes/RhoClassFactory.h +3 -0
  126. data/platform/android/Rhodes/jni/include/rhodes/SecurityTokenGenerator.h +30 -0
  127. data/platform/android/Rhodes/jni/include/rhodes/details/rhojava.inc +1 -0
  128. data/platform/android/Rhodes/jni/src/JNIRhoRubyCppWrapper.cpp +408 -0
  129. data/platform/android/Rhodes/jni/src/RhoClassFactory.cpp +7 -0
  130. data/platform/android/Rhodes/jni/src/SecurityTokenGenerator.cpp +60 -0
  131. data/platform/android/Rhodes/jni/src/fileapi.cpp +318 -12
  132. data/platform/android/Rhodes/jni/src/mapview.cpp +4 -0
  133. data/platform/android/Rhodes/res/drawable/ic_notification.png +0 -0
  134. data/platform/android/Rhodes/res/xml/network_security_config.xml +7 -0
  135. data/platform/android/Rhodes/src/com/rhomobile/rhodes/BaseActivity.java +9 -0
  136. data/platform/android/Rhodes/src/com/rhomobile/rhodes/LocalFileProvider.java +1 -1
  137. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoMain.java +8 -0
  138. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubyArrayObjects.java +33 -0
  139. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubyClassObject.java +20 -0
  140. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubyObject.java +115 -0
  141. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubySingleton.java +52 -0
  142. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubyTypes.java +15 -0
  143. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesService.java +25 -13
  144. data/platform/android/Rhodes/src/com/rhomobile/rhodes/SecurityTokenGenerator.java +57 -0
  145. data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/RhoExtManagerImpl.java +1 -1
  146. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/SimpleMainView.java +9 -2
  147. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality.java +3 -0
  148. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality01.java +7 -0
  149. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality11.java +13 -1
  150. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality26.java +105 -0
  151. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionalityManager.java +4 -1
  152. data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/SSLImpl.java +24 -4
  153. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/GoogleWebView.java +20 -1
  154. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebViewClient.java +10 -0
  155. data/platform/android/build/Rakefile +30 -1
  156. data/platform/android/build/RhodesSRC_build.files +8 -0
  157. data/platform/android/build/android.rake +326 -22
  158. data/platform/android/build/android_tools.rb +36 -3
  159. data/platform/android/build/androidcommon.rb +97 -44
  160. data/platform/android/build/librhocommon_build.files +11 -0
  161. data/platform/android/build/librhodes_build.files +2 -0
  162. data/platform/android/build/manifest_generator.rb +9 -2
  163. data/platform/android/build/maven_deps_extractor.rb +96 -15
  164. data/platform/android/build/ndkwrapper.rb +111 -16
  165. data/platform/android/build/pom.erb +2 -2
  166. data/platform/iphone/Classes/AppManager/AppManager.m +31 -1
  167. data/platform/iphone/Classes/MapView/GoogleGeocoder.h +3 -3
  168. data/platform/iphone/Classes/RhoMainViewStubImpl.h +38 -0
  169. data/platform/iphone/Classes/RhoMainViewStubImpl.m +88 -0
  170. data/platform/iphone/Classes/RhoUIWebView.h +5 -0
  171. data/platform/iphone/Classes/RhoUIWebView.m +14 -6
  172. data/platform/iphone/Classes/{RhoWKWebView.m → RhoWKWebView.mm} +98 -18
  173. data/platform/iphone/Classes/RhoWebView.h +1 -1
  174. data/platform/iphone/Classes/RhoWebViewFabrique.m +24 -12
  175. data/platform/iphone/Classes/Rhodes.h +7 -2
  176. data/platform/iphone/Classes/Rhodes.m +46 -8
  177. data/platform/iphone/Classes/SimpleMainView.m +22 -13
  178. data/platform/iphone/Classes/URLProtocol/CRhoURLProtocol.h +32 -3
  179. data/platform/iphone/Classes/URLProtocol/CRhoURLProtocol.m +93 -61
  180. data/platform/iphone/Classes/URLProtocol/CRhoWKURLProtocol.h +22 -0
  181. data/platform/iphone/Classes/URLProtocol/CRhoWKURLProtocol.m +246 -0
  182. data/platform/iphone/Classes/WebView.m +14 -2
  183. data/platform/iphone/Entitlements.plist +1 -1
  184. data/platform/iphone/Framework/RhoApplication/RhoApplication.xcodeproj/project.pbxproj +399 -0
  185. data/platform/iphone/Framework/Rhodes/Rhodes.xcodeproj/project.pbxproj +1208 -0
  186. data/platform/iphone/Framework/Rhodes/Rhodes/Info.plist +24 -0
  187. data/platform/iphone/Framework/Rhodes/Rhodes/Rhodes.h +21 -0
  188. data/platform/iphone/Framework/Rhodes/Rhodes/StubCode.m +15 -0
  189. data/platform/iphone/Info.plist +1 -3
  190. data/platform/iphone/RhoAppBaseLib/RhoAppBaseLib.xcodeproj/project.pbxproj +511 -4
  191. data/platform/iphone/RhoLib/RhoLib.xcodeproj/project.pbxproj +467 -1
  192. data/platform/iphone/Rhodes.xcodeproj/project.pbxproj +51 -274
  193. data/platform/iphone/RhodesBaseDelegate.h +1 -1
  194. data/platform/iphone/curl/curl.xcodeproj/project.pbxproj +85 -3
  195. data/platform/iphone/rbuild/ApplicationPlist.erb +1 -1
  196. data/platform/iphone/rbuild/iphone.rake +497 -25
  197. data/platform/iphone/rbuild/iphonecommon.rb +15 -6
  198. data/platform/iphone/rhodes_stub.cpp +15 -0
  199. data/platform/iphone/rhodeslib/api/RhodesLib.h +28 -0
  200. data/platform/iphone/rhodeslib/impl/RhodesLib.m +52 -0
  201. data/platform/iphone/rhodesruby/api/IRefCountedObject.h +20 -0
  202. data/platform/iphone/rhodesruby/api/IRhoRuby.h +72 -0
  203. data/platform/iphone/rhodesruby/api/IRhoRubyArray.h +12 -0
  204. data/platform/iphone/rhodesruby/api/IRhoRubyBoolean.h +11 -0
  205. data/platform/iphone/rhodesruby/api/IRhoRubyFloat.h +10 -0
  206. data/platform/iphone/rhodesruby/api/IRhoRubyHash.h +15 -0
  207. data/platform/iphone/rhodesruby/api/IRhoRubyInteger.h +10 -0
  208. data/platform/iphone/rhodesruby/api/IRhoRubyMutableArray.h +9 -0
  209. data/platform/iphone/rhodesruby/api/IRhoRubyMutableBoolean.h +10 -0
  210. data/platform/iphone/rhodesruby/api/IRhoRubyMutableFloat.h +10 -0
  211. data/platform/iphone/rhodesruby/api/IRhoRubyMutableHash.h +10 -0
  212. data/platform/iphone/rhodesruby/api/IRhoRubyMutableInteger.h +10 -0
  213. data/platform/iphone/rhodesruby/api/IRhoRubyMutableString.h +10 -0
  214. data/platform/iphone/rhodesruby/api/IRhoRubyNativeCallback.h +9 -0
  215. data/platform/iphone/rhodesruby/api/IRhoRubyNil.h +10 -0
  216. data/platform/iphone/rhodesruby/api/IRhoRubyObject.h +37 -0
  217. data/platform/iphone/rhodesruby/api/IRhoRubyRunnable.h +8 -0
  218. data/platform/iphone/rhodesruby/api/IRhoRubyString.h +10 -0
  219. data/platform/iphone/rhodesruby/api/RhoRuby.h +26 -0
  220. data/platform/iphone/rhodesruby/api/RhoRubySingletone.h +14 -0
  221. data/platform/iphone/rhodesruby/impl/RhoRubyFabrique.h +10 -0
  222. data/platform/iphone/rhodesruby/impl/RhoRubyImpl.h +56 -0
  223. data/platform/iphone/rhodesruby/impl/RhoRubyImpl.mm +432 -0
  224. data/platform/iphone/rhodesruby/impl/RhoRubyMutableArrayImpl.h +24 -0
  225. data/platform/iphone/rhodesruby/impl/RhoRubyMutableArrayImpl.mm +43 -0
  226. data/platform/iphone/rhodesruby/impl/RhoRubyMutableBooleanImpl.h +23 -0
  227. data/platform/iphone/rhodesruby/impl/RhoRubyMutableBooleanImpl.mm +38 -0
  228. data/platform/iphone/rhodesruby/impl/RhoRubyMutableFloatImpl.h +23 -0
  229. data/platform/iphone/rhodesruby/impl/RhoRubyMutableFloatImpl.mm +35 -0
  230. data/platform/iphone/rhodesruby/impl/RhoRubyMutableHashImpl.h +24 -0
  231. data/platform/iphone/rhodesruby/impl/RhoRubyMutableHashImpl.mm +48 -0
  232. data/platform/iphone/rhodesruby/impl/RhoRubyMutableIntegerImpl.h +23 -0
  233. data/platform/iphone/rhodesruby/impl/RhoRubyMutableIntegerImpl.mm +35 -0
  234. data/platform/iphone/rhodesruby/impl/RhoRubyMutableStringImpl.h +23 -0
  235. data/platform/iphone/rhodesruby/impl/RhoRubyMutableStringImpl.mm +35 -0
  236. data/platform/iphone/rhodesruby/impl/RhoRubyNilImpl.h +22 -0
  237. data/platform/iphone/rhodesruby/impl/RhoRubyNilImpl.mm +11 -0
  238. data/platform/iphone/rhodesruby/impl/RhoRubyObjectImpl.h +31 -0
  239. data/platform/iphone/rhodesruby/impl/RhoRubyObjectImpl.mm +49 -0
  240. data/platform/iphone/rhodesruby/impl/RhoRubySingletone.m +19 -0
  241. data/platform/iphone/rhodesruby/impl/RubyServerResponceImpl.h +21 -0
  242. data/platform/iphone/rhodesruby/impl/RubyServerResponceImpl.mm +32 -0
  243. data/platform/iphone/rhoextlib/rhoextlib.xcodeproj/project.pbxproj +79 -0
  244. data/platform/iphone/rhorubylib/rhorubylib.xcodeproj/project.pbxproj +91 -0
  245. data/platform/iphone/rhosynclib/rhosynclib.xcodeproj/project.pbxproj +85 -0
  246. data/platform/osx/bin/RhoSimulator/RhoSimulator.app.zip +0 -0
  247. data/platform/shared/common/IRhoClassFactory.h +2 -0
  248. data/platform/shared/common/ISecurityTokenGenerator.h +16 -0
  249. data/platform/shared/common/RhoFile.cpp +11 -0
  250. data/platform/shared/common/RhoMath.h +14 -0
  251. data/platform/shared/common/RhoMutexLock.h +13 -0
  252. data/platform/shared/common/RhoSystem.h +1 -1
  253. data/platform/shared/common/RhoThread.cpp +25 -0
  254. data/platform/shared/common/RhodesApp.cpp +52 -6
  255. data/platform/shared/common/RhodesApp.h +25 -1
  256. data/platform/shared/common/RhodesAppBase.cpp +4 -2
  257. data/platform/shared/common/RhodesAppBase.h +5 -0
  258. data/platform/shared/common/iphone/RhoClassfactory.h +6 -0
  259. data/platform/shared/common/iphone/RhoCryptImpl.mm +21 -2
  260. data/platform/shared/common/map/BaseMapEngine.cpp +2 -2
  261. data/platform/shared/common/map/GeocodingMapEngine.cpp +1 -1
  262. data/platform/shared/common/map/GoogleMapEngine.cpp +1 -1
  263. data/platform/shared/common/map/OSMMapEngine.cpp +1 -1
  264. data/platform/shared/curl/lib/curl_config.h +28 -0
  265. data/platform/shared/db/DBAdapter.cpp +18 -10
  266. data/platform/shared/json.new/JSONIterator.cpp +2 -2
  267. data/platform/shared/net/HttpServer.cpp +32 -0
  268. data/platform/shared/net/HttpServer.h +15 -0
  269. data/platform/shared/net/INetRequest.cpp +54 -0
  270. data/platform/shared/qt/RhoRubylib.pro +10 -0
  271. data/platform/shared/qt/rhodes/impl/AlertImpl.cpp +13 -0
  272. data/platform/shared/qt/rhodes/impl/CameraImpl.cpp +6 -0
  273. data/platform/shared/qt/rhodes/impl/DateTimePickerImpl.cpp +4 -0
  274. data/platform/shared/qt/rhodes/impl/MainWindowImpl.cpp +36 -7
  275. data/platform/shared/qt/rhodes/impl/MainWindowImpl.h +12 -1
  276. data/platform/shared/qt/rhodes/impl/NativeTabbarImpl.cpp +21 -2
  277. data/platform/shared/qt/rhodes/impl/NativeTabbarImpl.h +1 -0
  278. data/platform/shared/qt/rhodes/impl/NativeToolbarImpl.cpp +10 -0
  279. data/platform/shared/qt/rhodes/impl/QtSystemImpl.cpp +55 -3
  280. data/platform/shared/qt/rhodes/impl/RhoClassFactoryImpl.h +11 -0
  281. data/platform/shared/qt/rhodes/impl/RhoThreadImpl.cpp +71 -7
  282. data/platform/shared/qt/rhodes/impl/RhoThreadImpl.h +79 -2
  283. data/platform/shared/qt/rhodes/impl/RhodesImpl.cpp +16 -6
  284. data/platform/shared/qt/rhodes/impl/SecurityTokenGeneratorImpl.cpp +37 -0
  285. data/platform/shared/qt/rhodes/impl/SecurityTokenGeneratorImpl.h +25 -0
  286. data/platform/shared/qt/rhodes/impl/SignatureImpl.cpp +2 -0
  287. data/platform/shared/qt/rhodes/impl/WebViewImpl.cpp +27 -0
  288. data/platform/shared/qt/rhodes/impl/notificationsound.cpp +16 -2
  289. data/platform/shared/qt/rhodes/impl/notificationsound.h +11 -1
  290. data/platform/shared/qt/rhodes/newVersion/QtMainWindow.cpp +25 -16
  291. data/platform/shared/qt/rhodes/newVersion/QtMainWindow.h +3 -0
  292. data/platform/shared/qt/rhodes/newVersion/WebUrlRequestInterceptor.cpp +17 -0
  293. data/platform/shared/qt/rhodes/rhodes.pro +68 -14
  294. data/platform/shared/qt/rhodes/rhorubyVersion/rhodeslib.cpp +148 -0
  295. data/platform/shared/qt/rhodes/rhorubyVersion/rhodeslib.h +12 -0
  296. data/platform/shared/qt/rholib/rholib.pro +33 -5
  297. data/platform/shared/qt/rhoruby_win32_build.bat +19 -0
  298. data/platform/shared/qt/rhoruby_win32_build_debug.bat +19 -0
  299. data/platform/shared/qt/rhosimulator_win32_build_debug.bat +19 -0
  300. data/platform/shared/qt/rubylib/rubylib.pro +1 -0
  301. data/platform/shared/qt/sqlite3/sqlite3.pro +1 -0
  302. data/platform/shared/qt/syncengine/syncengine.pro +1 -0
  303. data/platform/shared/rhoruby/api/IArray.h +20 -0
  304. data/platform/shared/rhoruby/api/IBoolean.h +17 -0
  305. data/platform/shared/rhoruby/api/IFloat.h +17 -0
  306. data/platform/shared/rhoruby/api/IHash.h +23 -0
  307. data/platform/shared/rhoruby/api/IInteger.h +18 -0
  308. data/platform/shared/rhoruby/api/IMutableArray.h +18 -0
  309. data/platform/shared/rhoruby/api/IMutableBoolean.h +18 -0
  310. data/platform/shared/rhoruby/api/IMutableFloat.h +17 -0
  311. data/platform/shared/rhoruby/api/IMutableHash.h +18 -0
  312. data/platform/shared/rhoruby/api/IMutableInteger.h +17 -0
  313. data/platform/shared/rhoruby/api/IMutableString.h +17 -0
  314. data/platform/shared/rhoruby/api/INil.h +16 -0
  315. data/platform/shared/rhoruby/api/IObject.h +46 -0
  316. data/platform/shared/rhoruby/api/IRefCountedObject.h +20 -0
  317. data/platform/shared/rhoruby/api/IRhoRuby.h +78 -0
  318. data/platform/shared/rhoruby/api/IRunnable.h +17 -0
  319. data/platform/shared/rhoruby/api/IString.h +17 -0
  320. data/platform/shared/rhoruby/api/RhoRuby.h +29 -0
  321. data/platform/shared/rhoruby/api/RhoRubySingletone.h +19 -0
  322. data/platform/shared/rhoruby/api/SmartPointer.h +27 -0
  323. data/platform/shared/rhoruby/impl/MutableArrayImpl.cpp +54 -0
  324. data/platform/shared/rhoruby/impl/MutableArrayImpl.h +48 -0
  325. data/platform/shared/rhoruby/impl/MutableBooleanImpl.cpp +44 -0
  326. data/platform/shared/rhoruby/impl/MutableBooleanImpl.h +44 -0
  327. data/platform/shared/rhoruby/impl/MutableFloatImpl.cpp +41 -0
  328. data/platform/shared/rhoruby/impl/MutableFloatImpl.h +44 -0
  329. data/platform/shared/rhoruby/impl/MutableHashImpl.cpp +64 -0
  330. data/platform/shared/rhoruby/impl/MutableHashImpl.h +49 -0
  331. data/platform/shared/rhoruby/impl/MutableIntegerImpl.cpp +41 -0
  332. data/platform/shared/rhoruby/impl/MutableIntegerImpl.h +44 -0
  333. data/platform/shared/rhoruby/impl/MutableStringImpl.cpp +52 -0
  334. data/platform/shared/rhoruby/impl/MutableStringImpl.h +44 -0
  335. data/platform/shared/rhoruby/impl/NilImpl.cpp +23 -0
  336. data/platform/shared/rhoruby/impl/NilImpl.h +32 -0
  337. data/platform/shared/rhoruby/impl/ObjectImpl.cpp +77 -0
  338. data/platform/shared/rhoruby/impl/ObjectImpl.h +53 -0
  339. data/platform/shared/rhoruby/impl/RefCountedObjectImpl.cpp +28 -0
  340. data/platform/shared/rhoruby/impl/RefCountedObjectImpl.h +33 -0
  341. data/platform/shared/rhoruby/impl/RhoRubyImpl.cpp +799 -0
  342. data/platform/shared/rhoruby/impl/RhoRubyImpl.h +81 -0
  343. data/platform/shared/rhoruby/impl/RhoRubySingletone.cpp +20 -0
  344. data/platform/shared/rhoruby/impl/RubyServerResponceImpl.cpp +32 -0
  345. data/platform/shared/rhoruby/impl/RubyServerResponceImpl.h +21 -0
  346. data/platform/shared/ruby/android/ruby/config.h +55 -3
  347. data/platform/shared/ruby/error.c +1 -1
  348. data/platform/shared/ruby/ext/rho/rhoruby.c +60 -7
  349. data/platform/shared/ruby/ext/rho/rhoruby.h +3 -0
  350. data/platform/shared/rubyext/NativeToolbarExt.h +1 -0
  351. data/platform/uwp/rhodes/rhodes_TemporaryKey.pfx +0 -0
  352. data/platform/uwp/rhoruntime/common/RhoClassFactory.h +6 -0
  353. data/platform/win32/RhoSimulator/Qt5Core.dll +0 -0
  354. data/platform/win32/RhoSimulator/Qt5Gui.dll +0 -0
  355. data/platform/win32/RhoSimulator/Qt5Multimedia.dll +0 -0
  356. data/platform/win32/RhoSimulator/Qt5Network.dll +0 -0
  357. data/platform/win32/RhoSimulator/Qt5Positioning.dll +0 -0
  358. data/platform/win32/RhoSimulator/Qt5PrintSupport.dll +0 -0
  359. data/platform/win32/RhoSimulator/Qt5Qml.dll +0 -0
  360. data/platform/win32/RhoSimulator/Qt5Quick.dll +0 -0
  361. data/platform/win32/RhoSimulator/Qt5QuickWidgets.dll +0 -0
  362. data/platform/win32/RhoSimulator/Qt5SerialPort.dll +0 -0
  363. data/platform/win32/RhoSimulator/Qt5Svg.dll +0 -0
  364. data/platform/win32/RhoSimulator/Qt5WebChannel.dll +0 -0
  365. data/platform/win32/RhoSimulator/Qt5WebEngine.dll +0 -0
  366. data/platform/win32/RhoSimulator/Qt5WebEngineCore.dll +0 -0
  367. data/platform/win32/RhoSimulator/Qt5WebEngineWidgets.dll +0 -0
  368. data/platform/win32/RhoSimulator/Qt5Widgets.dll +0 -0
  369. data/platform/win32/RhoSimulator/QtWebEngineProcess.exe +0 -0
  370. data/platform/win32/RhoSimulator/RhoSimulator.exe +0 -0
  371. data/platform/win32/RhoSimulator/audio/qtaudio_wasapi.dll +0 -0
  372. data/platform/win32/RhoSimulator/audio/qtaudio_windows.dll +0 -0
  373. data/platform/win32/RhoSimulator/bearer/qgenericbearer.dll +0 -0
  374. data/platform/win32/RhoSimulator/iconengines/qsvgicon.dll +0 -0
  375. data/platform/win32/RhoSimulator/imageformats/qgif.dll +0 -0
  376. data/platform/win32/RhoSimulator/imageformats/qicns.dll +0 -0
  377. data/platform/win32/RhoSimulator/imageformats/qico.dll +0 -0
  378. data/platform/win32/RhoSimulator/imageformats/qjpeg.dll +0 -0
  379. data/platform/win32/RhoSimulator/imageformats/qsvg.dll +0 -0
  380. data/platform/win32/RhoSimulator/imageformats/qtga.dll +0 -0
  381. data/platform/win32/RhoSimulator/imageformats/qtiff.dll +0 -0
  382. data/platform/win32/RhoSimulator/imageformats/qwbmp.dll +0 -0
  383. data/platform/win32/RhoSimulator/imageformats/qwebp.dll +0 -0
  384. data/platform/win32/RhoSimulator/libEGL.dll +0 -0
  385. data/platform/win32/RhoSimulator/libGLESV2.dll +0 -0
  386. data/platform/win32/RhoSimulator/mediaservice/dsengine.dll +0 -0
  387. data/platform/win32/RhoSimulator/mediaservice/qtmedia_audioengine.dll +0 -0
  388. data/platform/win32/RhoSimulator/mediaservice/wmfengine.dll +0 -0
  389. data/platform/win32/RhoSimulator/platforms/qwindows.dll +0 -0
  390. data/platform/win32/RhoSimulator/playlistformats/qtmultimedia_m3u.dll +0 -0
  391. data/platform/win32/RhoSimulator/position/qtposition_geoclue.dll +0 -0
  392. data/platform/win32/RhoSimulator/position/qtposition_positionpoll.dll +0 -0
  393. data/platform/win32/RhoSimulator/position/qtposition_serialnmea.dll +0 -0
  394. data/platform/win32/RhoSimulator/position/qtposition_winrt.dll +0 -0
  395. data/platform/win32/RhoSimulator/printsupport/windowsprintersupport.dll +0 -0
  396. data/platform/wm/build/wm.rake +110 -5
  397. data/platform/wm/rhodes/rho/common/ExtManager.cpp +30 -0
  398. data/platform/wm/rhodes/rho/common/RhoClassFactory.h +6 -0
  399. data/platform/wm/rhodes/rho/rubyext/SystemImpl.cpp +3 -0
  400. data/platform/wm/rubylib/rubylib.vcxproj +6 -0
  401. data/platform/wp8/rhoruntime/common/RhoClassFactory.h +6 -0
  402. data/rakefile.rb +14 -10
  403. data/res/build-tools/iphonesim/build/Release/iphonesim_8 +23 -15
  404. data/res/build-tools/maven/LICENSE +18 -89
  405. data/res/build-tools/maven/NOTICE +1 -1
  406. data/res/build-tools/maven/README.txt +12 -12
  407. data/res/build-tools/maven/bin/m2.conf +2 -2
  408. data/res/build-tools/maven/bin/mvn +122 -125
  409. data/res/build-tools/maven/bin/mvn.cmd +205 -0
  410. data/res/build-tools/maven/bin/mvnDebug +10 -176
  411. data/res/build-tools/maven/bin/mvnDebug.cmd +33 -0
  412. data/res/build-tools/maven/bin/mvnyjp +9 -181
  413. data/res/build-tools/maven/boot/plexus-classworlds-2.6.0.jar +0 -0
  414. data/res/build-tools/maven/conf/logging/simplelogger.properties +8 -1
  415. data/res/build-tools/maven/conf/settings.xml +1 -1
  416. data/res/build-tools/maven/conf/toolchains.xml +103 -0
  417. data/res/build-tools/maven/lib/animal-sniffer-annotations-1.14.jar +0 -0
  418. data/res/build-tools/maven/lib/animal-sniffer-annotations.license +14 -0
  419. data/res/build-tools/maven/lib/checker-compat-qual-2.0.0.jar +0 -0
  420. data/res/build-tools/maven/lib/checker-compat-qual.license +14 -0
  421. data/res/build-tools/maven/lib/commons-cli-1.4.jar +0 -0
  422. data/res/build-tools/maven/lib/commons-io-2.5.jar +0 -0
  423. data/res/build-tools/maven/lib/commons-lang3-3.8.1.jar +0 -0
  424. data/res/build-tools/maven/lib/error_prone_annotations-2.1.3.jar +0 -0
  425. data/res/build-tools/maven/lib/guava-25.1-android.jar +0 -0
  426. data/res/build-tools/maven/lib/guice-4.2.1-no_aop.jar +0 -0
  427. data/res/build-tools/maven/lib/j2objc-annotations-1.1.jar +0 -0
  428. data/res/build-tools/maven/lib/jansi-1.17.1.jar +0 -0
  429. data/res/build-tools/maven/lib/jansi-native/README.txt +7 -0
  430. data/res/build-tools/maven/lib/jansi-native/freebsd32/libjansi.so +0 -0
  431. data/res/build-tools/maven/lib/jansi-native/freebsd64/libjansi.so +0 -0
  432. data/res/build-tools/maven/lib/jansi-native/linux32/libjansi.so +0 -0
  433. data/res/build-tools/maven/lib/jansi-native/linux64/libjansi.so +0 -0
  434. data/res/build-tools/maven/lib/jansi-native/osx/libjansi.jnilib +0 -0
  435. data/res/build-tools/maven/lib/jansi-native/windows32/jansi.dll +0 -0
  436. data/res/build-tools/maven/lib/jansi-native/windows64/jansi.dll +0 -0
  437. data/res/build-tools/maven/lib/jcl-over-slf4j-1.7.25.jar +0 -0
  438. data/res/build-tools/maven/lib/jcl-over-slf4j.license +14 -0
  439. data/res/build-tools/maven/lib/jsr250-api.license +383 -405
  440. data/res/build-tools/maven/lib/jsr305-3.0.2.jar +0 -0
  441. data/res/build-tools/maven/lib/maven-artifact-3.6.1.jar +0 -0
  442. data/res/build-tools/maven/lib/maven-builder-support-3.6.1.jar +0 -0
  443. data/res/build-tools/maven/lib/maven-compat-3.6.1.jar +0 -0
  444. data/res/build-tools/maven/lib/maven-core-3.6.1.jar +0 -0
  445. data/res/build-tools/maven/lib/maven-embedder-3.6.1.jar +0 -0
  446. data/res/build-tools/maven/lib/maven-model-3.6.1.jar +0 -0
  447. data/res/build-tools/maven/lib/maven-model-builder-3.6.1.jar +0 -0
  448. data/res/build-tools/maven/lib/maven-plugin-api-3.6.1.jar +0 -0
  449. data/res/build-tools/maven/lib/maven-repository-metadata-3.6.1.jar +0 -0
  450. data/res/build-tools/maven/lib/maven-resolver-api-1.3.3.jar +0 -0
  451. data/res/build-tools/maven/lib/maven-resolver-connector-basic-1.3.3.jar +0 -0
  452. data/res/build-tools/maven/lib/maven-resolver-impl-1.3.3.jar +0 -0
  453. data/res/build-tools/maven/lib/maven-resolver-provider-3.6.1.jar +0 -0
  454. data/res/build-tools/maven/lib/maven-resolver-spi-1.3.3.jar +0 -0
  455. data/res/build-tools/maven/lib/maven-resolver-transport-wagon-1.3.3.jar +0 -0
  456. data/res/build-tools/maven/lib/maven-resolver-util-1.3.3.jar +0 -0
  457. data/res/build-tools/maven/lib/maven-settings-3.6.1.jar +0 -0
  458. data/res/build-tools/maven/lib/maven-settings-builder-3.6.1.jar +0 -0
  459. data/res/build-tools/maven/lib/maven-shared-utils-3.2.1.jar +0 -0
  460. data/res/build-tools/maven/lib/maven-slf4j-provider-3.6.1.jar +0 -0
  461. data/res/build-tools/maven/lib/org.eclipse.sisu.inject-0.3.3.jar +0 -0
  462. data/res/build-tools/maven/lib/org.eclipse.sisu.inject.license +210 -261
  463. data/res/build-tools/maven/lib/org.eclipse.sisu.plexus-0.3.3.jar +0 -0
  464. data/res/build-tools/maven/lib/org.eclipse.sisu.plexus.license +210 -261
  465. data/res/build-tools/maven/lib/plexus-component-annotations-1.7.1.jar +0 -0
  466. data/res/build-tools/maven/lib/plexus-interpolation-1.25.jar +0 -0
  467. data/res/build-tools/maven/lib/plexus-sec-dispatcher-1.4.jar +0 -0
  468. data/res/build-tools/maven/lib/plexus-utils-3.2.0.jar +0 -0
  469. data/res/build-tools/maven/lib/slf4j-api-1.7.25.jar +0 -0
  470. data/res/build-tools/maven/lib/slf4j-api.license +10 -186
  471. data/res/build-tools/maven/lib/wagon-file-3.3.2.jar +0 -0
  472. data/res/build-tools/maven/lib/wagon-http-3.3.2-shaded.jar +0 -0
  473. data/res/build-tools/maven/lib/wagon-provider-api-3.3.2.jar +0 -0
  474. data/res/generators/rhogen.rb +150 -0
  475. data/res/generators/templates/application/AndroidManifest.erb +13 -4
  476. data/res/generators/templates/application/build.yml +9 -0
  477. data/res/generators/templates/application/nodejs_build.yml +1 -1
  478. data/res/generators/templates/application/resources/android/res/xml/network_security_config.xml +7 -0
  479. data/res/generators/templates/application/rhoconfig.txt +13 -6
  480. data/res/generators/templates/application/rhoconfig_rubynode.txt +139 -0
  481. data/res/generators/templates/application/rubynodejs_build.yml +95 -0
  482. data/res/generators/templates/extension/extensions/montana/ext/platform/android/Rakefile +19 -0
  483. data/res/generators/templates/iphone_project/root/Entitlements.plist +1 -1
  484. data/res/generators/templates/iphone_project/root/Info.plist +1 -3
  485. data/res/generators/templates/iphone_project/root/rhorunner_development.entitlements +1 -1
  486. data/res/generators/templates/iphone_project/root/rhorunner_production.entitlements +1 -1
  487. data/rhodes.gemspec +2 -2
  488. data/version +1 -1
  489. metadata +244 -71
  490. data/res/build-tools/maven/bin/mvn.bat +0 -197
  491. data/res/build-tools/maven/bin/mvnDebug.bat +0 -200
  492. data/res/build-tools/maven/boot/plexus-classworlds-2.5.2.jar +0 -0
  493. data/res/build-tools/maven/lib/aether-api-1.0.0.v20140518.jar +0 -0
  494. data/res/build-tools/maven/lib/aether-api.license +0 -261
  495. data/res/build-tools/maven/lib/aether-connector-basic-1.0.0.v20140518.jar +0 -0
  496. data/res/build-tools/maven/lib/aether-connector-basic.license +0 -261
  497. data/res/build-tools/maven/lib/aether-impl-1.0.0.v20140518.jar +0 -0
  498. data/res/build-tools/maven/lib/aether-impl.license +0 -261
  499. data/res/build-tools/maven/lib/aether-spi-1.0.0.v20140518.jar +0 -0
  500. data/res/build-tools/maven/lib/aether-spi.license +0 -261
  501. data/res/build-tools/maven/lib/aether-transport-wagon-1.0.0.v20140518.jar +0 -0
  502. data/res/build-tools/maven/lib/aether-transport-wagon.license +0 -261
  503. data/res/build-tools/maven/lib/aether-util-1.0.0.v20140518.jar +0 -0
  504. data/res/build-tools/maven/lib/aether-util.license +0 -261
  505. data/res/build-tools/maven/lib/cdi-api.license +0 -445
  506. data/res/build-tools/maven/lib/commons-cli-1.2.jar +0 -0
  507. data/res/build-tools/maven/lib/commons-io-2.2.jar +0 -0
  508. data/res/build-tools/maven/lib/commons-lang-2.6.jar +0 -0
  509. data/res/build-tools/maven/lib/guava-18.0.jar +0 -0
  510. data/res/build-tools/maven/lib/jsoup-1.7.2.jar +0 -0
  511. data/res/build-tools/maven/lib/jsoup.license +0 -66
  512. data/res/build-tools/maven/lib/maven-aether-provider-3.2.5.jar +0 -0
  513. data/res/build-tools/maven/lib/maven-aether-provider.license +0 -202
  514. data/res/build-tools/maven/lib/maven-artifact-3.2.5.jar +0 -0
  515. data/res/build-tools/maven/lib/maven-artifact.license +0 -202
  516. data/res/build-tools/maven/lib/maven-compat-3.2.5.jar +0 -0
  517. data/res/build-tools/maven/lib/maven-compat.license +0 -202
  518. data/res/build-tools/maven/lib/maven-core-3.2.5.jar +0 -0
  519. data/res/build-tools/maven/lib/maven-core.license +0 -202
  520. data/res/build-tools/maven/lib/maven-embedder-3.2.5.jar +0 -0
  521. data/res/build-tools/maven/lib/maven-embedder.license +0 -202
  522. data/res/build-tools/maven/lib/maven-model-3.2.5.jar +0 -0
  523. data/res/build-tools/maven/lib/maven-model-builder-3.2.5.jar +0 -0
  524. data/res/build-tools/maven/lib/maven-model-builder.license +0 -202
  525. data/res/build-tools/maven/lib/maven-model.license +0 -202
  526. data/res/build-tools/maven/lib/maven-plugin-api-3.2.5.jar +0 -0
  527. data/res/build-tools/maven/lib/maven-plugin-api.license +0 -202
  528. data/res/build-tools/maven/lib/maven-repository-metadata-3.2.5.jar +0 -0
  529. data/res/build-tools/maven/lib/maven-repository-metadata.license +0 -202
  530. data/res/build-tools/maven/lib/maven-settings-3.2.5.jar +0 -0
  531. data/res/build-tools/maven/lib/maven-settings-builder-3.2.5.jar +0 -0
  532. data/res/build-tools/maven/lib/maven-settings-builder.license +0 -202
  533. data/res/build-tools/maven/lib/maven-settings.license +0 -202
  534. data/res/build-tools/maven/lib/org.eclipse.sisu.inject-0.3.0.M1.jar +0 -0
  535. data/res/build-tools/maven/lib/org.eclipse.sisu.plexus-0.3.0.M1.jar +0 -0
  536. data/res/build-tools/maven/lib/plexus-cipher.license +0 -445
  537. data/res/build-tools/maven/lib/plexus-component-annotations-1.5.5.jar +0 -0
  538. data/res/build-tools/maven/lib/plexus-interpolation-1.21.jar +0 -0
  539. data/res/build-tools/maven/lib/plexus-sec-dispatcher-1.3.jar +0 -0
  540. data/res/build-tools/maven/lib/plexus-sec-dispatcher.license +0 -445
  541. data/res/build-tools/maven/lib/plexus-utils-3.0.20.jar +0 -0
  542. data/res/build-tools/maven/lib/sisu-guice-3.2.3-no_aop.jar +0 -0
  543. data/res/build-tools/maven/lib/slf4j-api-1.7.5.jar +0 -0
  544. data/res/build-tools/maven/lib/slf4j-simple-1.7.5.jar +0 -0
  545. data/res/build-tools/maven/lib/slf4j-simple.license +0 -190
  546. data/res/build-tools/maven/lib/wagon-file-2.8.jar +0 -0
  547. data/res/build-tools/maven/lib/wagon-file.license +0 -202
  548. data/res/build-tools/maven/lib/wagon-http-2.8-shaded.jar +0 -0
  549. data/res/build-tools/maven/lib/wagon-http-shared-2.8.jar +0 -0
  550. data/res/build-tools/maven/lib/wagon-http-shared.license +0 -202
  551. data/res/build-tools/maven/lib/wagon-http.license +0 -202
  552. data/res/build-tools/maven/lib/wagon-provider-api-2.8.jar +0 -0
  553. data/res/build-tools/maven/lib/wagon-provider-api.license +0 -202
@@ -0,0 +1,1208 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 50;
7
+ objects = {
8
+
9
+ /* Begin PBXAggregateTarget section */
10
+ FA7A09D82260564500B95E07 /* Framework */ = {
11
+ isa = PBXAggregateTarget;
12
+ buildConfigurationList = FA7A09D92260564500B95E07 /* Build configuration list for PBXAggregateTarget "Framework" */;
13
+ buildPhases = (
14
+ FA7A09DE2260570000B95E07 /* ShellScript */,
15
+ );
16
+ dependencies = (
17
+ );
18
+ name = Framework;
19
+ productName = Framework;
20
+ };
21
+ FAD3576F22646BEF00419673 /* Framework copy */ = {
22
+ isa = PBXAggregateTarget;
23
+ buildConfigurationList = FAD3577122646BEF00419673 /* Build configuration list for PBXAggregateTarget "Framework copy" */;
24
+ buildPhases = (
25
+ FAD3577022646BEF00419673 /* ShellScript */,
26
+ );
27
+ dependencies = (
28
+ );
29
+ name = "Framework copy";
30
+ productName = Framework;
31
+ };
32
+ /* End PBXAggregateTarget section */
33
+
34
+ /* Begin PBXBuildFile section */
35
+ FA7A090C22603A0F00B95E07 /* Rhodes.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A090A22603A0F00B95E07 /* Rhodes.h */; settings = {ATTRIBUTES = (Public, ); }; };
36
+ FA7A091422603A9000B95E07 /* EventKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A091322603A9000B95E07 /* EventKit.framework */; };
37
+ FA7A091622603A9B00B95E07 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A091522603A9B00B95E07 /* QuartzCore.framework */; };
38
+ FA7A091822603AA200B95E07 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A091722603AA200B95E07 /* Security.framework */; };
39
+ FA7A091A22603AA700B95E07 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A091922603AA700B95E07 /* CFNetwork.framework */; };
40
+ FA7A091C22603AAE00B95E07 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A091B22603AAE00B95E07 /* MapKit.framework */; };
41
+ FA7A091E22603AB900B95E07 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A091D22603AB900B95E07 /* libc++.tbd */; };
42
+ FA7A092022603AC000B95E07 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A091F22603AC000B95E07 /* libz.tbd */; };
43
+ FA7A092222603AC700B95E07 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A092122603AC700B95E07 /* CoreGraphics.framework */; };
44
+ FA7A092422603AD000B95E07 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A092322603ACF00B95E07 /* AVFoundation.framework */; };
45
+ FA7A092622603AD600B95E07 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A092522603AD600B95E07 /* AudioToolbox.framework */; };
46
+ FA7A092822603ADE00B95E07 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A092722603ADE00B95E07 /* SystemConfiguration.framework */; };
47
+ FA7A092A22603AE500B95E07 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A092922603AE500B95E07 /* CoreLocation.framework */; };
48
+ FA7A092C22603AEE00B95E07 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A092B22603AED00B95E07 /* CoreFoundation.framework */; };
49
+ FA7A092E22603AF400B95E07 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A092D22603AF400B95E07 /* CoreVideo.framework */; };
50
+ FA7A093022603AFB00B95E07 /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A092F22603AFB00B95E07 /* CoreMedia.framework */; };
51
+ FA7A093222603B0400B95E07 /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A093122603B0400B95E07 /* CoreMotion.framework */; };
52
+ FA7A093422603B0C00B95E07 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A093322603B0C00B95E07 /* MobileCoreServices.framework */; };
53
+ FA7A093622603B1600B95E07 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A093522603B1400B95E07 /* libsqlite3.0.tbd */; };
54
+ FA7A093822603B1E00B95E07 /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A093722603B1E00B95E07 /* libiconv.tbd */; };
55
+ FA7A093A22603B2500B95E07 /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A093922603B2500B95E07 /* MediaPlayer.framework */; };
56
+ FA7A093C22603B2E00B95E07 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A093B22603B2C00B95E07 /* WebKit.framework */; };
57
+ FA7A093E22603B3400B95E07 /* CoreImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A093D22603B3400B95E07 /* CoreImage.framework */; };
58
+ FA7A094022603B3F00B95E07 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A093F22603B3F00B95E07 /* ImageIO.framework */; };
59
+ FA7A094222603B4500B95E07 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A094122603B4500B95E07 /* UIKit.framework */; };
60
+ FA7A094422603B4C00B95E07 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A094322603B4C00B95E07 /* Foundation.framework */; };
61
+ FA7A096D22603D0300B95E07 /* IRhoRubyBoolean.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A095A22603D0200B95E07 /* IRhoRubyBoolean.h */; settings = {ATTRIBUTES = (Public, ); }; };
62
+ FA7A096E22603D0300B95E07 /* IRhoRubyMutableInteger.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A095B22603D0200B95E07 /* IRhoRubyMutableInteger.h */; settings = {ATTRIBUTES = (Public, ); }; };
63
+ FA7A096F22603D0300B95E07 /* IRhoRubyMutableFloat.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A095C22603D0200B95E07 /* IRhoRubyMutableFloat.h */; settings = {ATTRIBUTES = (Public, ); }; };
64
+ FA7A097022603D0300B95E07 /* IRhoRubyArray.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A095D22603D0200B95E07 /* IRhoRubyArray.h */; settings = {ATTRIBUTES = (Public, ); }; };
65
+ FA7A097122603D0300B95E07 /* IRhoRubyMutableString.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A095E22603D0200B95E07 /* IRhoRubyMutableString.h */; settings = {ATTRIBUTES = (Public, ); }; };
66
+ FA7A097222603D0300B95E07 /* IRhoRubyInteger.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A095F22603D0200B95E07 /* IRhoRubyInteger.h */; settings = {ATTRIBUTES = (Public, ); }; };
67
+ FA7A097322603D0300B95E07 /* IRhoRubyHash.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A096022603D0200B95E07 /* IRhoRubyHash.h */; settings = {ATTRIBUTES = (Public, ); }; };
68
+ FA7A097422603D0300B95E07 /* IRhoRubyMutableArray.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A096122603D0200B95E07 /* IRhoRubyMutableArray.h */; settings = {ATTRIBUTES = (Public, ); }; };
69
+ FA7A097522603D0300B95E07 /* IRhoRubyNil.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A096222603D0200B95E07 /* IRhoRubyNil.h */; settings = {ATTRIBUTES = (Public, ); }; };
70
+ FA7A097622603D0300B95E07 /* IRhoRubyRunnable.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A096322603D0200B95E07 /* IRhoRubyRunnable.h */; settings = {ATTRIBUTES = (Public, ); }; };
71
+ FA7A097722603D0300B95E07 /* IRhoRubyMutableHash.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A096422603D0200B95E07 /* IRhoRubyMutableHash.h */; settings = {ATTRIBUTES = (Public, ); }; };
72
+ FA7A097822603D0300B95E07 /* IRhoRubyString.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A096522603D0200B95E07 /* IRhoRubyString.h */; settings = {ATTRIBUTES = (Public, ); }; };
73
+ FA7A097922603D0300B95E07 /* RhoRuby.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A096622603D0200B95E07 /* RhoRuby.h */; settings = {ATTRIBUTES = (Public, ); }; };
74
+ FA7A097A22603D0300B95E07 /* RhoRubySingletone.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A096722603D0200B95E07 /* RhoRubySingletone.h */; settings = {ATTRIBUTES = (Public, ); }; };
75
+ FA7A097B22603D0300B95E07 /* IRhoRubyObject.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A096822603D0200B95E07 /* IRhoRubyObject.h */; settings = {ATTRIBUTES = (Public, ); }; };
76
+ FA7A097C22603D0300B95E07 /* IRhoRuby.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A096922603D0200B95E07 /* IRhoRuby.h */; settings = {ATTRIBUTES = (Public, ); }; };
77
+ FA7A097D22603D0300B95E07 /* IRhoRubyFloat.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A096A22603D0300B95E07 /* IRhoRubyFloat.h */; settings = {ATTRIBUTES = (Public, ); }; };
78
+ FA7A097E22603D0300B95E07 /* IRhoRubyMutableBoolean.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7A096B22603D0300B95E07 /* IRhoRubyMutableBoolean.h */; settings = {ATTRIBUTES = (Public, ); }; };
79
+ FA7A09AC2260419D00B95E07 /* StubCode.m in Sources */ = {isa = PBXBuildFile; fileRef = FA7A09AB2260419D00B95E07 /* StubCode.m */; };
80
+ FA7A09C322604B3B00B95E07 /* IArray.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098B22603D2100B95E07 /* IArray.h */; };
81
+ FA7A09C422604B3B00B95E07 /* IBoolean.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098022603D2000B95E07 /* IBoolean.h */; };
82
+ FA7A09C522604B3B00B95E07 /* IFloat.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098A22603D2000B95E07 /* IFloat.h */; };
83
+ FA7A09C622604B3B00B95E07 /* IHash.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A099122603D2100B95E07 /* IHash.h */; };
84
+ FA7A09C722604B3B00B95E07 /* IInteger.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098C22603D2100B95E07 /* IInteger.h */; };
85
+ FA7A09C822604B3B00B95E07 /* IMutableArray.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A099022603D2100B95E07 /* IMutableArray.h */; };
86
+ FA7A09C922604B3B00B95E07 /* IMutableBoolean.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098122603D2000B95E07 /* IMutableBoolean.h */; };
87
+ FA7A09CA22604B3B00B95E07 /* IMutableFloat.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098922603D2000B95E07 /* IMutableFloat.h */; };
88
+ FA7A09CB22604B3B00B95E07 /* IMutableHash.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098722603D2000B95E07 /* IMutableHash.h */; };
89
+ FA7A09CC22604B3B00B95E07 /* IMutableInteger.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098E22603D2100B95E07 /* IMutableInteger.h */; };
90
+ FA7A09CD22604B3B00B95E07 /* IMutableString.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098422603D2000B95E07 /* IMutableString.h */; };
91
+ FA7A09CE22604B3B00B95E07 /* INil.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098322603D2000B95E07 /* INil.h */; };
92
+ FA7A09CF22604B3B00B95E07 /* IObject.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A097F22603D2000B95E07 /* IObject.h */; };
93
+ FA7A09D022604B3B00B95E07 /* IRefCountedObject.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098622603D2000B95E07 /* IRefCountedObject.h */; };
94
+ FA7A09D122604B3B00B95E07 /* IRhoRuby.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A099222603D2100B95E07 /* IRhoRuby.h */; };
95
+ FA7A09D222604B3B00B95E07 /* IRunnable.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098D22603D2100B95E07 /* IRunnable.h */; };
96
+ FA7A09D322604B3B00B95E07 /* IString.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098F22603D2100B95E07 /* IString.h */; };
97
+ FA7A09D422604B3B00B95E07 /* RhoRuby.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098822603D2000B95E07 /* RhoRuby.h */; };
98
+ FA7A09D522604B3B00B95E07 /* RhoRubySingletone.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098222603D2000B95E07 /* RhoRubySingletone.h */; };
99
+ FA7A09D622604B3B00B95E07 /* SmartPointer.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = FA7A098522603D2000B95E07 /* SmartPointer.h */; };
100
+ FAD35730226458D700419673 /* RhodesLib.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD3572F226458D700419673 /* RhodesLib.h */; settings = {ATTRIBUTES = (Public, ); }; };
101
+ FAE3BEDA2265656000AE0C99 /* libcurl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A0A9D22630F9B00B95E07 /* libcurl.a */; };
102
+ FAE3BEDB2265656800AE0C99 /* libRhoAppBaseStandaloneLib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A0AB222630F9C00B95E07 /* libRhoAppBaseStandaloneLib.a */; };
103
+ FAE3BEDC2265656D00AE0C99 /* libRhoApplication.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAD356C32264206E00419673 /* libRhoApplication.a */; };
104
+ FAE3BEDD2265657300AE0C99 /* librhoextlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A0AA922630F9C00B95E07 /* librhoextlib.a */; };
105
+ FAE3BEDE2265657700AE0C99 /* librholib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A0A9722630F9B00B95E07 /* librholib.a */; };
106
+ FAE3BEDF2265657A00AE0C99 /* librhorubylib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A0AB922630F9C00B95E07 /* librhorubylib.a */; };
107
+ FAE3BEE02265657D00AE0C99 /* librhosynclib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7A0AA322630F9C00B95E07 /* librhosynclib.a */; };
108
+ /* End PBXBuildFile section */
109
+
110
+ /* Begin PBXContainerItemProxy section */
111
+ FA7A0A9622630F9B00B95E07 /* PBXContainerItemProxy */ = {
112
+ isa = PBXContainerItemProxy;
113
+ containerPortal = FA7A0A9222630F9B00B95E07 /* RhoLib.xcodeproj */;
114
+ proxyType = 2;
115
+ remoteGlobalIDString = D2AAC046055464E500DB518D;
116
+ remoteInfo = RhoLib;
117
+ };
118
+ FA7A0A9C22630F9B00B95E07 /* PBXContainerItemProxy */ = {
119
+ isa = PBXContainerItemProxy;
120
+ containerPortal = FA7A0A9822630F9B00B95E07 /* curl.xcodeproj */;
121
+ proxyType = 2;
122
+ remoteGlobalIDString = D2AAC046055464E500DB518D;
123
+ remoteInfo = curl;
124
+ };
125
+ FA7A0AA222630F9C00B95E07 /* PBXContainerItemProxy */ = {
126
+ isa = PBXContainerItemProxy;
127
+ containerPortal = FA7A0A9E22630F9C00B95E07 /* rhosynclib.xcodeproj */;
128
+ proxyType = 2;
129
+ remoteGlobalIDString = D2AAC046055464E500DB518D;
130
+ remoteInfo = rhosynclib;
131
+ };
132
+ FA7A0AA822630F9C00B95E07 /* PBXContainerItemProxy */ = {
133
+ isa = PBXContainerItemProxy;
134
+ containerPortal = FA7A0AA422630F9C00B95E07 /* rhoextlib.xcodeproj */;
135
+ proxyType = 2;
136
+ remoteGlobalIDString = D2AAC07E0554694100DB518D;
137
+ remoteInfo = rhoextlib;
138
+ };
139
+ FA7A0AAF22630F9C00B95E07 /* PBXContainerItemProxy */ = {
140
+ isa = PBXContainerItemProxy;
141
+ containerPortal = FA7A0AAA22630F9C00B95E07 /* RhoAppBaseLib.xcodeproj */;
142
+ proxyType = 2;
143
+ remoteGlobalIDString = D2AAC046055464E500DB518D;
144
+ remoteInfo = RhoAppBaseLib;
145
+ };
146
+ FA7A0AB122630F9C00B95E07 /* PBXContainerItemProxy */ = {
147
+ isa = PBXContainerItemProxy;
148
+ containerPortal = FA7A0AAA22630F9C00B95E07 /* RhoAppBaseLib.xcodeproj */;
149
+ proxyType = 2;
150
+ remoteGlobalIDString = FAE78C5C22583F6C001A1150;
151
+ remoteInfo = RhoAppBaseStandaloneLib;
152
+ };
153
+ FA7A0AB822630F9C00B95E07 /* PBXContainerItemProxy */ = {
154
+ isa = PBXContainerItemProxy;
155
+ containerPortal = FA7A0AB322630F9C00B95E07 /* rhorubylib.xcodeproj */;
156
+ proxyType = 2;
157
+ remoteGlobalIDString = D2AAC046055464E500DB518D;
158
+ remoteInfo = rhorubylib;
159
+ };
160
+ FA7A0ABA22630F9C00B95E07 /* PBXContainerItemProxy */ = {
161
+ isa = PBXContainerItemProxy;
162
+ containerPortal = FA7A0AB322630F9C00B95E07 /* rhorubylib.xcodeproj */;
163
+ proxyType = 2;
164
+ remoteGlobalIDString = A8A6D30E1E24AADD00016427;
165
+ remoteInfo = rubymac;
166
+ };
167
+ FA7A0AE522631E4E00B95E07 /* PBXContainerItemProxy */ = {
168
+ isa = PBXContainerItemProxy;
169
+ containerPortal = FA7A0AE122631E4E00B95E07 /* Coreapi.xcodeproj */;
170
+ proxyType = 2;
171
+ remoteGlobalIDString = FAC155F3145855CF0016F3BD;
172
+ remoteInfo = CoreAPI;
173
+ };
174
+ FAD356C22264206E00419673 /* PBXContainerItemProxy */ = {
175
+ isa = PBXContainerItemProxy;
176
+ containerPortal = FAD356B92264206E00419673 /* RhoApplication.xcodeproj */;
177
+ proxyType = 2;
178
+ remoteGlobalIDString = FA67F3632264051800482671;
179
+ remoteInfo = RhoApplication;
180
+ };
181
+ FAE3BECA2265652600AE0C99 /* PBXContainerItemProxy */ = {
182
+ isa = PBXContainerItemProxy;
183
+ containerPortal = FAD356B92264206E00419673 /* RhoApplication.xcodeproj */;
184
+ proxyType = 1;
185
+ remoteGlobalIDString = FA67F3622264051800482671;
186
+ remoteInfo = RhoApplication;
187
+ };
188
+ FAE3BECC2265653600AE0C99 /* PBXContainerItemProxy */ = {
189
+ isa = PBXContainerItemProxy;
190
+ containerPortal = FA7A0AA422630F9C00B95E07 /* rhoextlib.xcodeproj */;
191
+ proxyType = 1;
192
+ remoteGlobalIDString = D2AAC07D0554694100DB518D;
193
+ remoteInfo = rhoextlib;
194
+ };
195
+ FAE3BECE2265653B00AE0C99 /* PBXContainerItemProxy */ = {
196
+ isa = PBXContainerItemProxy;
197
+ containerPortal = FA7A0A9E22630F9C00B95E07 /* rhosynclib.xcodeproj */;
198
+ proxyType = 1;
199
+ remoteGlobalIDString = D2AAC045055464E500DB518D;
200
+ remoteInfo = rhosynclib;
201
+ };
202
+ FAE3BED02265653F00AE0C99 /* PBXContainerItemProxy */ = {
203
+ isa = PBXContainerItemProxy;
204
+ containerPortal = FA7A0AB322630F9C00B95E07 /* rhorubylib.xcodeproj */;
205
+ proxyType = 1;
206
+ remoteGlobalIDString = D2AAC045055464E500DB518D;
207
+ remoteInfo = rhorubylib;
208
+ };
209
+ FAE3BED22265654300AE0C99 /* PBXContainerItemProxy */ = {
210
+ isa = PBXContainerItemProxy;
211
+ containerPortal = FA7A0A9222630F9B00B95E07 /* RhoLib.xcodeproj */;
212
+ proxyType = 1;
213
+ remoteGlobalIDString = D2AAC045055464E500DB518D;
214
+ remoteInfo = RhoLib;
215
+ };
216
+ FAE3BED42265654900AE0C99 /* PBXContainerItemProxy */ = {
217
+ isa = PBXContainerItemProxy;
218
+ containerPortal = FA7A0AAA22630F9C00B95E07 /* RhoAppBaseLib.xcodeproj */;
219
+ proxyType = 1;
220
+ remoteGlobalIDString = FAE78BDF22583F6C001A1150;
221
+ remoteInfo = RhoAppBaseStandaloneLib;
222
+ };
223
+ FAE3BED62265654F00AE0C99 /* PBXContainerItemProxy */ = {
224
+ isa = PBXContainerItemProxy;
225
+ containerPortal = FA7A0AAA22630F9C00B95E07 /* RhoAppBaseLib.xcodeproj */;
226
+ proxyType = 1;
227
+ remoteGlobalIDString = D2AAC045055464E500DB518D;
228
+ remoteInfo = RhoAppBaseLib;
229
+ };
230
+ FAE3BED82265655200AE0C99 /* PBXContainerItemProxy */ = {
231
+ isa = PBXContainerItemProxy;
232
+ containerPortal = FA7A0A9822630F9B00B95E07 /* curl.xcodeproj */;
233
+ proxyType = 1;
234
+ remoteGlobalIDString = D2AAC045055464E500DB518D;
235
+ remoteInfo = curl;
236
+ };
237
+ FAE3BEED22656ED500AE0C99 /* PBXContainerItemProxy */ = {
238
+ isa = PBXContainerItemProxy;
239
+ containerPortal = FAE3BEE922656ED500AE0C99 /* Decryptstub.xcodeproj */;
240
+ proxyType = 2;
241
+ remoteGlobalIDString = FAC155F3145855CF0016F3BD;
242
+ remoteInfo = Decryptstub;
243
+ };
244
+ /* End PBXContainerItemProxy section */
245
+
246
+ /* Begin PBXCopyFilesBuildPhase section */
247
+ FA7A09C222604B1600B95E07 /* CopyFiles */ = {
248
+ isa = PBXCopyFilesBuildPhase;
249
+ buildActionMask = 2147483647;
250
+ dstPath = Headers/rhoruby;
251
+ dstSubfolderSpec = 16;
252
+ files = (
253
+ FA7A09C322604B3B00B95E07 /* IArray.h in CopyFiles */,
254
+ FA7A09C422604B3B00B95E07 /* IBoolean.h in CopyFiles */,
255
+ FA7A09C522604B3B00B95E07 /* IFloat.h in CopyFiles */,
256
+ FA7A09C622604B3B00B95E07 /* IHash.h in CopyFiles */,
257
+ FA7A09C722604B3B00B95E07 /* IInteger.h in CopyFiles */,
258
+ FA7A09C822604B3B00B95E07 /* IMutableArray.h in CopyFiles */,
259
+ FA7A09C922604B3B00B95E07 /* IMutableBoolean.h in CopyFiles */,
260
+ FA7A09CA22604B3B00B95E07 /* IMutableFloat.h in CopyFiles */,
261
+ FA7A09CB22604B3B00B95E07 /* IMutableHash.h in CopyFiles */,
262
+ FA7A09CC22604B3B00B95E07 /* IMutableInteger.h in CopyFiles */,
263
+ FA7A09CD22604B3B00B95E07 /* IMutableString.h in CopyFiles */,
264
+ FA7A09CE22604B3B00B95E07 /* INil.h in CopyFiles */,
265
+ FA7A09CF22604B3B00B95E07 /* IObject.h in CopyFiles */,
266
+ FA7A09D022604B3B00B95E07 /* IRefCountedObject.h in CopyFiles */,
267
+ FA7A09D122604B3B00B95E07 /* IRhoRuby.h in CopyFiles */,
268
+ FA7A09D222604B3B00B95E07 /* IRunnable.h in CopyFiles */,
269
+ FA7A09D322604B3B00B95E07 /* IString.h in CopyFiles */,
270
+ FA7A09D422604B3B00B95E07 /* RhoRuby.h in CopyFiles */,
271
+ FA7A09D522604B3B00B95E07 /* RhoRubySingletone.h in CopyFiles */,
272
+ FA7A09D622604B3B00B95E07 /* SmartPointer.h in CopyFiles */,
273
+ );
274
+ runOnlyForDeploymentPostprocessing = 0;
275
+ };
276
+ /* End PBXCopyFilesBuildPhase section */
277
+
278
+ /* Begin PBXFileReference section */
279
+ FA7A090722603A0F00B95E07 /* Rhodes.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Rhodes.framework; sourceTree = BUILT_PRODUCTS_DIR; };
280
+ FA7A090A22603A0F00B95E07 /* Rhodes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Rhodes.h; sourceTree = "<group>"; };
281
+ FA7A090B22603A0F00B95E07 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
282
+ FA7A091322603A9000B95E07 /* EventKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EventKit.framework; path = System/Library/Frameworks/EventKit.framework; sourceTree = SDKROOT; };
283
+ FA7A091522603A9B00B95E07 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
284
+ FA7A091722603AA200B95E07 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
285
+ FA7A091922603AA700B95E07 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
286
+ FA7A091B22603AAE00B95E07 /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
287
+ FA7A091D22603AB900B95E07 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
288
+ FA7A091F22603AC000B95E07 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
289
+ FA7A092122603AC700B95E07 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
290
+ FA7A092322603ACF00B95E07 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
291
+ FA7A092522603AD600B95E07 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
292
+ FA7A092722603ADE00B95E07 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
293
+ FA7A092922603AE500B95E07 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
294
+ FA7A092B22603AED00B95E07 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
295
+ FA7A092D22603AF400B95E07 /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = System/Library/Frameworks/CoreVideo.framework; sourceTree = SDKROOT; };
296
+ FA7A092F22603AFB00B95E07 /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
297
+ FA7A093122603B0400B95E07 /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
298
+ FA7A093322603B0C00B95E07 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
299
+ FA7A093522603B1400B95E07 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
300
+ FA7A093722603B1E00B95E07 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
301
+ FA7A093922603B2500B95E07 /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
302
+ FA7A093B22603B2C00B95E07 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
303
+ FA7A093D22603B3400B95E07 /* CoreImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; };
304
+ FA7A093F22603B3F00B95E07 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
305
+ FA7A094122603B4500B95E07 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
306
+ FA7A094322603B4C00B95E07 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
307
+ FA7A095A22603D0200B95E07 /* IRhoRubyBoolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyBoolean.h; path = ../../../../rhodesruby/api/IRhoRubyBoolean.h; sourceTree = "<group>"; };
308
+ FA7A095B22603D0200B95E07 /* IRhoRubyMutableInteger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyMutableInteger.h; path = ../../../../rhodesruby/api/IRhoRubyMutableInteger.h; sourceTree = "<group>"; };
309
+ FA7A095C22603D0200B95E07 /* IRhoRubyMutableFloat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyMutableFloat.h; path = ../../../../rhodesruby/api/IRhoRubyMutableFloat.h; sourceTree = "<group>"; };
310
+ FA7A095D22603D0200B95E07 /* IRhoRubyArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyArray.h; path = ../../../../rhodesruby/api/IRhoRubyArray.h; sourceTree = "<group>"; };
311
+ FA7A095E22603D0200B95E07 /* IRhoRubyMutableString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyMutableString.h; path = ../../../../rhodesruby/api/IRhoRubyMutableString.h; sourceTree = "<group>"; };
312
+ FA7A095F22603D0200B95E07 /* IRhoRubyInteger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyInteger.h; path = ../../../../rhodesruby/api/IRhoRubyInteger.h; sourceTree = "<group>"; };
313
+ FA7A096022603D0200B95E07 /* IRhoRubyHash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyHash.h; path = ../../../../rhodesruby/api/IRhoRubyHash.h; sourceTree = "<group>"; };
314
+ FA7A096122603D0200B95E07 /* IRhoRubyMutableArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyMutableArray.h; path = ../../../../rhodesruby/api/IRhoRubyMutableArray.h; sourceTree = "<group>"; };
315
+ FA7A096222603D0200B95E07 /* IRhoRubyNil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyNil.h; path = ../../../../rhodesruby/api/IRhoRubyNil.h; sourceTree = "<group>"; };
316
+ FA7A096322603D0200B95E07 /* IRhoRubyRunnable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyRunnable.h; path = ../../../../rhodesruby/api/IRhoRubyRunnable.h; sourceTree = "<group>"; };
317
+ FA7A096422603D0200B95E07 /* IRhoRubyMutableHash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyMutableHash.h; path = ../../../../rhodesruby/api/IRhoRubyMutableHash.h; sourceTree = "<group>"; };
318
+ FA7A096522603D0200B95E07 /* IRhoRubyString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyString.h; path = ../../../../rhodesruby/api/IRhoRubyString.h; sourceTree = "<group>"; };
319
+ FA7A096622603D0200B95E07 /* RhoRuby.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoRuby.h; path = ../../../../rhodesruby/api/RhoRuby.h; sourceTree = "<group>"; };
320
+ FA7A096722603D0200B95E07 /* RhoRubySingletone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoRubySingletone.h; path = ../../../../rhodesruby/api/RhoRubySingletone.h; sourceTree = "<group>"; };
321
+ FA7A096822603D0200B95E07 /* IRhoRubyObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyObject.h; path = ../../../../rhodesruby/api/IRhoRubyObject.h; sourceTree = "<group>"; };
322
+ FA7A096922603D0200B95E07 /* IRhoRuby.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRuby.h; path = ../../../../rhodesruby/api/IRhoRuby.h; sourceTree = "<group>"; };
323
+ FA7A096A22603D0300B95E07 /* IRhoRubyFloat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyFloat.h; path = ../../../../rhodesruby/api/IRhoRubyFloat.h; sourceTree = "<group>"; };
324
+ FA7A096B22603D0300B95E07 /* IRhoRubyMutableBoolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRubyMutableBoolean.h; path = ../../../../rhodesruby/api/IRhoRubyMutableBoolean.h; sourceTree = "<group>"; };
325
+ FA7A097F22603D2000B95E07 /* IObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IObject.h; path = ../../../../../shared/rhoruby/api/IObject.h; sourceTree = "<group>"; };
326
+ FA7A098022603D2000B95E07 /* IBoolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IBoolean.h; path = ../../../../../shared/rhoruby/api/IBoolean.h; sourceTree = "<group>"; };
327
+ FA7A098122603D2000B95E07 /* IMutableBoolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IMutableBoolean.h; path = ../../../../../shared/rhoruby/api/IMutableBoolean.h; sourceTree = "<group>"; };
328
+ FA7A098222603D2000B95E07 /* RhoRubySingletone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoRubySingletone.h; path = ../../../../../shared/rhoruby/api/RhoRubySingletone.h; sourceTree = "<group>"; };
329
+ FA7A098322603D2000B95E07 /* INil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = INil.h; path = ../../../../../shared/rhoruby/api/INil.h; sourceTree = "<group>"; };
330
+ FA7A098422603D2000B95E07 /* IMutableString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IMutableString.h; path = ../../../../../shared/rhoruby/api/IMutableString.h; sourceTree = "<group>"; };
331
+ FA7A098522603D2000B95E07 /* SmartPointer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SmartPointer.h; path = ../../../../../shared/rhoruby/api/SmartPointer.h; sourceTree = "<group>"; };
332
+ FA7A098622603D2000B95E07 /* IRefCountedObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRefCountedObject.h; path = ../../../../../shared/rhoruby/api/IRefCountedObject.h; sourceTree = "<group>"; };
333
+ FA7A098722603D2000B95E07 /* IMutableHash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IMutableHash.h; path = ../../../../../shared/rhoruby/api/IMutableHash.h; sourceTree = "<group>"; };
334
+ FA7A098822603D2000B95E07 /* RhoRuby.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoRuby.h; path = ../../../../../shared/rhoruby/api/RhoRuby.h; sourceTree = "<group>"; };
335
+ FA7A098922603D2000B95E07 /* IMutableFloat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IMutableFloat.h; path = ../../../../../shared/rhoruby/api/IMutableFloat.h; sourceTree = "<group>"; };
336
+ FA7A098A22603D2000B95E07 /* IFloat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IFloat.h; path = ../../../../../shared/rhoruby/api/IFloat.h; sourceTree = "<group>"; };
337
+ FA7A098B22603D2100B95E07 /* IArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IArray.h; path = ../../../../../shared/rhoruby/api/IArray.h; sourceTree = "<group>"; };
338
+ FA7A098C22603D2100B95E07 /* IInteger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IInteger.h; path = ../../../../../shared/rhoruby/api/IInteger.h; sourceTree = "<group>"; };
339
+ FA7A098D22603D2100B95E07 /* IRunnable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRunnable.h; path = ../../../../../shared/rhoruby/api/IRunnable.h; sourceTree = "<group>"; };
340
+ FA7A098E22603D2100B95E07 /* IMutableInteger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IMutableInteger.h; path = ../../../../../shared/rhoruby/api/IMutableInteger.h; sourceTree = "<group>"; };
341
+ FA7A098F22603D2100B95E07 /* IString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IString.h; path = ../../../../../shared/rhoruby/api/IString.h; sourceTree = "<group>"; };
342
+ FA7A099022603D2100B95E07 /* IMutableArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IMutableArray.h; path = ../../../../../shared/rhoruby/api/IMutableArray.h; sourceTree = "<group>"; };
343
+ FA7A099122603D2100B95E07 /* IHash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IHash.h; path = ../../../../../shared/rhoruby/api/IHash.h; sourceTree = "<group>"; };
344
+ FA7A099222603D2100B95E07 /* IRhoRuby.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoRuby.h; path = ../../../../../shared/rhoruby/api/IRhoRuby.h; sourceTree = "<group>"; };
345
+ FA7A09AB2260419D00B95E07 /* StubCode.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StubCode.m; sourceTree = "<group>"; };
346
+ FA7A0A9222630F9B00B95E07 /* RhoLib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RhoLib.xcodeproj; path = ../../RhoLib/RhoLib.xcodeproj; sourceTree = "<group>"; };
347
+ FA7A0A9822630F9B00B95E07 /* curl.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = curl.xcodeproj; path = ../../curl/curl.xcodeproj; sourceTree = "<group>"; };
348
+ FA7A0A9E22630F9C00B95E07 /* rhosynclib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = rhosynclib.xcodeproj; path = ../../rhosynclib/rhosynclib.xcodeproj; sourceTree = "<group>"; };
349
+ FA7A0AA422630F9C00B95E07 /* rhoextlib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = rhoextlib.xcodeproj; path = ../../rhoextlib/rhoextlib.xcodeproj; sourceTree = "<group>"; };
350
+ FA7A0AAA22630F9C00B95E07 /* RhoAppBaseLib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RhoAppBaseLib.xcodeproj; path = ../../RhoAppBaseLib/RhoAppBaseLib.xcodeproj; sourceTree = "<group>"; };
351
+ FA7A0AB322630F9C00B95E07 /* rhorubylib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = rhorubylib.xcodeproj; path = ../../rhorubylib/rhorubylib.xcodeproj; sourceTree = "<group>"; };
352
+ FA7A0AE122631E4E00B95E07 /* Coreapi.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Coreapi.xcodeproj; path = ../../../../lib/commonAPI/coreapi/ext/platform/iphone/Coreapi.xcodeproj; sourceTree = "<group>"; };
353
+ FAD356B92264206E00419673 /* RhoApplication.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RhoApplication.xcodeproj; path = ../RhoApplication/RhoApplication.xcodeproj; sourceTree = "<group>"; };
354
+ FAD3572F226458D700419673 /* RhodesLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhodesLib.h; path = ../../../../rhodeslib/api/RhodesLib.h; sourceTree = "<group>"; };
355
+ FAE3BEE922656ED500AE0C99 /* Decryptstub.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Decryptstub.xcodeproj; path = ../../../../lib/extensions/decryptstub/ext/platform/iphone/Decryptstub.xcodeproj; sourceTree = "<group>"; };
356
+ /* End PBXFileReference section */
357
+
358
+ /* Begin PBXFrameworksBuildPhase section */
359
+ FA7A090422603A0E00B95E07 /* Frameworks */ = {
360
+ isa = PBXFrameworksBuildPhase;
361
+ buildActionMask = 2147483647;
362
+ files = (
363
+ FAE3BEE02265657D00AE0C99 /* librhosynclib.a in Frameworks */,
364
+ FAE3BEDF2265657A00AE0C99 /* librhorubylib.a in Frameworks */,
365
+ FAE3BEDE2265657700AE0C99 /* librholib.a in Frameworks */,
366
+ FAE3BEDD2265657300AE0C99 /* librhoextlib.a in Frameworks */,
367
+ FAE3BEDC2265656D00AE0C99 /* libRhoApplication.a in Frameworks */,
368
+ FAE3BEDB2265656800AE0C99 /* libRhoAppBaseStandaloneLib.a in Frameworks */,
369
+ FAE3BEDA2265656000AE0C99 /* libcurl.a in Frameworks */,
370
+ FA7A094422603B4C00B95E07 /* Foundation.framework in Frameworks */,
371
+ FA7A094222603B4500B95E07 /* UIKit.framework in Frameworks */,
372
+ FA7A094022603B3F00B95E07 /* ImageIO.framework in Frameworks */,
373
+ FA7A093E22603B3400B95E07 /* CoreImage.framework in Frameworks */,
374
+ FA7A093C22603B2E00B95E07 /* WebKit.framework in Frameworks */,
375
+ FA7A093A22603B2500B95E07 /* MediaPlayer.framework in Frameworks */,
376
+ FA7A093822603B1E00B95E07 /* libiconv.tbd in Frameworks */,
377
+ FA7A093622603B1600B95E07 /* libsqlite3.0.tbd in Frameworks */,
378
+ FA7A093422603B0C00B95E07 /* MobileCoreServices.framework in Frameworks */,
379
+ FA7A093222603B0400B95E07 /* CoreMotion.framework in Frameworks */,
380
+ FA7A093022603AFB00B95E07 /* CoreMedia.framework in Frameworks */,
381
+ FA7A092E22603AF400B95E07 /* CoreVideo.framework in Frameworks */,
382
+ FA7A092C22603AEE00B95E07 /* CoreFoundation.framework in Frameworks */,
383
+ FA7A092A22603AE500B95E07 /* CoreLocation.framework in Frameworks */,
384
+ FA7A092822603ADE00B95E07 /* SystemConfiguration.framework in Frameworks */,
385
+ FA7A092622603AD600B95E07 /* AudioToolbox.framework in Frameworks */,
386
+ FA7A092422603AD000B95E07 /* AVFoundation.framework in Frameworks */,
387
+ FA7A092222603AC700B95E07 /* CoreGraphics.framework in Frameworks */,
388
+ FA7A092022603AC000B95E07 /* libz.tbd in Frameworks */,
389
+ FA7A091E22603AB900B95E07 /* libc++.tbd in Frameworks */,
390
+ FA7A091C22603AAE00B95E07 /* MapKit.framework in Frameworks */,
391
+ FA7A091A22603AA700B95E07 /* CFNetwork.framework in Frameworks */,
392
+ FA7A091822603AA200B95E07 /* Security.framework in Frameworks */,
393
+ FA7A091622603A9B00B95E07 /* QuartzCore.framework in Frameworks */,
394
+ FA7A091422603A9000B95E07 /* EventKit.framework in Frameworks */,
395
+ );
396
+ runOnlyForDeploymentPostprocessing = 0;
397
+ };
398
+ /* End PBXFrameworksBuildPhase section */
399
+
400
+ /* Begin PBXGroup section */
401
+ FA7A08FD22603A0E00B95E07 = {
402
+ isa = PBXGroup;
403
+ children = (
404
+ FAE3BEE922656ED500AE0C99 /* Decryptstub.xcodeproj */,
405
+ FAD356B92264206E00419673 /* RhoApplication.xcodeproj */,
406
+ FA7A0AE122631E4E00B95E07 /* Coreapi.xcodeproj */,
407
+ FA7A0AA422630F9C00B95E07 /* rhoextlib.xcodeproj */,
408
+ FA7A0A9E22630F9C00B95E07 /* rhosynclib.xcodeproj */,
409
+ FA7A0AB322630F9C00B95E07 /* rhorubylib.xcodeproj */,
410
+ FA7A0A9222630F9B00B95E07 /* RhoLib.xcodeproj */,
411
+ FA7A0AAA22630F9C00B95E07 /* RhoAppBaseLib.xcodeproj */,
412
+ FA7A0A9822630F9B00B95E07 /* curl.xcodeproj */,
413
+ FA7A090922603A0F00B95E07 /* Rhodes */,
414
+ FA7A090822603A0F00B95E07 /* Products */,
415
+ FA7A091222603A9000B95E07 /* Frameworks */,
416
+ );
417
+ sourceTree = "<group>";
418
+ };
419
+ FA7A090822603A0F00B95E07 /* Products */ = {
420
+ isa = PBXGroup;
421
+ children = (
422
+ FA7A090722603A0F00B95E07 /* Rhodes.framework */,
423
+ );
424
+ name = Products;
425
+ sourceTree = "<group>";
426
+ };
427
+ FA7A090922603A0F00B95E07 /* Rhodes */ = {
428
+ isa = PBXGroup;
429
+ children = (
430
+ FAD3571D226458A000419673 /* RhodesLib */,
431
+ FA7A095822603CCC00B95E07 /* RhoRuby.cpp */,
432
+ FA7A095522603C4700B95E07 /* RhoRuby */,
433
+ FA7A090A22603A0F00B95E07 /* Rhodes.h */,
434
+ FA7A090B22603A0F00B95E07 /* Info.plist */,
435
+ FA7A09AB2260419D00B95E07 /* StubCode.m */,
436
+ );
437
+ path = Rhodes;
438
+ sourceTree = "<group>";
439
+ };
440
+ FA7A091222603A9000B95E07 /* Frameworks */ = {
441
+ isa = PBXGroup;
442
+ children = (
443
+ FA7A094322603B4C00B95E07 /* Foundation.framework */,
444
+ FA7A094122603B4500B95E07 /* UIKit.framework */,
445
+ FA7A093F22603B3F00B95E07 /* ImageIO.framework */,
446
+ FA7A093D22603B3400B95E07 /* CoreImage.framework */,
447
+ FA7A093B22603B2C00B95E07 /* WebKit.framework */,
448
+ FA7A093922603B2500B95E07 /* MediaPlayer.framework */,
449
+ FA7A093722603B1E00B95E07 /* libiconv.tbd */,
450
+ FA7A093522603B1400B95E07 /* libsqlite3.0.tbd */,
451
+ FA7A093322603B0C00B95E07 /* MobileCoreServices.framework */,
452
+ FA7A093122603B0400B95E07 /* CoreMotion.framework */,
453
+ FA7A092F22603AFB00B95E07 /* CoreMedia.framework */,
454
+ FA7A092D22603AF400B95E07 /* CoreVideo.framework */,
455
+ FA7A092B22603AED00B95E07 /* CoreFoundation.framework */,
456
+ FA7A092922603AE500B95E07 /* CoreLocation.framework */,
457
+ FA7A092722603ADE00B95E07 /* SystemConfiguration.framework */,
458
+ FA7A092522603AD600B95E07 /* AudioToolbox.framework */,
459
+ FA7A092322603ACF00B95E07 /* AVFoundation.framework */,
460
+ FA7A092122603AC700B95E07 /* CoreGraphics.framework */,
461
+ FA7A091F22603AC000B95E07 /* libz.tbd */,
462
+ FA7A091D22603AB900B95E07 /* libc++.tbd */,
463
+ FA7A091B22603AAE00B95E07 /* MapKit.framework */,
464
+ FA7A091922603AA700B95E07 /* CFNetwork.framework */,
465
+ FA7A091722603AA200B95E07 /* Security.framework */,
466
+ FA7A091522603A9B00B95E07 /* QuartzCore.framework */,
467
+ FA7A091322603A9000B95E07 /* EventKit.framework */,
468
+ );
469
+ name = Frameworks;
470
+ sourceTree = "<group>";
471
+ };
472
+ FA7A095522603C4700B95E07 /* RhoRuby */ = {
473
+ isa = PBXGroup;
474
+ children = (
475
+ FA7A096922603D0200B95E07 /* IRhoRuby.h */,
476
+ FA7A095D22603D0200B95E07 /* IRhoRubyArray.h */,
477
+ FA7A095A22603D0200B95E07 /* IRhoRubyBoolean.h */,
478
+ FA7A096A22603D0300B95E07 /* IRhoRubyFloat.h */,
479
+ FA7A096022603D0200B95E07 /* IRhoRubyHash.h */,
480
+ FA7A095F22603D0200B95E07 /* IRhoRubyInteger.h */,
481
+ FA7A096122603D0200B95E07 /* IRhoRubyMutableArray.h */,
482
+ FA7A096B22603D0300B95E07 /* IRhoRubyMutableBoolean.h */,
483
+ FA7A095C22603D0200B95E07 /* IRhoRubyMutableFloat.h */,
484
+ FA7A096422603D0200B95E07 /* IRhoRubyMutableHash.h */,
485
+ FA7A095B22603D0200B95E07 /* IRhoRubyMutableInteger.h */,
486
+ FA7A095E22603D0200B95E07 /* IRhoRubyMutableString.h */,
487
+ FA7A096222603D0200B95E07 /* IRhoRubyNil.h */,
488
+ FA7A096822603D0200B95E07 /* IRhoRubyObject.h */,
489
+ FA7A096322603D0200B95E07 /* IRhoRubyRunnable.h */,
490
+ FA7A096522603D0200B95E07 /* IRhoRubyString.h */,
491
+ FA7A096622603D0200B95E07 /* RhoRuby.h */,
492
+ FA7A096722603D0200B95E07 /* RhoRubySingletone.h */,
493
+ );
494
+ path = RhoRuby;
495
+ sourceTree = "<group>";
496
+ };
497
+ FA7A095822603CCC00B95E07 /* RhoRuby.cpp */ = {
498
+ isa = PBXGroup;
499
+ children = (
500
+ FA7A098B22603D2100B95E07 /* IArray.h */,
501
+ FA7A098022603D2000B95E07 /* IBoolean.h */,
502
+ FA7A098A22603D2000B95E07 /* IFloat.h */,
503
+ FA7A099122603D2100B95E07 /* IHash.h */,
504
+ FA7A098C22603D2100B95E07 /* IInteger.h */,
505
+ FA7A099022603D2100B95E07 /* IMutableArray.h */,
506
+ FA7A098122603D2000B95E07 /* IMutableBoolean.h */,
507
+ FA7A098922603D2000B95E07 /* IMutableFloat.h */,
508
+ FA7A098722603D2000B95E07 /* IMutableHash.h */,
509
+ FA7A098E22603D2100B95E07 /* IMutableInteger.h */,
510
+ FA7A098422603D2000B95E07 /* IMutableString.h */,
511
+ FA7A098322603D2000B95E07 /* INil.h */,
512
+ FA7A097F22603D2000B95E07 /* IObject.h */,
513
+ FA7A098622603D2000B95E07 /* IRefCountedObject.h */,
514
+ FA7A099222603D2100B95E07 /* IRhoRuby.h */,
515
+ FA7A098D22603D2100B95E07 /* IRunnable.h */,
516
+ FA7A098F22603D2100B95E07 /* IString.h */,
517
+ FA7A098822603D2000B95E07 /* RhoRuby.h */,
518
+ FA7A098222603D2000B95E07 /* RhoRubySingletone.h */,
519
+ FA7A098522603D2000B95E07 /* SmartPointer.h */,
520
+ );
521
+ path = RhoRuby.cpp;
522
+ sourceTree = "<group>";
523
+ };
524
+ FA7A0A9322630F9B00B95E07 /* Products */ = {
525
+ isa = PBXGroup;
526
+ children = (
527
+ FA7A0A9722630F9B00B95E07 /* librholib.a */,
528
+ );
529
+ name = Products;
530
+ sourceTree = "<group>";
531
+ };
532
+ FA7A0A9922630F9B00B95E07 /* Products */ = {
533
+ isa = PBXGroup;
534
+ children = (
535
+ FA7A0A9D22630F9B00B95E07 /* libcurl.a */,
536
+ );
537
+ name = Products;
538
+ sourceTree = "<group>";
539
+ };
540
+ FA7A0A9F22630F9C00B95E07 /* Products */ = {
541
+ isa = PBXGroup;
542
+ children = (
543
+ FA7A0AA322630F9C00B95E07 /* librhosynclib.a */,
544
+ );
545
+ name = Products;
546
+ sourceTree = "<group>";
547
+ };
548
+ FA7A0AA522630F9C00B95E07 /* Products */ = {
549
+ isa = PBXGroup;
550
+ children = (
551
+ FA7A0AA922630F9C00B95E07 /* librhoextlib.a */,
552
+ );
553
+ name = Products;
554
+ sourceTree = "<group>";
555
+ };
556
+ FA7A0AAB22630F9C00B95E07 /* Products */ = {
557
+ isa = PBXGroup;
558
+ children = (
559
+ FA7A0AB022630F9C00B95E07 /* librhoappbaselib.a */,
560
+ FA7A0AB222630F9C00B95E07 /* libRhoAppBaseStandaloneLib.a */,
561
+ );
562
+ name = Products;
563
+ sourceTree = "<group>";
564
+ };
565
+ FA7A0AB422630F9C00B95E07 /* Products */ = {
566
+ isa = PBXGroup;
567
+ children = (
568
+ FA7A0AB922630F9C00B95E07 /* librhorubylib.a */,
569
+ FA7A0ABB22630F9C00B95E07 /* librubymac.a */,
570
+ );
571
+ name = Products;
572
+ sourceTree = "<group>";
573
+ };
574
+ FA7A0AE222631E4E00B95E07 /* Products */ = {
575
+ isa = PBXGroup;
576
+ children = (
577
+ FA7A0AE622631E4E00B95E07 /* libCoreAPI.a */,
578
+ );
579
+ name = Products;
580
+ sourceTree = "<group>";
581
+ };
582
+ FAD356BA2264206E00419673 /* Products */ = {
583
+ isa = PBXGroup;
584
+ children = (
585
+ FAD356C32264206E00419673 /* libRhoApplication.a */,
586
+ );
587
+ name = Products;
588
+ sourceTree = "<group>";
589
+ };
590
+ FAD3571D226458A000419673 /* RhodesLib */ = {
591
+ isa = PBXGroup;
592
+ children = (
593
+ FAD3572F226458D700419673 /* RhodesLib.h */,
594
+ );
595
+ path = RhodesLib;
596
+ sourceTree = "<group>";
597
+ };
598
+ FAE3BEEA22656ED500AE0C99 /* Products */ = {
599
+ isa = PBXGroup;
600
+ children = (
601
+ FAE3BEEE22656ED500AE0C99 /* libDecryptstub.a */,
602
+ );
603
+ name = Products;
604
+ sourceTree = "<group>";
605
+ };
606
+ /* End PBXGroup section */
607
+
608
+ /* Begin PBXHeadersBuildPhase section */
609
+ FA7A090222603A0E00B95E07 /* Headers */ = {
610
+ isa = PBXHeadersBuildPhase;
611
+ buildActionMask = 2147483647;
612
+ files = (
613
+ FAD35730226458D700419673 /* RhodesLib.h in Headers */,
614
+ FA7A097C22603D0300B95E07 /* IRhoRuby.h in Headers */,
615
+ FA7A097D22603D0300B95E07 /* IRhoRubyFloat.h in Headers */,
616
+ FA7A097522603D0300B95E07 /* IRhoRubyNil.h in Headers */,
617
+ FA7A097722603D0300B95E07 /* IRhoRubyMutableHash.h in Headers */,
618
+ FA7A097322603D0300B95E07 /* IRhoRubyHash.h in Headers */,
619
+ FA7A097422603D0300B95E07 /* IRhoRubyMutableArray.h in Headers */,
620
+ FA7A097E22603D0300B95E07 /* IRhoRubyMutableBoolean.h in Headers */,
621
+ FA7A097122603D0300B95E07 /* IRhoRubyMutableString.h in Headers */,
622
+ FA7A096E22603D0300B95E07 /* IRhoRubyMutableInteger.h in Headers */,
623
+ FA7A096F22603D0300B95E07 /* IRhoRubyMutableFloat.h in Headers */,
624
+ FA7A097922603D0300B95E07 /* RhoRuby.h in Headers */,
625
+ FA7A096D22603D0300B95E07 /* IRhoRubyBoolean.h in Headers */,
626
+ FA7A097622603D0300B95E07 /* IRhoRubyRunnable.h in Headers */,
627
+ FA7A097B22603D0300B95E07 /* IRhoRubyObject.h in Headers */,
628
+ FA7A097A22603D0300B95E07 /* RhoRubySingletone.h in Headers */,
629
+ FA7A097822603D0300B95E07 /* IRhoRubyString.h in Headers */,
630
+ FA7A097022603D0300B95E07 /* IRhoRubyArray.h in Headers */,
631
+ FA7A097222603D0300B95E07 /* IRhoRubyInteger.h in Headers */,
632
+ FA7A090C22603A0F00B95E07 /* Rhodes.h in Headers */,
633
+ );
634
+ runOnlyForDeploymentPostprocessing = 0;
635
+ };
636
+ /* End PBXHeadersBuildPhase section */
637
+
638
+ /* Begin PBXNativeTarget section */
639
+ FA7A090622603A0E00B95E07 /* Rhodes */ = {
640
+ isa = PBXNativeTarget;
641
+ buildConfigurationList = FA7A090F22603A0F00B95E07 /* Build configuration list for PBXNativeTarget "Rhodes" */;
642
+ buildPhases = (
643
+ FA7A090222603A0E00B95E07 /* Headers */,
644
+ FA7A090322603A0E00B95E07 /* Sources */,
645
+ FA7A090422603A0E00B95E07 /* Frameworks */,
646
+ FA7A090522603A0E00B95E07 /* Resources */,
647
+ FA7A09C222604B1600B95E07 /* CopyFiles */,
648
+ );
649
+ buildRules = (
650
+ );
651
+ dependencies = (
652
+ FAE3BED92265655200AE0C99 /* PBXTargetDependency */,
653
+ FAE3BED72265654F00AE0C99 /* PBXTargetDependency */,
654
+ FAE3BED52265654900AE0C99 /* PBXTargetDependency */,
655
+ FAE3BED32265654300AE0C99 /* PBXTargetDependency */,
656
+ FAE3BED12265653F00AE0C99 /* PBXTargetDependency */,
657
+ FAE3BECF2265653B00AE0C99 /* PBXTargetDependency */,
658
+ FAE3BECD2265653600AE0C99 /* PBXTargetDependency */,
659
+ FAE3BECB2265652600AE0C99 /* PBXTargetDependency */,
660
+ );
661
+ name = Rhodes;
662
+ productName = Rhodes;
663
+ productReference = FA7A090722603A0F00B95E07 /* Rhodes.framework */;
664
+ productType = "com.apple.product-type.framework";
665
+ };
666
+ /* End PBXNativeTarget section */
667
+
668
+ /* Begin PBXProject section */
669
+ FA7A08FE22603A0E00B95E07 /* Project object */ = {
670
+ isa = PBXProject;
671
+ attributes = {
672
+ LastUpgradeCheck = 1010;
673
+ ORGANIZATIONNAME = "TAU Technologies";
674
+ TargetAttributes = {
675
+ FA7A090622603A0E00B95E07 = {
676
+ CreatedOnToolsVersion = 10.1;
677
+ };
678
+ FA7A09D82260564500B95E07 = {
679
+ CreatedOnToolsVersion = 10.1;
680
+ };
681
+ };
682
+ };
683
+ buildConfigurationList = FA7A090122603A0E00B95E07 /* Build configuration list for PBXProject "Rhodes" */;
684
+ compatibilityVersion = "Xcode 9.3";
685
+ developmentRegion = en;
686
+ hasScannedForEncodings = 0;
687
+ knownRegions = (
688
+ en,
689
+ );
690
+ mainGroup = FA7A08FD22603A0E00B95E07;
691
+ productRefGroup = FA7A090822603A0F00B95E07 /* Products */;
692
+ projectDirPath = "";
693
+ projectReferences = (
694
+ {
695
+ ProductGroup = FA7A0AE222631E4E00B95E07 /* Products */;
696
+ ProjectRef = FA7A0AE122631E4E00B95E07 /* Coreapi.xcodeproj */;
697
+ },
698
+ {
699
+ ProductGroup = FA7A0A9922630F9B00B95E07 /* Products */;
700
+ ProjectRef = FA7A0A9822630F9B00B95E07 /* curl.xcodeproj */;
701
+ },
702
+ {
703
+ ProductGroup = FAE3BEEA22656ED500AE0C99 /* Products */;
704
+ ProjectRef = FAE3BEE922656ED500AE0C99 /* Decryptstub.xcodeproj */;
705
+ },
706
+ {
707
+ ProductGroup = FA7A0AAB22630F9C00B95E07 /* Products */;
708
+ ProjectRef = FA7A0AAA22630F9C00B95E07 /* RhoAppBaseLib.xcodeproj */;
709
+ },
710
+ {
711
+ ProductGroup = FAD356BA2264206E00419673 /* Products */;
712
+ ProjectRef = FAD356B92264206E00419673 /* RhoApplication.xcodeproj */;
713
+ },
714
+ {
715
+ ProductGroup = FA7A0AA522630F9C00B95E07 /* Products */;
716
+ ProjectRef = FA7A0AA422630F9C00B95E07 /* rhoextlib.xcodeproj */;
717
+ },
718
+ {
719
+ ProductGroup = FA7A0A9322630F9B00B95E07 /* Products */;
720
+ ProjectRef = FA7A0A9222630F9B00B95E07 /* RhoLib.xcodeproj */;
721
+ },
722
+ {
723
+ ProductGroup = FA7A0AB422630F9C00B95E07 /* Products */;
724
+ ProjectRef = FA7A0AB322630F9C00B95E07 /* rhorubylib.xcodeproj */;
725
+ },
726
+ {
727
+ ProductGroup = FA7A0A9F22630F9C00B95E07 /* Products */;
728
+ ProjectRef = FA7A0A9E22630F9C00B95E07 /* rhosynclib.xcodeproj */;
729
+ },
730
+ );
731
+ projectRoot = "";
732
+ targets = (
733
+ FA7A090622603A0E00B95E07 /* Rhodes */,
734
+ FA7A09D82260564500B95E07 /* Framework */,
735
+ FAD3576F22646BEF00419673 /* Framework copy */,
736
+ );
737
+ };
738
+ /* End PBXProject section */
739
+
740
+ /* Begin PBXReferenceProxy section */
741
+ FA7A0A9722630F9B00B95E07 /* librholib.a */ = {
742
+ isa = PBXReferenceProxy;
743
+ fileType = archive.ar;
744
+ path = librholib.a;
745
+ remoteRef = FA7A0A9622630F9B00B95E07 /* PBXContainerItemProxy */;
746
+ sourceTree = BUILT_PRODUCTS_DIR;
747
+ };
748
+ FA7A0A9D22630F9B00B95E07 /* libcurl.a */ = {
749
+ isa = PBXReferenceProxy;
750
+ fileType = archive.ar;
751
+ path = libcurl.a;
752
+ remoteRef = FA7A0A9C22630F9B00B95E07 /* PBXContainerItemProxy */;
753
+ sourceTree = BUILT_PRODUCTS_DIR;
754
+ };
755
+ FA7A0AA322630F9C00B95E07 /* librhosynclib.a */ = {
756
+ isa = PBXReferenceProxy;
757
+ fileType = archive.ar;
758
+ path = librhosynclib.a;
759
+ remoteRef = FA7A0AA222630F9C00B95E07 /* PBXContainerItemProxy */;
760
+ sourceTree = BUILT_PRODUCTS_DIR;
761
+ };
762
+ FA7A0AA922630F9C00B95E07 /* librhoextlib.a */ = {
763
+ isa = PBXReferenceProxy;
764
+ fileType = archive.ar;
765
+ path = librhoextlib.a;
766
+ remoteRef = FA7A0AA822630F9C00B95E07 /* PBXContainerItemProxy */;
767
+ sourceTree = BUILT_PRODUCTS_DIR;
768
+ };
769
+ FA7A0AB022630F9C00B95E07 /* librhoappbaselib.a */ = {
770
+ isa = PBXReferenceProxy;
771
+ fileType = archive.ar;
772
+ path = librhoappbaselib.a;
773
+ remoteRef = FA7A0AAF22630F9C00B95E07 /* PBXContainerItemProxy */;
774
+ sourceTree = BUILT_PRODUCTS_DIR;
775
+ };
776
+ FA7A0AB222630F9C00B95E07 /* libRhoAppBaseStandaloneLib.a */ = {
777
+ isa = PBXReferenceProxy;
778
+ fileType = archive.ar;
779
+ path = libRhoAppBaseStandaloneLib.a;
780
+ remoteRef = FA7A0AB122630F9C00B95E07 /* PBXContainerItemProxy */;
781
+ sourceTree = BUILT_PRODUCTS_DIR;
782
+ };
783
+ FA7A0AB922630F9C00B95E07 /* librhorubylib.a */ = {
784
+ isa = PBXReferenceProxy;
785
+ fileType = archive.ar;
786
+ path = librhorubylib.a;
787
+ remoteRef = FA7A0AB822630F9C00B95E07 /* PBXContainerItemProxy */;
788
+ sourceTree = BUILT_PRODUCTS_DIR;
789
+ };
790
+ FA7A0ABB22630F9C00B95E07 /* librubymac.a */ = {
791
+ isa = PBXReferenceProxy;
792
+ fileType = archive.ar;
793
+ path = librubymac.a;
794
+ remoteRef = FA7A0ABA22630F9C00B95E07 /* PBXContainerItemProxy */;
795
+ sourceTree = BUILT_PRODUCTS_DIR;
796
+ };
797
+ FA7A0AE622631E4E00B95E07 /* libCoreAPI.a */ = {
798
+ isa = PBXReferenceProxy;
799
+ fileType = archive.ar;
800
+ path = libCoreAPI.a;
801
+ remoteRef = FA7A0AE522631E4E00B95E07 /* PBXContainerItemProxy */;
802
+ sourceTree = BUILT_PRODUCTS_DIR;
803
+ };
804
+ FAD356C32264206E00419673 /* libRhoApplication.a */ = {
805
+ isa = PBXReferenceProxy;
806
+ fileType = archive.ar;
807
+ path = libRhoApplication.a;
808
+ remoteRef = FAD356C22264206E00419673 /* PBXContainerItemProxy */;
809
+ sourceTree = BUILT_PRODUCTS_DIR;
810
+ };
811
+ FAE3BEEE22656ED500AE0C99 /* libDecryptstub.a */ = {
812
+ isa = PBXReferenceProxy;
813
+ fileType = archive.ar;
814
+ path = libDecryptstub.a;
815
+ remoteRef = FAE3BEED22656ED500AE0C99 /* PBXContainerItemProxy */;
816
+ sourceTree = BUILT_PRODUCTS_DIR;
817
+ };
818
+ /* End PBXReferenceProxy section */
819
+
820
+ /* Begin PBXResourcesBuildPhase section */
821
+ FA7A090522603A0E00B95E07 /* Resources */ = {
822
+ isa = PBXResourcesBuildPhase;
823
+ buildActionMask = 2147483647;
824
+ files = (
825
+ );
826
+ runOnlyForDeploymentPostprocessing = 0;
827
+ };
828
+ /* End PBXResourcesBuildPhase section */
829
+
830
+ /* Begin PBXShellScriptBuildPhase section */
831
+ FA7A09DE2260570000B95E07 /* ShellScript */ = {
832
+ isa = PBXShellScriptBuildPhase;
833
+ buildActionMask = 2147483647;
834
+ files = (
835
+ );
836
+ inputFileListPaths = (
837
+ );
838
+ inputPaths = (
839
+ );
840
+ outputFileListPaths = (
841
+ );
842
+ outputPaths = (
843
+ );
844
+ runOnlyForDeploymentPostprocessing = 0;
845
+ shellPath = /bin/sh;
846
+ shellScript = "FRAMEWORK_NAME=\"Rhodes\"\n\nSIMULATOR_LIBRARY_PATH=\"${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${FRAMEWORK_NAME}.framework\"\n\nDEVICE_LIBRARY_PATH=\"${BUILD_DIR}/${CONFIGURATION}-iphoneos/${FRAMEWORK_NAME}.framework\"\n\nUNIVERSAL_LIBRARY_DIR=\"${BUILD_DIR}/${CONFIGURATION}-iphoneuniversal\"\n\nFRAMEWORK=\"${UNIVERSAL_LIBRARY_DIR}/${FRAMEWORK_NAME}.framework\"\n\nOUTPUT_DIR=\"./${FRAMEWORK_NAME}-Aggregated\"\n\nARCHS=\"i386 x86_64\"\n\nXcodebuild -project ${PROJECT_NAME}.Xcodeproj -scheme ${FRAMEWORK_NAME} -sdk iphonesimulator -configuration ${CONFIGURATION} install CONFIGURATION_BUILD_DIR=${BUILD_DIR}/${CONFIGURATION}-iphonesimulator ARCHS=\"i386 x86_64\"\n\nARCHS=\"arm64 armv7 armv7s\"\n\nXcodebuild -project ${PROJECT_NAME}.Xcodeproj -scheme ${FRAMEWORK_NAME} -sdk iphoneos -configuration ${CONFIGURATION} install CONFIGURATION_BUILD_DIR=${BUILD_DIR}/${CONFIGURATION}-iphoneos ARCHS=\"arm64 armv7 armv7s\"\n\n\nrm -rf \"${UNIVERSAL_LIBRARY_DIR}\"\n\nmkdir \"${UNIVERSAL_LIBRARY_DIR}\"\n\nmkdir \"${FRAMEWORK}\"\n\nrm -rf \"$OUTPUT_DIR\"\nmkdir -p \"$OUTPUT_DIR\"\n\ncp -r \"${DEVICE_LIBRARY_PATH}/.\" \"${FRAMEWORK}\"\n\n\nrm -rf \"${FRAMEWORK}/${FRAMEWORK_NAME}\"\n\nlipo \"${SIMULATOR_LIBRARY_PATH}/${FRAMEWORK_NAME}\" \"${DEVICE_LIBRARY_PATH}/${FRAMEWORK_NAME}\" -create -output \"${FRAMEWORK}/${FRAMEWORK_NAME}\"\ncp -r \"${FRAMEWORK}\" \"$OUTPUT_DIR\"\n\n";
847
+ };
848
+ FAD3577022646BEF00419673 /* ShellScript */ = {
849
+ isa = PBXShellScriptBuildPhase;
850
+ buildActionMask = 2147483647;
851
+ files = (
852
+ );
853
+ inputFileListPaths = (
854
+ );
855
+ inputPaths = (
856
+ );
857
+ outputFileListPaths = (
858
+ );
859
+ outputPaths = (
860
+ );
861
+ runOnlyForDeploymentPostprocessing = 0;
862
+ shellPath = /bin/sh;
863
+ shellScript = "FRAMEWORK_NAME=\"Rhodes\"\n\nSIMULATOR_LIBRARY_PATH=\"${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${FRAMEWORK_NAME}.framework\"\n\nDEVICE_LIBRARY_PATH=\"${BUILD_DIR}/${CONFIGURATION}-iphoneos/${FRAMEWORK_NAME}.framework\"\n\nDEVICE_BCSYMBOLMAP_PATH=\"${BUILD_DIR}/${CONFIGURATION}-iphoneos\"\n\nDEVICE_DSYM_PATH=\"${BUILD_DIR}/${CONFIGURATION}-iphoneos/${FRAMEWORK_NAME}.framework.dSYM\"\nSIMULATOR_DSYM_PATH=\"${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${FRAMEWORK_NAME}.framework.dSYM\"\n\nUNIVERSAL_LIBRARY_DIR=\"${BUILD_DIR}/${CONFIGURATION}-iphoneuniversal\"\n\nFRAMEWORK=\"${UNIVERSAL_LIBRARY_DIR}/${FRAMEWORK_NAME}.framework\"\n\nOUTPUT_DIR=\"./${FRAMEWORK_NAME}-Aggregated\"\n\nARCHS=\"i386 x86_64\"\n\nXcodebuild -project ${PROJECT_NAME}.Xcodeproj -target ${FRAMEWORK_NAME} -sdk iphonesimulator -configuration ${CONFIGURATION} install CONFIGURATION_BUILD_DIR=${BUILD_DIR}/${CONFIGURATION}-iphonesimulator ARCHS=\"i386 x86_64\"\n\nARCHS=\"arm64 armv7 armv7s\"\n\nXcodebuild -project ${PROJECT_NAME}.Xcodeproj -target ${FRAMEWORK_NAME} -sdk iphoneos -configuration ${CONFIGURATION} install CONFIGURATION_BUILD_DIR=${BUILD_DIR}/${CONFIGURATION}-iphoneos ARCHS=\"arm64 armv7 armv7s\"\n\n\n\nrm -rf \"${UNIVERSAL_LIBRARY_DIR}\"\n\nmkdir \"${UNIVERSAL_LIBRARY_DIR}\"\n\nmkdir \"${FRAMEWORK}\"\n\nrm -rf \"$OUTPUT_DIR\"\nmkdir -p \"$OUTPUT_DIR\"\n\ncp -r \"${DEVICE_LIBRARY_PATH}/.\" \"${FRAMEWORK}\"\n\n\nrm -rf \"${FRAMEWORK}/${FRAMEWORK_NAME}\"\n\nlipo \"${SIMULATOR_LIBRARY_PATH}/${FRAMEWORK_NAME}\" \"${DEVICE_LIBRARY_PATH}/${FRAMEWORK_NAME}\" -create -output \"${FRAMEWORK}/${FRAMEWORK_NAME}\"\ncp -r \"${FRAMEWORK}\" \"$OUTPUT_DIR\"\n\n\ncp -r \"${DEVICE_DSYM_PATH}\" \"$OUTPUT_DIR\"\nlipo -create -output \"$OUTPUT_DIR/${FRAMEWORK_NAME}.framework.dSYM/Contents/Resources/DWARF/${FRAMEWORK_NAME}\" \\\n\"${DEVICE_DSYM_PATH}/Contents/Resources/DWARF/${FRAMEWORK_NAME}\" \\\n\"${SIMULATOR_DSYM_PATH}/Contents/Resources/DWARF/${FRAMEWORK_NAME}\" || exit 1\n\n\nUUIDs=$(dwarfdump --uuid \"${DEVICE_DSYM_PATH}\" | cut -d ' ' -f2)\nfor file in `find \"${DEVICE_BCSYMBOLMAP_PATH}\" -name \"*.bcsymbolmap\" -type f`; do\nfileName=$(basename \"$file\" \".bcsymbolmap\")\nfor UUID in $UUIDs; do\nif [[ \"$UUID\" = \"$fileName\" ]]; then\ncp -R \"$file\" \"$OUTPUT_DIR\"\ndsymutil --symbol-map \"$OUTPUT_DIR\"/\"$fileName\".bcsymbolmap \"$OUTPUT_DIR/${FRAMEWORK_NAME}.framework.dSYM\"\nfi\ndone\ndone\n";
864
+ };
865
+ /* End PBXShellScriptBuildPhase section */
866
+
867
+ /* Begin PBXSourcesBuildPhase section */
868
+ FA7A090322603A0E00B95E07 /* Sources */ = {
869
+ isa = PBXSourcesBuildPhase;
870
+ buildActionMask = 2147483647;
871
+ files = (
872
+ FA7A09AC2260419D00B95E07 /* StubCode.m in Sources */,
873
+ );
874
+ runOnlyForDeploymentPostprocessing = 0;
875
+ };
876
+ /* End PBXSourcesBuildPhase section */
877
+
878
+ /* Begin PBXTargetDependency section */
879
+ FAE3BECB2265652600AE0C99 /* PBXTargetDependency */ = {
880
+ isa = PBXTargetDependency;
881
+ name = RhoApplication;
882
+ targetProxy = FAE3BECA2265652600AE0C99 /* PBXContainerItemProxy */;
883
+ };
884
+ FAE3BECD2265653600AE0C99 /* PBXTargetDependency */ = {
885
+ isa = PBXTargetDependency;
886
+ name = rhoextlib;
887
+ targetProxy = FAE3BECC2265653600AE0C99 /* PBXContainerItemProxy */;
888
+ };
889
+ FAE3BECF2265653B00AE0C99 /* PBXTargetDependency */ = {
890
+ isa = PBXTargetDependency;
891
+ name = rhosynclib;
892
+ targetProxy = FAE3BECE2265653B00AE0C99 /* PBXContainerItemProxy */;
893
+ };
894
+ FAE3BED12265653F00AE0C99 /* PBXTargetDependency */ = {
895
+ isa = PBXTargetDependency;
896
+ name = rhorubylib;
897
+ targetProxy = FAE3BED02265653F00AE0C99 /* PBXContainerItemProxy */;
898
+ };
899
+ FAE3BED32265654300AE0C99 /* PBXTargetDependency */ = {
900
+ isa = PBXTargetDependency;
901
+ name = RhoLib;
902
+ targetProxy = FAE3BED22265654300AE0C99 /* PBXContainerItemProxy */;
903
+ };
904
+ FAE3BED52265654900AE0C99 /* PBXTargetDependency */ = {
905
+ isa = PBXTargetDependency;
906
+ name = RhoAppBaseStandaloneLib;
907
+ targetProxy = FAE3BED42265654900AE0C99 /* PBXContainerItemProxy */;
908
+ };
909
+ FAE3BED72265654F00AE0C99 /* PBXTargetDependency */ = {
910
+ isa = PBXTargetDependency;
911
+ name = RhoAppBaseLib;
912
+ targetProxy = FAE3BED62265654F00AE0C99 /* PBXContainerItemProxy */;
913
+ };
914
+ FAE3BED92265655200AE0C99 /* PBXTargetDependency */ = {
915
+ isa = PBXTargetDependency;
916
+ name = curl;
917
+ targetProxy = FAE3BED82265655200AE0C99 /* PBXContainerItemProxy */;
918
+ };
919
+ /* End PBXTargetDependency section */
920
+
921
+ /* Begin XCBuildConfiguration section */
922
+ FA7A090D22603A0F00B95E07 /* Debug */ = {
923
+ isa = XCBuildConfiguration;
924
+ buildSettings = {
925
+ ALWAYS_SEARCH_USER_PATHS = NO;
926
+ CLANG_ANALYZER_NONNULL = YES;
927
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
928
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
929
+ CLANG_CXX_LIBRARY = "libc++";
930
+ CLANG_ENABLE_MODULES = YES;
931
+ CLANG_ENABLE_OBJC_ARC = YES;
932
+ CLANG_ENABLE_OBJC_WEAK = YES;
933
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
934
+ CLANG_WARN_BOOL_CONVERSION = YES;
935
+ CLANG_WARN_COMMA = YES;
936
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
937
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
938
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
939
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
940
+ CLANG_WARN_EMPTY_BODY = YES;
941
+ CLANG_WARN_ENUM_CONVERSION = YES;
942
+ CLANG_WARN_INFINITE_RECURSION = YES;
943
+ CLANG_WARN_INT_CONVERSION = YES;
944
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
945
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
946
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
947
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
948
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
949
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
950
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
951
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
952
+ CLANG_WARN_UNREACHABLE_CODE = YES;
953
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
954
+ CODE_SIGN_IDENTITY = "iPhone Developer";
955
+ COPY_PHASE_STRIP = NO;
956
+ CURRENT_PROJECT_VERSION = 1;
957
+ DEBUG_INFORMATION_FORMAT = dwarf;
958
+ ENABLE_BITCODE = NO;
959
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
960
+ ENABLE_TESTABILITY = YES;
961
+ GCC_C_LANGUAGE_STANDARD = gnu11;
962
+ GCC_DYNAMIC_NO_PIC = NO;
963
+ GCC_NO_COMMON_BLOCKS = YES;
964
+ GCC_OPTIMIZATION_LEVEL = 0;
965
+ GCC_PREPROCESSOR_DEFINITIONS = (
966
+ "DEBUG=1",
967
+ "$(inherited)",
968
+ );
969
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
970
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
971
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
972
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
973
+ GCC_WARN_UNUSED_FUNCTION = YES;
974
+ GCC_WARN_UNUSED_VARIABLE = YES;
975
+ IPHONEOS_DEPLOYMENT_TARGET = 12.1;
976
+ MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
977
+ MTL_FAST_MATH = YES;
978
+ ONLY_ACTIVE_ARCH = YES;
979
+ SDKROOT = iphoneos;
980
+ VERSIONING_SYSTEM = "apple-generic";
981
+ VERSION_INFO_PREFIX = "";
982
+ };
983
+ name = Debug;
984
+ };
985
+ FA7A090E22603A0F00B95E07 /* Release */ = {
986
+ isa = XCBuildConfiguration;
987
+ buildSettings = {
988
+ ALWAYS_SEARCH_USER_PATHS = NO;
989
+ CLANG_ANALYZER_NONNULL = YES;
990
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
991
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
992
+ CLANG_CXX_LIBRARY = "libc++";
993
+ CLANG_ENABLE_MODULES = YES;
994
+ CLANG_ENABLE_OBJC_ARC = YES;
995
+ CLANG_ENABLE_OBJC_WEAK = YES;
996
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
997
+ CLANG_WARN_BOOL_CONVERSION = YES;
998
+ CLANG_WARN_COMMA = YES;
999
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
1000
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
1001
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1002
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1003
+ CLANG_WARN_EMPTY_BODY = YES;
1004
+ CLANG_WARN_ENUM_CONVERSION = YES;
1005
+ CLANG_WARN_INFINITE_RECURSION = YES;
1006
+ CLANG_WARN_INT_CONVERSION = YES;
1007
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
1008
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
1009
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
1010
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1011
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
1012
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
1013
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
1014
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
1015
+ CLANG_WARN_UNREACHABLE_CODE = YES;
1016
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1017
+ CODE_SIGN_IDENTITY = "iPhone Developer";
1018
+ COPY_PHASE_STRIP = NO;
1019
+ CURRENT_PROJECT_VERSION = 1;
1020
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1021
+ ENABLE_BITCODE = NO;
1022
+ ENABLE_NS_ASSERTIONS = NO;
1023
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
1024
+ GCC_C_LANGUAGE_STANDARD = gnu11;
1025
+ GCC_NO_COMMON_BLOCKS = YES;
1026
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1027
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1028
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
1029
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1030
+ GCC_WARN_UNUSED_FUNCTION = YES;
1031
+ GCC_WARN_UNUSED_VARIABLE = YES;
1032
+ IPHONEOS_DEPLOYMENT_TARGET = 12.1;
1033
+ MTL_ENABLE_DEBUG_INFO = NO;
1034
+ MTL_FAST_MATH = YES;
1035
+ SDKROOT = iphoneos;
1036
+ VALIDATE_PRODUCT = YES;
1037
+ VERSIONING_SYSTEM = "apple-generic";
1038
+ VERSION_INFO_PREFIX = "";
1039
+ };
1040
+ name = Release;
1041
+ };
1042
+ FA7A091022603A0F00B95E07 /* Debug */ = {
1043
+ isa = XCBuildConfiguration;
1044
+ buildSettings = {
1045
+ CLANG_ENABLE_OBJC_ARC = NO;
1046
+ CLANG_ENABLE_OBJC_WEAK = NO;
1047
+ CODE_SIGN_IDENTITY = "";
1048
+ CODE_SIGN_STYLE = Manual;
1049
+ DEFINES_MODULE = YES;
1050
+ DEVELOPMENT_TEAM = "";
1051
+ DYLIB_COMPATIBILITY_VERSION = 1;
1052
+ DYLIB_CURRENT_VERSION = 1;
1053
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
1054
+ HEADER_SEARCH_PATHS = (
1055
+ ../..,
1056
+ ../../../shared,
1057
+ );
1058
+ INFOPLIST_FILE = Rhodes/Info.plist;
1059
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1060
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1061
+ LD_RUNPATH_SEARCH_PATHS = (
1062
+ "$(inherited)",
1063
+ "@executable_path/Frameworks",
1064
+ "@loader_path/Frameworks",
1065
+ );
1066
+ LIBRARY_SEARCH_PATHS = ../LibFactory;
1067
+ OTHER_LDFLAGS = (
1068
+ "-all_load",
1069
+ "-ObjC",
1070
+ "-filelist",
1071
+ rhodeslibs.txt,
1072
+ );
1073
+ PRODUCT_BUNDLE_IDENTIFIER = com.tautechnologies.Rhodes;
1074
+ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
1075
+ PROVISIONING_PROFILE_SPECIFIER = "";
1076
+ SKIP_INSTALL = YES;
1077
+ TARGETED_DEVICE_FAMILY = "1,2";
1078
+ };
1079
+ name = Debug;
1080
+ };
1081
+ FA7A091122603A0F00B95E07 /* Release */ = {
1082
+ isa = XCBuildConfiguration;
1083
+ buildSettings = {
1084
+ CLANG_ENABLE_OBJC_ARC = NO;
1085
+ CLANG_ENABLE_OBJC_WEAK = NO;
1086
+ CODE_SIGN_IDENTITY = "";
1087
+ CODE_SIGN_STYLE = Manual;
1088
+ DEFINES_MODULE = YES;
1089
+ DEVELOPMENT_TEAM = "";
1090
+ DYLIB_COMPATIBILITY_VERSION = 1;
1091
+ DYLIB_CURRENT_VERSION = 1;
1092
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
1093
+ HEADER_SEARCH_PATHS = (
1094
+ ../..,
1095
+ ../../../shared,
1096
+ );
1097
+ INFOPLIST_FILE = Rhodes/Info.plist;
1098
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1099
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1100
+ LD_RUNPATH_SEARCH_PATHS = (
1101
+ "$(inherited)",
1102
+ "@executable_path/Frameworks",
1103
+ "@loader_path/Frameworks",
1104
+ );
1105
+ LIBRARY_SEARCH_PATHS = ../LibFactory;
1106
+ OTHER_LDFLAGS = (
1107
+ "-all_load",
1108
+ "-ObjC",
1109
+ "-filelist",
1110
+ rhodeslibs.txt,
1111
+ );
1112
+ PRODUCT_BUNDLE_IDENTIFIER = com.tautechnologies.Rhodes;
1113
+ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
1114
+ PROVISIONING_PROFILE_SPECIFIER = "";
1115
+ SKIP_INSTALL = YES;
1116
+ TARGETED_DEVICE_FAMILY = "1,2";
1117
+ };
1118
+ name = Release;
1119
+ };
1120
+ FA7A09DA2260564500B95E07 /* Debug */ = {
1121
+ isa = XCBuildConfiguration;
1122
+ buildSettings = {
1123
+ CLANG_ENABLE_OBJC_ARC = NO;
1124
+ CLANG_ENABLE_OBJC_WEAK = NO;
1125
+ CODE_SIGN_STYLE = Automatic;
1126
+ DEVELOPMENT_TEAM = PNQRMU2LPM;
1127
+ LIBRARY_SEARCH_PATHS = ../LibFactory;
1128
+ PRODUCT_NAME = "$(TARGET_NAME)";
1129
+ };
1130
+ name = Debug;
1131
+ };
1132
+ FA7A09DB2260564500B95E07 /* Release */ = {
1133
+ isa = XCBuildConfiguration;
1134
+ buildSettings = {
1135
+ CLANG_ENABLE_OBJC_ARC = NO;
1136
+ CLANG_ENABLE_OBJC_WEAK = NO;
1137
+ CODE_SIGN_STYLE = Automatic;
1138
+ DEVELOPMENT_TEAM = PNQRMU2LPM;
1139
+ LIBRARY_SEARCH_PATHS = ../LibFactory;
1140
+ PRODUCT_NAME = "$(TARGET_NAME)";
1141
+ };
1142
+ name = Release;
1143
+ };
1144
+ FAD3577222646BEF00419673 /* Debug */ = {
1145
+ isa = XCBuildConfiguration;
1146
+ buildSettings = {
1147
+ CLANG_ENABLE_OBJC_ARC = NO;
1148
+ CLANG_ENABLE_OBJC_WEAK = NO;
1149
+ CODE_SIGN_STYLE = Automatic;
1150
+ DEVELOPMENT_TEAM = PNQRMU2LPM;
1151
+ PRODUCT_NAME = "$(TARGET_NAME)";
1152
+ };
1153
+ name = Debug;
1154
+ };
1155
+ FAD3577322646BEF00419673 /* Release */ = {
1156
+ isa = XCBuildConfiguration;
1157
+ buildSettings = {
1158
+ CLANG_ENABLE_OBJC_ARC = NO;
1159
+ CLANG_ENABLE_OBJC_WEAK = NO;
1160
+ CODE_SIGN_STYLE = Automatic;
1161
+ DEVELOPMENT_TEAM = PNQRMU2LPM;
1162
+ PRODUCT_NAME = "$(TARGET_NAME)";
1163
+ };
1164
+ name = Release;
1165
+ };
1166
+ /* End XCBuildConfiguration section */
1167
+
1168
+ /* Begin XCConfigurationList section */
1169
+ FA7A090122603A0E00B95E07 /* Build configuration list for PBXProject "Rhodes" */ = {
1170
+ isa = XCConfigurationList;
1171
+ buildConfigurations = (
1172
+ FA7A090D22603A0F00B95E07 /* Debug */,
1173
+ FA7A090E22603A0F00B95E07 /* Release */,
1174
+ );
1175
+ defaultConfigurationIsVisible = 0;
1176
+ defaultConfigurationName = Release;
1177
+ };
1178
+ FA7A090F22603A0F00B95E07 /* Build configuration list for PBXNativeTarget "Rhodes" */ = {
1179
+ isa = XCConfigurationList;
1180
+ buildConfigurations = (
1181
+ FA7A091022603A0F00B95E07 /* Debug */,
1182
+ FA7A091122603A0F00B95E07 /* Release */,
1183
+ );
1184
+ defaultConfigurationIsVisible = 0;
1185
+ defaultConfigurationName = Release;
1186
+ };
1187
+ FA7A09D92260564500B95E07 /* Build configuration list for PBXAggregateTarget "Framework" */ = {
1188
+ isa = XCConfigurationList;
1189
+ buildConfigurations = (
1190
+ FA7A09DA2260564500B95E07 /* Debug */,
1191
+ FA7A09DB2260564500B95E07 /* Release */,
1192
+ );
1193
+ defaultConfigurationIsVisible = 0;
1194
+ defaultConfigurationName = Release;
1195
+ };
1196
+ FAD3577122646BEF00419673 /* Build configuration list for PBXAggregateTarget "Framework copy" */ = {
1197
+ isa = XCConfigurationList;
1198
+ buildConfigurations = (
1199
+ FAD3577222646BEF00419673 /* Debug */,
1200
+ FAD3577322646BEF00419673 /* Release */,
1201
+ );
1202
+ defaultConfigurationIsVisible = 0;
1203
+ defaultConfigurationName = Release;
1204
+ };
1205
+ /* End XCConfigurationList section */
1206
+ };
1207
+ rootObject = FA7A08FE22603A0E00B95E07 /* Project object */;
1208
+ }