Index: build/android/incremental_install/installer.py |
diff --git a/build/android/incremental_install/installer.py b/build/android/incremental_install/installer.py |
index 1d70335491e3016a155c6763e8ff25bd9817df31..bc0954b524aababe8dba37bd48b9691840d84cb0 100755 |
--- a/build/android/incremental_install/installer.py |
+++ b/build/android/incremental_install/installer.py |
@@ -125,9 +125,9 @@ def main(): |
for split_glob in args.splits: |
splits.extend((f for f in glob.glob(split_glob))) |
device.InstallSplitApk(args.apk_path, splits, reinstall=True, |
- allow_cached_props=True) |
+ allow_cached_props=True, permissions=()) |
else: |
- device.Install(args.apk_path, reinstall=True) |
+ device.Install(args.apk_path, reinstall=True, permissions=()) |
install_timer.Stop(log=False) |
# Push .so and .dex files to the device (if they have changed). |