mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
android: Rename the Android app to reflect servo.org ownership and servoshell
(#32554)
Signed-off-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
parent
7d7574373b
commit
30dad2565f
13 changed files with 65 additions and 65 deletions
|
@ -268,7 +268,7 @@ class MachCommands(CommandBase):
|
|||
ndk_gdb,
|
||||
"--adb", adb_path,
|
||||
"--project", "support/android/apk/servoapp/src/main/",
|
||||
"--launch", "org.mozilla.servo.MainActivity",
|
||||
"--launch", "org.servo.servoshell.MainActivity",
|
||||
"-x", f.name,
|
||||
"--verbose",
|
||||
], env=env)
|
||||
|
|
|
@ -54,8 +54,8 @@ PACKAGES = {
|
|||
'production/servo-tech-demo.dmg',
|
||||
],
|
||||
'maven': [
|
||||
'android/gradle/servoview/maven/org/mozilla/servoview/servoview-armv7/',
|
||||
'android/gradle/servoview/maven/org/mozilla/servoview/servoview-x86/',
|
||||
'android/gradle/servoview/maven/org/servo/servoview/servoview-armv7/',
|
||||
'android/gradle/servoview/maven/org/servo/servoview/servoview-x86/',
|
||||
],
|
||||
'windows-msvc': [
|
||||
r'production\msi\Servo.exe',
|
||||
|
|
|
@ -104,7 +104,7 @@ class PostBuildCommands(CommandBase):
|
|||
print("https://github.com/servo/servo/wiki/Building-for-Android#debugging-on-device")
|
||||
return
|
||||
script = [
|
||||
"am force-stop org.mozilla.servo",
|
||||
"am force-stop org.servo.servoshell",
|
||||
]
|
||||
json_params = shell_quote(json.dumps(params))
|
||||
extra = "-e servoargs " + json_params
|
||||
|
@ -115,10 +115,10 @@ class PostBuildCommands(CommandBase):
|
|||
if gst_debug:
|
||||
extra += " -e gstdebug " + gst_debug
|
||||
script += [
|
||||
"am start " + extra + " org.mozilla.servo/org.mozilla.servo.MainActivity",
|
||||
"am start " + extra + " org.servo.servoshell/org.servo.servoshell.MainActivity",
|
||||
"sleep 0.5",
|
||||
"echo Servo PID: $(pidof org.mozilla.servo)",
|
||||
"logcat --pid=$(pidof org.mozilla.servo)",
|
||||
"echo Servo PID: $(pidof org.servo.servoshell)",
|
||||
"logcat --pid=$(pidof org.servo.sevoshell)",
|
||||
"exit"
|
||||
]
|
||||
args = [self.android_adb_path(env)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue