1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
This package is normally built as part of the whole Android SDK and
ends up being included in the "build-tools" package. So the release
tags will match all of the various android-platform-* packages. To
make this extra confusing, they also publish a standalone JAR library
of this project with a separate versioning scheme, matching the Gradle
Android Plugin versions.
The source for this can some from two places:
* https://android.googlesource.com/platform/tools/apksig.git
* https://jcenter.bintray.com/com/android/tools/build/apksig/2.5.0-alpha-preview-01/apksig-2.5.0-alpha-preview-01-sources.jar
This package started from the git repo, but Google never tags releases
there with rational tags. The release versions never show up in the
git tags. But using `diff` or `meld`, it is easy to see which
released source jar matches which git revision:
unzip apksig-2.5.0-alpha-preview-01-sources.jar
meld /path/to/android-platform-tools-apksig/src/main/java/com/ com/
The source JAR does not include the gradle build files, but this
package only uses the .java files anyway.
-- Hans-Christoph Steiner <hans@eds.org>, Tue, 4 Apr 2017 22:36:21 +0200
|