Sha256: 8e0b2f07c9f095038bb5f75021958eda1c8c84fc272cef4206e6c9794865cc2d
Contents?: true
Size: 717 Bytes
Versions: 15
Compression:
Stored size: 717 Bytes
Contents
$:.unshift("/Library/RubyMotion/lib") require 'motion/project/template/ios' Motion::Project::App.setup do |app| app.build_dir = 'build/ios' app.deployment_target = '7.0' unless Motion::Project::Config.starter? app.files.concat(Dir.glob(File.join(File.dirname(__FILE__), 'ios/*.rb'))) app.frameworks += ['CoreMotion', 'AVFoundation', 'GameController', 'MediaPlayer', 'OpenAL'] app.libs += ['-lz', '-lsqlite3', '-liconv'] app.vendor_project File.join(File.dirname(__FILE__), '../../build/ios'), :static, :force_load => true app.custom_init_funcs << 'Init_Fluency' app.info_plist['UISupportedInterfaceOrientations'] = ['UIInterfaceOrientationLandscapeRight', 'UIInterfaceOrientationLandscapeLeft'] end
Version data entries
15 entries across 15 versions & 1 rubygems