Refer to adb docs.
adb install [-l] [-r] [-s] - click this package file on the device and install it
('- l' means forward blocking of the application)
('- r' means reinstalling the application, saving its data)
(n - s means installing on an SD card instead of internal storage)
adb uninstall [-k] - remove this application package from the device
('- k' means storing data directories and caches)
Add "-r" when reinstalling.
Add "-k" when uninstalling.
source share