Add the OkHi Maven repository to your settings.gradle file
In your settings.gradle file, located at the root folder of your project. Add the new OkHi Maven Repository under the dependencyResolutionManagement section.
The OkHi libraries target Android devices >= SDK 21. Make sure you're targeting at least the same and set compileSdkVersion & targetSdkVersion to 33 by modifying your app/build.gradle file
If you're targeting Android versions >= 8 and you're using the OkVerify library you need to make sure your users select "Allow always" when granting permissions otherwise the verification process won't work.
Building with pro-guard enabled
If you have minifyEnabled set to true in your build.gradle file located android/app/build.gradle, you'll need to modify your proguard-rules.pro file, located android/app/proguard-rules.proas shown below to include classes required by the library to run.
-dontwarn sun.reflect.**-dontwarn java.beans.**-dontwarn sun.nio.ch.**-dontwarn sun.misc.**-keep classcom.esotericsoftware.** {*;}-keep classjava.beans.** { *; }-keep classsun.reflect.** { *; }-keep classsun.nio.ch.** { *; }-keep classcom.snappydb.** { *; }-dontwarn com.snappydb.**# If you don't use OkHttp as a dep and the following-dontwarn org.codehaus.mojo.animal_sniffer.*-dontwarn javax.annotation.**-keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase-dontwarn org.codehaus.mojo.animal_sniffer.*-dontwarn okhttp3.internal.platform.ConscryptPlatform-dontwarn org.conscrypt.ConscryptHostnameVerifier
2. Create and verify an address (Client-side)
Add a button to your UI that would enable the launching of OkHi address collection tool.
We recommend that you persist the verification state of the user in your app's local storage. This state can be used to ensure that a user may only verify a predefined number of addresses. Usually, one address is for most use cases.
Create an instance of the OkVerify class to be used later in your class.
Important: Make sure to invoke the static init method once on app start.
Always use your phone number or a phone number you own during testing as a message will be sent to this number after an address is created.
publicclassSampleextendsAppCompatActivity {privateOkHi okhi;privateOkCollect okCollect;privateOkVerify okVerify; @OverrideprotectedvoidonCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);setUpOkHi();Button btn =findViewById(R.id.btnSubmit);btn.setOnClickListener(view ->handleButtonClick()); }privatevoidhandleButtonClick() { OkHiUser user = new OkHiUser.Builder("+234xxxxx") // It is important to provide your actual phone number, as a message will be sent to this number
.withFirstName("Gift").withLastName("Moore") .withEmail("giftmoore@okhi.com") // it is important to use your actual email address, an email may be sent to the provided address
.build();startAddressCreation(user); }privatevoidstartAddressCreation(OkHiUser user) {okhi.requestEnableVerificationServices(newOkHiRequestHandler<Boolean>() { @OverridepublicvoidonResult(Boolean result) {if (result) { okCollect.launch(user, OkCollectLaunchMode.CREATE, new OkCollectCallback<OkHiUser, OkHiLocation>() {
@OverridepublicvoidonSuccess(OkHiUser okHiUser,OkHiLocation location) {startAddressVerification(okHiUser, location); } @OverridepublicvoidonClose() {Toast.makeText(Sample.this,"User closed",Toast.LENGTH_LONG).show(); } @OverridepublicvoidonError(OkHiException e) {Toast.makeText(Sample.this,e.getCode() +":"+e.getMessage(),Toast.LENGTH_LONG).show(); } }); } } @Override public void onError(OkHiException e) {Toast.makeText(Sample.this,e.getCode() +":"+e.getMessage(),Toast.LENGTH_LONG).show(); } }); }privatevoidstartAddressVerification(OkHiUser user,OkHiLocation location) {okVerify.start(user, location,newOkVerifyCallback<String>() { @OverridepublicvoidonSuccess(String result) {Toast.makeText(Sample.this,"Started verification for: "+ result,Toast.LENGTH_LONG).show(); } @OverridepublicvoidonError(OkHiException e) {Toast.makeText(Sample.this,e.getCode() +":"+e.getMessage(),Toast.LENGTH_LONG).show(); } }); }privatevoidsetUpOkHi() { final OkHiTheme theme = new OkHiTheme.Builder("#333333").setAppBarLogo("https://cdn.okhi.co/icon.png").setAppBarColor("#333333").build();
finalOkHiConfig config =new OkHiConfig.Builder().withStreetView().build();int importance =Build.VERSION.SDK_INT>=Build.VERSION_CODES.N?NotificationManager.IMPORTANCE_DEFAULT:3;OkVerify.init(getApplicationContext(),newOkHiNotification("Verifying your address","We're currently verifying your address. This won't take long","OkHi_Test","OkHi Address Verification","Alerts related to any address verification updates", importance,1,// notificationId2// notification request code ));try { okhi =newOkHi(this); okCollect =new OkCollect.Builder(this).withTheme(theme).withConfig(config).build(); okVerify =new OkVerify.Builder(this).build(); } catch (Exception e) {e.printStackTrace(); } } @OverrideprotectedvoidonActivityResult(int requestCode,int resultCode, @NullableIntent data) { super.onActivityResult(requestCode, resultCode, data);okhi.onActivityResult(requestCode, resultCode, data); } @Override public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);okhi.onRequestPermissionsResult(requestCode, permissions, grantResults); }}
classMainActivity : AppCompatActivity() {privatelateinitvar okhi: OkHiprivatelateinitvar okCollect: OkCollectprivatelateinitvar okVerify: OkVerifyoverridefunonCreate(savedInstanceState: Bundle?) {super.onCreate(savedInstanceState)setContentView(R.layout.activity_main)setUpOkHi() }publicfunhandleButtonPress(v: View) {requestPermissions() }privatefunrequestPermissions() { okhi.requestEnableVerificationServices(object : OkHiRequestHandler<Boolean> {overridefunonResult(result: Boolean) {if (result) {startAddressCreation(); } }overridefunonError(e: OkHiException) { e.printStackTrace() } }) }private void startAddressCreation(OkHiUser user) { val user = OkHiUser.Builder("+234xxxx") // It is important to provide your actual phone number, as a message will be sent to this number.
.withFirstName("Gift") .withLastName("Moore") .withEmail("giftmoore@okhi.com") // It is important to use your actual email address, an email may be sent to the provided address
.build() okCollect.launch(user, new OkCollectCallback<OkHiUser, OkHiLocation>() {@Overridepublic void onSuccess(OkHiUser okHiUser, OkHiLocation location) {startAddressVerification(location); }@Overridepublic void onClose() {showMessage("User closed."); }@Overridepublic void onError(OkHiException e) {showMessage(e.getCode() +":"+ e.getMessage()); } }); }privatefunstartAddressVerification(user: OkHiUser, location: OkHiLocation) { okVerify.start(user, location, object : OkVerifyCallback<String> {overridefunonSuccess(result: String) { Log.v("OkVerify", "Verification started for: $result") }overridefunonError(e: OkHiException) { e.printStackTrace() } }) }privatefunsetUpOkHi() { val theme = OkHiTheme.Builder("#333333").setAppBarLogo("https://cdn.okhi.co/icon.png").setAppBarColor("#333333").build()
val config = OkHiConfig.Builder().withStreetView().build() val importance = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) NotificationManager.IMPORTANCE_DEFAULT else 3
OkVerify.init(applicationContext, OkHiNotification("Verifying your address","We're currently verifying your address. This won't take long","OkHi_Test","OkHi Address Verification","Alerts related to any address verification updates", importance,1,2 ) )try { okhi =OkHi(this) okCollect = OkCollect.Builder(this).withTheme(theme).withConfig(config).build() okVerify = OkVerify.Builder(this).build() } catch (e: Exception) { e.printStackTrace() } }overridefunonActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {super.onActivityResult(requestCode, resultCode, data) okhi.onActivityResult(requestCode, resultCode, data) }overridefunonRequestPermissionsResult(requestCode: Int, permissions: Array<String?>, grantResults: IntArray) {super.onRequestPermissionsResult(requestCode, permissions, grantResults) okhi.onRequestPermissionsResult(requestCode, permissions, grantResults) }}
Test
If verification has started successfully:
A persistent notification should show, indicating that verification is ongoing
Common issues:
If background location permission is not granted, verification will not start
3. Add address endpoint (Server-side)
Here's a sample address payload that the client would get on successful address collection:
Create a secure endpoint on your server that your app can use to pass address details to your server. Remember to handle corner cases such as, address updates, multiple addresses if your app supports it.
//Secure new address endpointapp.post("/users/addresses",async (req) => {const { user,location } =req.body;const { id,firstName,lastName,phone } = user;const { id: locationId, displayTitle, title, subtitle, country, state, city, countryCode, lat, lon, plusCode, propertyName, streetName, url, streetViewPanoId, streetViewPanoUrl
} = location;console.log(user, location);// Store the location.id. Used to match webhook updatesreturn;});
4. Handle verification events (Server-side)
OkHi sends verification status updates over a few days while verification is ongoing. Follow the webhook guide to set up a webhook to receive these verification status updates and run actions such as upgrading a user's KYC level.
5. Show verification status in app(Server- & Client-side)
Create a secure endpoint to enable your app to retrieve address details, including the verification status received from the webhook
// Secure address retrieval endpointapp.get("/users/addresses", (req) => {// Get data from db. Example result:constdbResult= {"id":"8F0yPK1Zdj","status":"verified","displayTitle":"10, Raymond Njoku Street","title":"Raymond Njoku Street","subtitle":"10","country":"Nigeria","state":"Lagos","city":"Eti-Osa","countryCode":"ng", }return dbResult;});
Show the resulting address details and status on the address page in your app.
6. Test the integration
Title
Scenario
How to test
Create an address
Address creation succeeds and verification is initiated
Launch OkHi's address manager via the button you created and create an address.
A sticky notification appears on android.
Dashboard
When verification is initiated, the address shows up on OkDash
Check OkDash, you should see a list of all the addresses created.
It takes ~3min for addresses to show up on OkDash
Proof of address
When an address is verified, the webhook receives the status update and the app shows the correct verification status.
A proof of address certificate is made available on OkDash.
Install your app on your personal device that you move around with and create your home address. Check okDash in 3 days for your proof of address certificate once your address has been verified.
Business logic
When an address is verified or not, the correct business logic is applied successfully.
Conduct a comprehensive test with multiple users, wherein they create various addresses to observe diverse outcomes. These outcomes may include successful creation of home addresses, entering incorrect addresses, refusing to grant necessary location permissions, or uninstalling the app immediately after initiating the address verification process, among other scenarios.
7. Customise the integration
Create a location permissions primer (Required)
Create your custom location permissions primer to educate your user on the requirement for location permissions. Make sure to follow our design best practices to ensure you meet the Google Play store and AppStore requirements.
Customise OkCollect (optional)
Its possible to completely transform the default appearance of OkHiLocationManager to better match your brand by providing values to the theme prop
Its possible to completely transform the default apperance of OkHiLocationManager to better match your brand by providing values to the OkHiTheme.Builder
You may turn off either of the OkHi address types. This is to allow your users to create either home or work addresses to better suit your use-case. By default, both address types are on.
You can specify a custom default icon and a custom default color by adding these lines inside the application tag to set the custom default icon and custom color. You'll need to have already created the icon resource in your Android application. Icon assets can be created by following these steps
<application> <meta-dataandroid:name="io.okhi.core.branch_id"android:value="<my_branch_id>" /> <meta-dataandroid:name="io.okhi.core.client_key"android:value="<my_client_key>" /> <meta-dataandroid:name="io.okhi.core.environment"android:value="prod" /> <meta-dataandroid:name="io.okhi.core.platform"android:value="android" /><!-- Set custom default icon for OkVerify's foreground service --> <meta-data android:name="io.okhi.android_background_geofencing.foreground_notification_icon" android:resource="@drawable/ic_person_pin" />
<!-- Set custom default icon color for OkVerify's foreground service --> <meta-data android:name="io.okhi.android_background_geofencing.foreground_notification_color" android:resource="@color/colorAccent" />
<activityandroid:name=".MainActivity"> <intent-filter> <actionandroid:name="android.intent.action.MAIN" /> <categoryandroid:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity></application>
Important: Prepare for submission to the Google Play store
Submitting an app to the Google Play store that has background location permissions has a few extra requirements. Follow these guide to know what to expect and how to handle the extra requirements: