-
-
Notifications
You must be signed in to change notification settings - Fork 372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android apk #1136 #1377
Android apk #1136 #1377
Conversation
added packaging_format to GradleMixin.distribution_path
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good - a couple of fairly minor suggestions inline.
|
||
# Make sure the dist folder exists | ||
(tmp_path / "base_path" / "dist").mkdir(parents=True) | ||
return command |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like it should be identical to the one in contest - can it be removed?
def test_default_packaging_format(package_command): | ||
assert package_command.default_packaging_format == "aab" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test case looks like it should be in the base test_package; although it's returning aab
, that's because it's a default, not because aab has been selected here.
…ing docs consistent on other platforms)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome - thanks for the contribution!
Added apk option to briefcase package android -p
briefcase package android shoul have a -p apk option, which will (a) compile a release APK, and (b) copy that release APK to the dist folder.
Fixes #1136
PR Checklist: