mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-02 22:42:49 +08:00
23 lines
640 B
Ruby
23 lines
640 B
Ruby
# -*- coding: utf-8 -*-
|
|
$:.unshift("../../lib")
|
|
require 'motion/project/template/android'
|
|
|
|
Motion::Project::App.setup do |app|
|
|
# Use `rake config' to see complete project settings.
|
|
app.name = 'TestAndroid'
|
|
app.api_version = '18'
|
|
app.sdk_path = File.expand_path('~/src/android-sdk-macosx')
|
|
app.ndk_path = File.expand_path('~/src/android-ndk-r9d')
|
|
|
|
# Make sure the main file is compiled and executed first.
|
|
ary = app.files
|
|
ary.delete('./app/main.rb')
|
|
if files = ENV['files']
|
|
files = files.split(',')
|
|
ary.delete_if do |path|
|
|
!files.any? { |x| path.include?(x) }
|
|
end
|
|
end
|
|
ary.unshift('./app/main.rb')
|
|
end
|