https://github.com/l3odr0id/keystore_generator
Helps you to sign your android app
https://github.com/l3odr0id/keystore_generator
android android-sign dart dart-package flutter flutter-package keystore
Last synced: 3 months ago
JSON representation
Helps you to sign your android app
- Host: GitHub
- URL: https://github.com/l3odr0id/keystore_generator
- Owner: L3odr0id
- License: mit
- Created: 2022-02-17T16:32:57.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-01T13:20:40.000Z (almost 3 years ago)
- Last Synced: 2024-11-16T03:27:07.693Z (11 months ago)
- Topics: android, android-sign, dart, dart-package, flutter, flutter-package, keystore
- Language: Dart
- Homepage: https://pub.dev/packages/keystore_generator
- Size: 6.4 MB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
This package helps you to sign your android app. It generates the `keys/KEYSTORE_NAME.keystore`, `android/key.properties` and edits the `android/app/build.gradle`.
## Features
Use these flags:
- -a (required) to set alias
- -p (required) to set a password
- -y to overwrite the .keystore if keys/KEYSTORE_NAME.keystore has already been created## Getting started
Add package in `dev_dependencies`
```yaml
dev_dependencies:
keystore_generator:
```## Usage
Command `flutter pub run keystore_generator -a test -p test123 -y` creates a keystore with 'test' alias, 'test123' password and overwrites existing keystore.

## Additional information
Package modifies files exactly as recommended [here](https://docs.flutter.dev/deployment/android#create-an-upload-keystore)