https://github.com/kennyalmendral/pizzicatune
A simple violin tuner app that outputs real plucked (pizzicato) string sound
https://github.com/kennyalmendral/pizzicatune
Last synced: 3 months ago
JSON representation
A simple violin tuner app that outputs real plucked (pizzicato) string sound
- Host: GitHub
- URL: https://github.com/kennyalmendral/pizzicatune
- Owner: kennyalmendral
- Created: 2019-12-02T05:59:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-02T06:03:15.000Z (over 5 years ago)
- Last Synced: 2025-01-12T04:48:16.254Z (4 months ago)
- Language: TypeScript
- Homepage:
- Size: 1.87 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pizzicatune
A simple violin tuner app that outputs real plucked (pizzicato) string sound.
## Generate Keystore
```
keytool -genkey -v -keystore Pizzicatune.keystore -alias PizzicatuneKeystore -keyalg RSA -keysize 2048 -validity 10000
```**Password:** nfs2se
**First and Last Name:** Kenny Almendral
**Organizational Unit:** None
**Organization:** None
**City:** Baguio City
**State:** Benguet
**Country Code:** PH
## Generate Release APK Binary
```
ionic cordova build android --prod --release
```## Sign the Binary
```
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore Pizzicatune.keystore platforms/android/app/build/outputs/apk/release/app-release-unsigned.apk PizzicatuneKeystore
```**Keystore Password:** nfs2se
## Optimize the Binary for Release
```
zipalign -v 4 platforms/android/app/build/outputs/apk/release/app-release-unsigned.apk Pizzicatune0.0.2.apk
```