Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

flutter signing app

keytool -genkey -v -keystore c:UsersUSER_NAMEupload-keystore.jks -storetype JKS -keyalg RSA -keysize 2048 -validity 10000 -alias upload
Comment

signing the app flutter

storePassword=<password from previous step>
keyPassword=<password from previous step>
keyAlias=upload
storeFile=<location of the key store file, such as /Users/<user name>/upload-keystore.jks>
Comment

flutter app signing

Running the following at the command line:

On Mac/Linux, use the following command:
keytool -genkey -v -keystore ~/upload-keystore.jks -keyalg RSA -keysize 2048 -validity 10000 -alias upload

On Windows, use the following command:

keytool -genkey -v -keystore %userprofile%upload-keystore.jks -storetype JKS -keyalg RSA -keysize 2048 -validity 10000 -alias upload
Comment

flutter signing the app

keytool -genkey -v -keystore c:Users03Desktopupload-keystore.jks -storetype JKS -keyalg RSA -keysize 2048 -validity 10000 -alias upload
Comment

PREVIOUS NEXT
Code Example
Shell :: what is merge conflict in git 
Shell :: move linux 
Shell :: bash get public ip 
Shell :: check if string starts with powershell 
Shell :: Installing ionic local notification plugin 
Shell :: if file not exists 
Shell :: delete a deployment in kubernetes 
Shell :: boostrap install 
Shell :: sed line 
Shell :: how to delete all ufw rules 
Shell :: npm install webpack server 
Shell :: git recover deleted file 
Shell :: git remove file from being tracked 
Shell :: git pull only master branch 
Shell :: mkdir create all subdirectories 
Shell :: display settings ubuntu 20.04 in right side 
Shell :: change commit branch after push 
Shell :: sudo swapoff 
Shell :: wsl import 
Shell :: force-logout user linux 
Shell :: copy file to another directory linux 
Shell :: helm install with values file 
Shell :: print folder permissions linux 
Shell :: W: GPG error: http://packages.ros.org/ros/ubuntu xenial InRelease: The following signatures were invalid: KEYEXPIRED 1622248854 
Shell :: add user to sudoer "zsh" same customization for root 
Shell :: install wp from wp-cli 
Shell :: opencart install extension Invalid file type! 
Shell :: termbin command 
Shell :: install pgadmin ubuntu 20.04 
Shell :: ubuntu teeworlds 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =