Class: HighFive::Thor::Tasks::Dist
Instance Method Summary
collapse
#android_manifest_path, #gradle_file_path, #parse_resolution, project_name_from_build_xml, #res_map, #valid_directories
Methods included from IosHelper
#info_plist_path, #ios_icon_sizes, #ios_path, uuid_from_mobileprovision, #xcodeproj_path
inherited
Instance Method Details
#dist(platform) ⇒ Object
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# File 'lib/high_five/thor/tasks/dist.rb', line 24
def dist(platform)
@environment = options[:environment]
@output_file_name = options[:output_file_name]
@sign_identity = options[:sign_identity]
@provisioning_profile = options[:provisioning_profile]
@platform_path = options[:platform_path]
@platform = platform
if @platform == "android" || @platform == "amazon"
if @platform_path
android_path = @platform_path
else
manifest_path = config.android_manifest || android_manifest_path
android_path = File.dirname(manifest_path)
end
dist_android(android_path)
if options[:install]
install_android android_path
end
elsif @platform == "ios"
raise "Please pass in the code sign identity to build an ios app. -s [sign_identity]" if @sign_identity.nil?
raise "Please pass in the path to the provisioning profile to build an ios app. -p [provisioning_profile]" if @provisioning_profile.nil?
ios_project_name = File.basename(Dir[ios_path + "/*.xcodeproj"].first, '.xcodeproj')
ios_target = options[:target] || config.ios_target || ios_project_name
keychain = ios_project_name.gsub(/\s/, '').gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').gsub(/([a-z\d])([A-Z])/,'\1_\2').tr("-", "_").downcase + '-ios.keychain'
@output_file_name ||= ios_target
uuid = HighFive::IosHelper.uuid_from_mobileprovision(@provisioning_profile)
ENV['uuid'] = uuid
FileUtils.cp(@provisioning_profile, "#{ENV['HOME']}/Library/MobileDevice/Provisioning Profiles/#{uuid}.mobileprovision")
system_or_die("rm -rf #{ios_path}/build/*")
system_or_die(%Q(cd "#{ios_path}";
/usr/bin/xcodebuild -target "#{ios_target}" -configuration Release clean build "CONFIGURATION_BUILD_DIR=#{ios_path}/build" "CODE_SIGN_IDENTITY=#{@sign_identity}" PROVISIONING_PROFILE=$uuid))
system_or_die(%Q(/usr/bin/xcrun -sdk iphoneos PackageApplication -v "#{ios_path}/build/#{ios_target}.app" -o "#{ios_path}/build/#{@output_file_name}.ipa" --embed "#{@provisioning_profile}"))
end
end
|
#dist_android(android_path) ⇒ Object
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# File 'lib/high_five/thor/tasks/dist.rb', line 67
def dist_android(android_path)
@output_file_name = options[:output_file_name]
ant_flags = options[:"ant-flags"] || ""
system_or_die("android update project --path #{android_path} --subprojects")
gradle_file = File.join(android_path, "build.gradle")
gradle = File.exists?(gradle_file) && !options[:ant]
if gradle
system_or_die("gradle -b #{gradle_file} clean assembleRelease")
else
system_or_die("ant -file '#{android_path}/build.xml' clean release #{ant_flags}")
end
android_name = HighFive::AndroidHelper.project_name_from_build_xml("#{android_path}/build.xml")
if @output_file_name
if gradle
apk = Dir["#{android_path}/build/outputs/apk/*-release.apk"][0]
say "copying final build #{apk} -> #{android_path}/build/outputs/apk/#{@output_file_name}.apk"
FileUtils.cp("#{apk}", "#{android_path}/build/outputs/apk/#{@output_file_name}.apk")
else
say "copying final build #{android_path}/bin/#{android_name}-release.apk -> #{android_path}/bin/#{@output_file_name}.apk"
FileUtils.cp("#{android_path}/bin/#{android_name}-release.apk", "#{android_path}/bin/#{@output_file_name}.apk")
end
end
end
|
#install_android(android_path) ⇒ Object
94
95
96
|
# File 'lib/high_five/thor/tasks/dist.rb', line 94
def install_android(android_path)
system_or_die("ant -file '#{android_path}/build.xml' installr")
end
|