Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Side by Side Diff: platform_tools/android/bin/android_install_app

Issue 1275223003: Ensure that android "release" apps are signed with debug key (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # 2 #
3 # android_install_app: installs the skia sampleApp on the device. 3 # android_install_app: installs the skia sampleApp on the device.
4 4
5 function print_usage { 5 function print_usage {
6 echo "USAGE: android_install_app [options]" 6 echo "USAGE: android_install_app [options]"
7 echo " Options: -f Forces the package to be installed by removing any " 7 echo " Options: -f Forces the package to be installed by removing any "
8 echo " previously installed packages" 8 echo " previously installed packages"
9 echo " -h Prints this help message" 9 echo " -h Prints this help message"
10 echo " --release Install the release build of Skia" 10 echo " --release Install the release build of Skia"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 50
51 if [[ "$forceRemoval" == "true" ]]; 51 if [[ "$forceRemoval" == "true" ]];
52 then 52 then
53 echo "Forcing removal of previously installed packages" 53 echo "Forcing removal of previously installed packages"
54 $ADB ${DEVICE_SERIAL} uninstall com.skia > /dev/null 54 $ADB ${DEVICE_SERIAL} uninstall com.skia > /dev/null
55 fi 55 fi
56 56
57 if [[ "$BUILDTYPE" == "Release" ]]; 57 if [[ "$BUILDTYPE" == "Release" ]];
58 then 58 then
59 apk_suffix="release-unsigned.apk" 59 apk_suffix="release.apk"
60 else 60 else
61 apk_suffix="debug.apk" 61 apk_suffix="debug.apk"
62 fi 62 fi
63 63
64 64
65 APP_LC=$(echo $app | tr "[:upper:]" "[:lower:]") 65 APP_LC=$(echo $app | tr "[:upper:]" "[:lower:]")
66 66
67 echo "Installing ${APP_LC} from ${APP_LC}/build/outputs/apk/${APP_LC}-${ANDROID_ ARCH}-${apk_suffix}" 67 echo "Installing ${APP_LC} from ${APP_LC}/build/outputs/apk/${APP_LC}-${ANDROID_ ARCH}-${apk_suffix}"
68 $ADB ${DEVICE_SERIAL} install -r ${SCRIPT_DIR}/../apps/${APP_LC}/build/outputs/a pk/${APP_LC}-${ANDROID_ARCH}-${apk_suffix} 68 $ADB ${DEVICE_SERIAL} install -r ${SCRIPT_DIR}/../apps/${APP_LC}/build/outputs/a pk/${APP_LC}-${ANDROID_ARCH}-${apk_suffix}
69 69
OLDNEW
« no previous file with comments | « platform_tools/android/apps/sample_app/build.gradle ('k') | platform_tools/android/gyp/skia_android.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698