Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 811 Bytes

README.md

File metadata and controls

40 lines (33 loc) · 811 Bytes

HACKSense widget

Designed for Hackserspace Budapest, If you want to use this widget first you have to set it up based on the HackSense article article.

Roadmap

  • Working with HSBP's API
  • Add colors

Sample

Sample

Build

./gradlew assembleRelease

Keygen

keytool -genkey -v \
    -keystore hacksense.keystore \
    -keyalg RSA \
    -keysize 2048 \
    -sigalg SHA256withRSA \
    -validity 10000 \
    -alias hacksense

Sign

apksigner sign \
    --ks hacksense.keystore \
    --ks-key-alias hacksense \
    --in ./app/build/outputs/apk/release/app-release-unsigned.apk \
    --out hacksense.apk

Check sign

apksigner verify --verbose --print-certs hacksense.apk