Module: Brazenhead::Package
Instance Method Summary
collapse
Methods included from Signer
#sign
Methods included from Android
#default_keystore, #path_to
Instance Method Details
#add_file(apk, file) ⇒ Object
13
14
15
|
# File 'lib/brazenhead/package.rb', line 13
def add_file(apk, file)
process.run(*"aapt add".split, apk, file)
end
|
#update_manifest(apk, manifest, min_sdk = 8) ⇒ Object
9
10
11
|
# File 'lib/brazenhead/package.rb', line 9
def update_manifest(apk, manifest, min_sdk = 8)
process.run(*update, *package(apk), *with_the(manifest), *using(path_to(min_sdk)))
end
|