mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-03-29 22:43:28 +08:00
12 lines
361 B
Ruby
12 lines
361 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 = 'WebViewDemo'
|
|
app.api_version = '18'
|
|
app.sdk_path = File.expand_path('~/src/android-sdk-macosx')
|
|
app.ndk_path = File.expand_path('~/src/android-ndk-r9d')
|
|
end
|