代码拉取完成,页面将自动刷新
# Copyright (c) 2012 GREE, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
require 'fileutils'
UNITY="/Applications/Unity/Hub/Editor/2019.4.40f1/Unity.app/Contents/MacOS/Unity"
CNT = 2
SRCDIR = Array.new(CNT);
DSTDIR = Array.new(CNT);
SRCS = Array.new(CNT);
SRCDIR[0]="../plugins"
DSTDIR[0]="Packager/Assets/Plugins"
SRCS[0]=%W|
Editor/UnityWebViewPostprocessBuild.cs
WebViewObject.cs
iOS/WebView.mm
iOS/WebViewWithUIWebView.mm
unity-webview-webgl-plugin.jslib
|
SRCDIR[1]="../plugins"
DSTDIR[1]="Packager/Assets"
SRCS[1]=%W|
WebGLTemplates
WebPlayerTemplates
|
task :default => ["build", "pack", "buildnofragment", "packnofragment"]
desc "build"
task :build do
DSTDIR.each do |dir|
sh "git clean -dxf ."
# for keeping meta files
if Dir.exists?('../dist/package')
sh "cd ../dist; git clean -dxf .; git checkout ."
sh "cp -a ../dist/package/* Packager"
end
end
CNT.times do |i|
SRCS[i].each do |src|
dstdir = "#{DSTDIR[i]}/#{File.dirname(src)}"
FileUtils.mkdir_p dstdir
FileUtils.cp_r "#{SRCDIR[i]}/#{src}", dstdir, preserve:true
end
end
["Android"].each do |t|
Dir.chdir("#{SRCDIR[0]}/#{t}") do
sh "git clean -dxf .; ./install.sh --unity /Applications/Unity5.6.1f1"
end
end
["Mac"].each do |t|
Dir.chdir("#{SRCDIR[0]}/#{t}") do
sh "./install.sh"
end
end
end
desc "pack"
task :pack do
sh "#{UNITY} -projectPath `pwd`/Packager -batchmode -quit -executeMethod Packager.Export -logFile LOG"
FileUtils.mv "Packager/unity-webview.unitypackage", "../dist"
sh "(cd Packager; rm -f ../../dist/unity-webview.zip; zip -qr9 ../../dist/unity-webview.zip `find Assets/Plugins -type f` `find Assets/WebGLTemplates -type f` `find Assets/WebPlayerTemplates -type f`)"
sh "(cd ../dist/package; rm -rf Assets; unzip -q ../unity-webview.zip; git checkout Assets/Plugins.meta; git checkout Assets/WebGLTemplates.meta; git checkout Assets/WebPlayerTemplates.meta)"
end
desc "buildnofragment"
task :buildnofragment do
["Android"].each do |t|
Dir.chdir("#{SRCDIR[0]}/#{t}") do
sh "git clean -dxf .; ./install-nofragment.sh --unity /Applications/Unity5.6.1f1"
end
end
sh "sed -i '' -e 's/private static bool nofragment = false/private static bool nofragment = true/' Packager/Assets/Plugins/Editor/UnityWebViewPostprocessBuild.cs"
end
desc "packnofragment"
task :packnofragment do
sh "#{UNITY} -projectPath `pwd`/Packager -batchmode -quit -executeMethod Packager.Export -logFile LOG"
FileUtils.mv "Packager/unity-webview.unitypackage", "../dist/unity-webview-nofragment.unitypackage"
sh "(cd Packager; rm -f ../../dist/unity-webview-nofragment.zip; zip -qr9 ../../dist/unity-webview-nofragment.zip `find Assets/Plugins -type f` `find Assets/WebGLTemplates -type f` `find Assets/WebPlayerTemplates -type f`)"
sh "(cd ../dist/package-nofragment; rm -rf Assets; unzip -q ../unity-webview-nofragment.zip; git checkout Assets/Plugins.meta; git checkout Assets/WebGLTemplates.meta; git checkout Assets/WebPlayerTemplates.meta)"
end
desc "commit"
task :commit do
rev = open("|git show HEAD|head -1|awk '{print $2}'").read.strip
sh "git add ../dist"
sh "git commit -m 'updated binaries (#{rev}).'"
end
desc "clean"
task :clean do
DSTDIR.each do |dir|
FileUtils.rm_rf dir
end
end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。