class Rake::Delphi::Android::PAClientSDKOptions
Public Instance Methods
aapt()
click to toggle source
Calls superclass method
Rake::Delphi::Android::SDK#aapt
# File lib/rake/delphi/android/sdk.rb, line 163 def aapt aapt = super aapt = aapt.to_s + '\\aapt.exe' unless aapt.to_s.match(/aapt\.exe$/i) aapt = Rake.quotepath('', aapt) end
jar()
click to toggle source
# File lib/rake/delphi/android/sdk.rb, line 169 def jar jar = platform.to_s + '\\android.jar' jar = Rake.quotepath('', jar) end
stripdebug()
click to toggle source
Calls superclass method
Rake::Delphi::Android::SDK#stripdebug
# File lib/rake/delphi/android/sdk.rb, line 158 def stripdebug stripdebug = super return Rake.quotepath('', stripdebug.to_s) end
zipalign()
click to toggle source
Calls superclass method
Rake::Delphi::Android::SDK#zipalign
# File lib/rake/delphi/android/sdk.rb, line 174 def zipalign zip_align = super zip_align = zip_align.to_s + '\\zipalign.exe' unless zip_align.to_s.match(/zipalign\.exe$/i) zip_align = Rake.quotepath('', zip_align) end