You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, currently Im using the com.android.apksigner.ApkSignerTool as interface with the signer, which is basically using it as CLI. The dependency only has the internal signer code, without the CLI interface, so I need to refactor the code a bit (thecom.android.apksig.ApkSigner interface is not super trivial)
pom.xml contains the system dependency
which makes building uber-apk-signer unnecessary complicated. Google releases the library version of apksigner in it's maven repository: https://mvnrepository.com/artifact/com.android.tools.build/apksig?repo=google
So you only have to add
and then use the dependency
You can then directly
com.android.apksig.ApkSigner
andcom.android.apksig.ApkVerifier
within your code.The text was updated successfully, but these errors were encountered: