List all installed apps
adb shell pm list packages -f -3
You might also use grep altogether
adb shell pm list packages -f -3 | grep "anybooks"
backup one app and its all data:
adb backup -f appname.backup -apk com.package.appname
to restore, first install the app from Google Play or somewhere else. after that, run this:
adb restore appname.backup