Update Gradle and SDK

This commit is contained in:
Paul Rouget 2018-07-11 15:26:41 +02:00
parent bef2fe83cd
commit 6a31864126
20 changed files with 49 additions and 53 deletions

View file

@ -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)