Quick Integration for Android
#
1. Java InstallationShipBookSDK is available through mavenCentral. To install it, simply add the following line to the dependencies in your build.gradle:
implementation 'io.shipbook:shipbooksdk:1.+'
#
2. Initializing ShipBook into your codeAdd the following to your application file:
import io.shipbook.shipbooksdk.ShipBook;
And add the following to onCreate():
#
3. Quick ImplementationYou can call all the usual Android logs, the only difference is that you should change the import from import android.util.Log; to import io.shipbook.shipbooksdk.Log;.
import io.shipbook.shipbooksdk.Log;
For example: