Sunday, 3 May 2020

Flutter Key Generation

Use following command


keytool -genkey -v -keystore ~/key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias key



for the update use below key where OLD key will be migrated and New Key will be generated.

keytool -importkeystore -srckeystore /Users/chetandhamande/testapk.jks -destkeystore /Users/chetandhamande/testapk.jks -deststoretype pkcs12

Wednesday, 8 January 2020

Learn Flutter

Wednesday, 4 December 2019

Run A PHP Server On A Mac Using Terminal Without Installing Anything

      

Wednesday, 27 November 2019

Reduce APK size

Tuesday, 26 November 2019

Reducing Images

Thursday, 21 November 2019

Domain Migration

Tuesday, 23 April 2019

version control

Via Android Studio



Developer Branch 

https://stackoverflow.com/questions/1911109/how-to-clone-a-specific-git-branch


Clone Branch 

git clone -b chetan git@github.com:chetangdhamande/android.git

git clone -b chetan https://github.com/chetangdhamande/android.git

where,
1.  "chetan" is branch name
2.  "https://github.com/chetangdhamande/android.git" is address with https format
3.  "-b" is used for branch


https://www.freecodecamp.org/forum/t/push-a-new-local-branch-to-a-remote-git-repository-and-track-it-too/13222