Chromium Code Reviews| Index: apk_minter/src/org/chromium/apkminter/APKMinting.java |
| diff --git a/apk_minter/src/org/chromium/apkminter/APKMinting.java b/apk_minter/src/org/chromium/apkminter/APKMinting.java |
| index 2399232bbd9769cc13965056a265cb025554afbb..e509611324173cf380fc2c9f6e66e4689b4a3cb5 100644 |
| --- a/apk_minter/src/org/chromium/apkminter/APKMinting.java |
| +++ b/apk_minter/src/org/chromium/apkminter/APKMinting.java |
| @@ -49,8 +49,8 @@ import kellinwood.security.zipsigner.ZipSigner; |
| * modified and generate new APK for the request site, and signing the APK. |
| */ |
| public class APKMinting { |
| - private static final String MINTING_APK_PREFIX = "org.chromium.minting"; |
| - private static final String TEMPLATE_APK_NAME = "MintingExample.template.apk"; |
| + private static final String MINTING_APK_PREFIX = "org.chromium.webapk"; |
| + private static final String TEMPLATE_APK_NAME = "WebApk.template.apk"; |
|
Yaron
2016/05/05 21:41:33
Per offline discussoin, I agree with you that this
|
| private static final String KEY_STORE_NAME = "minted-apk-release-key-bks"; |
| private static final String KEY_STORE_ALIAS = "minted_apk"; |
| private static final String KEY_STORE_PASSWORD = "chrome"; |
| @@ -213,7 +213,7 @@ public class APKMinting { |
| // A temporary directory with a unique name is created for each request. |
| // The structure of this directory is: |
| - // --tmp.apk: a copy of MintingExample.template.apk loaded from assets. |
| + // --tmp.apk: a copy of WebApk.template.apk loaded from assets. |
| // --/gen: includes all the files after unzip the tmp.apk. |
| // --tmp.unsigned.apk: zip the directory "gen" after modifying its |
| // AndroidManifest.xml and res folder. |