diff options
author | Paul Rouget <me@paulrouget.com> | 2018-07-11 15:26:41 +0200 |
---|---|---|
committer | Paul Rouget <me@paulrouget.com> | 2018-07-31 22:39:45 +0800 |
commit | 6a31864126679486935bd80c5f7f1c8ef7b027ed (patch) | |
tree | fe24feee9b8b9100a24e3a566a90c3d9a4d58e53 /python/servo/command_base.py | |
parent | bef2fe83cd995eb291e1ce58c2966b232431a735 (diff) | |
download | servo-6a31864126679486935bd80c5f7f1c8ef7b027ed.tar.gz servo-6a31864126679486935bd80c5f7f1c8ef7b027ed.zip |
Update Gradle and SDK
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index ae04bd077b8..13049409752 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -333,7 +333,7 @@ class CommandBase(object): def get_apk_path(self, release): base_path = self.get_target_dir() base_path = path.join(base_path, self.config["android"]["target"]) - apk_name = "servo.apk" + apk_name = "servoapp.apk" build_type = "release" if release else "debug" return path.join(base_path, build_type, apk_name) |