An open API service indexing awesome lists of open source software.

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

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.

![Demo gif](gif/functionality.gif)

## Additional information

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