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:
Martin Robinson 2024-06-24 17:39:57 +02:00 committed by GitHub
parent 7d7574373b
commit 30dad2565f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 65 additions and 65 deletions

View file

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

View file

@ -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',

View file

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