blob: d1a8ee965b9049df130ce4deee71998f71af405f (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
#
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# install -r doesn't always work? Try uninstalling first.
adb uninstall org.chromium.content_shell
adb install -r ${CHROME_SRC}/out/Release/content_shell/ContentShell-debug.apk
|