appium-boneyard / sign

Sign.jar automatically signs an apk with the Android test certificate.
403 stars 119 forks source link

Add Sign bat #8

Closed RuthlessRuler closed 5 years ago

RuthlessRuler commented 6 years ago

Adding a batch file called SignApk.bat with following code: @echo off if "%PATH_BASE%" == "" set PATH_BASE=%PATH% set PATH=%CD%;%PATH_BASE%; chcp 65001 2>nul >nul java -jar -Duser.language=en -Dfile.encoding=UTF8 "%~dp0\sign.jar" %*

Will replace the whole writing of java -jar stuff and replace it by only signapk. Would be nice!

bootstraponline commented 6 years ago

I think sign.jar isn't used anymore. Google released native signing binaries as part of the Android SDK.

I agree signapk.bat is cleaner. 🙂

RuthlessRuler commented 6 years ago

Well, its actually used by many people who are doing basic apk modding! Since it wouldn't do any harm, I highly suggest to add it as it makes its easier to use the tool!

bootstraponline commented 6 years ago

That's awesome. Send a pull request and I'll merge it. 🙂