uber-apk-signer


Source link: https://github.com/patrickfav/uber-apk-signer

Uber Apk Signer

A tool that helps signing, zip aligning and verifying multiple Android application packages (APKs) with either debug or provided release certificates (or multiple). It supports v1 and v2 Android signing scheme. Easy and convenient debug signing with embedded debug keystore. Automatically verifies signature and zipalign after every signing.

Main features:

  • zipalign, (re)signing and verifying of multiple APKs in one step
  • verify signature (with hash check) and zipalign of multiple APKs in one step
  • built-in zipalign & debug keystore for convenient usage
  • supports v1 and v2 android apk singing scheme
  • support for multiple signatures for one APK
  • crypto/signing code relied upon official implementation

Basic usage:

java -jar uber-apk-signer.jar --apks /path/to/apks 

This should run on any Windows, Mac or Linux machine where Java8+ is installed.

Requirements

  • JDK 8
  • Currently on Linux 32bit: zipalign must be set in PATH

Download

Grab jar from latest Release

Demo

Command Line Interface

-a,--apks <file/folder>

  Can be a single apk or a folder containing multiple apks. These are used

  as source for zipalining/signing/verifying. It is also possible to

  provide multiple locations space seperated (can be mixed file folder):

  '/apk /apks2 my.apk'. Folder will be checked non-recursively.
 --allowResign

If this flag is set, the tool will not show error on signed apks, but

  will sign them with the new certificate (therefore removing the old

  one).
 --debug

Prints additional info for debugging.
 --dryRun

  Check what apks would be processed without actually doing anything. -h,--help

 Prints help docs.
 --ks <keystore>

 The keystore file. If this isn't provided, will try to sign with a debug

  keystore. The debug keystore will be searched in the same dir as

  execution and 'user_home/.android' folder. If it is not found there a

  built-in keystore will be used for convenience. It is possible to pass

  one or multiple keystores. The syntax for multiple params is

  '<index>=<keystore>' for example: '1=keystore.jks'. Must match the

  parameters of --ksAlias.
 --ksAlias <alias>

  The alias of the used key in the keystore. Must be provided if --ks is

  provided. It is possible to pass one or multiple aliases for multiple

  keystore configs. The syntax for multiple params is '<index>=<alias>'

  for example: '1=my-alias'. Must match the parameters of --ks.
 --ksDebug <keystore>

  Same as --ks parameter but with a debug keystore. With this option the

  default keystore alias and passwords are used and any arguments relating

  to these parameter are ignored.
 --ksKeyPass <password>

The password for the key. If this is not provided, caller will get a

  user prompt to enter it. It is possible to pass one or multiple

  passwords for multiple keystore configs. The syntax for multiple params

  is '<index>=<password>'. Must match the parameters of --ks.
 --ksPass <password>

The password for the keystore. If this is not provided, caller will get

  a user prompt to enter it. It is possible to pass one or multiple

  passwords for multiple keystore configs. The syntax for multiple params

  is '<index>=<password>'. Must match the parameters of --ks. -o,--out <path>

 Where the aligned/signed apks will be copied to. Must be a folder. Will

  create, if it does not exist.
 --overwrite

  Will overwrite/delete the apks in-place
 --skipZipAlign

  Skips zipAlign process. Also affects verify. -v,--version

 Prints current version.
 --verbose

 Prints more output, especially useful for sign verify.
 --verifySha256 <cert-sha256>
Provide one or multiple sha256 in string hex representation (ignoring

  case) to let the tool check it against hashes of the APK's certificate

  and use it in the verify process. All given hashes must be present in

  the signature to verify e.g. if 2 hashes are given the apk must have 2

  signatures with exact these hashes (providing only one hash, even if it

  matches one cert, will fail). -y,--onlyVerify

 If this is passed, the signature and alignment is only verified.
 --zipAlignPath <path>

 Pass your own zipalign executable. If this is omitted the built-in

  version is used (available for win, mac and linux) 

Examples

Provide your own out directory for signed apks

java -jar uber-apk-signer.jar -a /path/to/apks --out /path/to/apks/out 

Only verify the signed apks

java -jar uber-apk-signer.jar -a /path/to/apks --onlyVerify 

Sign with your own release keystore

java -jar uber-apk-signer.jar -a /path/to/apks --ks /path/release.jks --ksAlias my_alias 

Provide your own zipalign executable

java -jar uber-apk-signer.jar -a /path/to/apks --zipAlignPath /sdk/build-tools/24.0.3/zipalign 

Provide your own location of your debug keystore

java -jar uber-apk-signer.jar -a /path/to/apks --ksDebug /path/debug.jks 

Sign with your multiple release keystores

java -jar uber-apk-signer.jar -a /path/to/apks --ks 1=/path/release.jks 2=/path/release2.jks --ksAlias 1=my_alias1 2=my_alias2 

Use multiple locations or files (will ignore duplicate files)

java -jar uber-apk-signer.jar -a /path/to/apks /path2 /path3/select1.apk /path3/select2.apk 

Provide your sha256 hash to check against the signature:

java -jar uber-apk-signer.jar -a /path/to/apks --onlyVerify --verifySha256 ab318df27 

Process Return Value

This application will return 0 if every signing/verifing was successful, 1 if an error happens (e.g. wrong arguments) and 2 if at least 1 sign/verify process was not successful.

Debug Signing Mode

If no keystore is provided the tool will try to automatically sign with a debug keystore. It will try to find on in the following locations (descending order):

  • Keystore location provided with --ksDebug
  • debug.keystore in the same directory as the jar executable
  • debug.keystore found in the /user_home/.android folder
  • Embedded debug.keystore packaged with the jar executable

A log message will indicate which one was chosen.

Zipalign Executable

Zipalign is a tool developed by Google to optimize zips (apks). It is needed if you want to upload it to the Playstore otherwise it is optional. By default this tool will try to zipalign the apk, therefore it will need the location of the executable. If the path isn't passed in the command line interface, the tool checks if it is in PATH environment variable, otherwise it will try to use an embedded version of zipalign.

If --skipZipAlign is passed no executable is needed.

v1 and v2 Signing Scheme

Android 7.0 introduces APK Signature Scheme v2, a new app-signing scheme that offers faster app install times and more protection against unauthorized alterations to APK files. By default, Android Studio 2.2 and the Android Plugin for Gradle 2.2 sign your app using both APK Signature Scheme v2 and the traditional signing scheme, which uses JAR signing.

APK Signature Scheme v2 is a whole-file signature scheme that increases verification speed and strengthens integrity guarantees by detecting any changes to the protected parts of the APK. The older jarsigning is called v1 schema.

Signed Release Jar

The provided JARs in the Github release page are signed with my private key:

CN=Patrick Favre-Bulle, OU=Private, O=PF Github Open Source, L=Vienna, ST=Vienna, C=AT Validity: Thu Sep 07 16:40:57 SGT 2017 to: Fri Feb 10 16:40:57 SGT 2034 SHA1: 06:DE:F2:C5:F7:BC:0C:11:ED:35:E2:0F:B1:9F:78:99:0F:BE:43:C4 SHA256: 2B:65:33:B0:1C:0D:2A:69:4E:2D:53:8F:29:D5:6C:D6:87:AF:06:42:1F:1A:EE:B3:3C:E0:6D:0B:65:A1:AA:88 

Use the jarsigner tool (found in your $JAVA_HOME/bin folder) folder to verify.

Build

Use maven (3.1+) to create a jar including all dependencies

mvn clean package 

Tech Stack

  • Java 8
  • Maven

License

Copyright 2016 Patrick Favre-Bulle

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0 

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Resources

SweetPrefs alleviates the pain of using SharedPreferences on Android. It provides a simple interface to store and retrieve objects of any kind.

CountryCurrencyPicker is an android picker library for country and / or currency. You can implement it as fragment or dialog. It offers the option to search for country values and / or currency values.

Generic Recycler View Adapter that supports multiple layout implementations in a single Recycler View.

Yeoman Generator for Android Conductor based apps. It's simple much better than cloning and refactoring your project manually.

A library, based on Google's Volley library, that makes android HTTP requests easier and requires no boiler plate code that volley usually needs.

CustomVolleyRequester is used to make developer's lives easier. Making HTTP calls is a common requirement for most apps and we believe that using it does not require the developer to repeat the initialization process each time. With CustomVolleyRequester, all you need to do is specify the request fields needed for your request, give it the desired model class to be returned, and the library will deliver your model.

A tiny, fully extensible MVP implementation for Android in pure Java, which goal is to provide common interfaces for tests that need to easily mock Views and Presenters.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes