A fully comprehensive SDK that gives you access to VoiceIt's API 3.0 featuring Voice + Face Verification and Identification right in your Android app.
The following show Voice Verification, Face Verification, and Video Verification.
Sign up at voiceit.io/pricing to get your API Key and Token, then log in to the Dashboard to manage your account.
The minimum Android SDK version (API level) should be set to 21 in your build.gradle file:
minSdkVersion: 21
Make sure you review your Voiceprint Phrases by navigating to Dashboard in order to know what to pass for voicePrintPhrase parameter.
Make sure your project has the useAndroidX and enableJetifier flags as true: Navigate to the gradle.properties of your project and add the following:
android.useAndroidX=true
android.enableJetifier=true
Add the GitHub Packages Maven repository to your project's settings.gradle:
dependencyResolutionManagement {
repositories {
maven {
url = uri("https://maven.pkg.github.com/voiceittech/voiceit3-androidsdk")
credentials {
username = System.getenv("GITHUB_ACTOR") ?: project.findProperty("gpr.user") ?: ""
password = System.getenv("GITHUB_TOKEN") ?: project.findProperty("gpr.key") ?: ""
}
}
}
}Then add the dependency to your app's build.gradle:
dependencies {
implementation 'com.voiceittech:voiceit3-androidsdk:3.0.0'
}- Clone the repo:
git clone https://github.com/voiceittech/voiceit3-androidsdk.git - In Android Studio, go to File > New > Import Module
- Select the cloned repo directory and include only the
voiceit3module
First import VoiceItAPI3 and then initialize a reference to the SDK inside an Activity, passing in your API Credentials or user token.
import com.loopj.android.http.JsonHttpResponseHandler;
import cz.msebera.android.httpclient.Header;
import org.json.JSONObject;
import com.voiceit.voiceit3.VoiceItAPI3;
public class MainActivity extends AppCompatActivity {
private VoiceItAPI3 myVoiceIt;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// If using user tokens, replace API_KEY below with the user token,
// and leave the second argument as an empty string
myVoiceIt = new VoiceItAPI3("API_KEY","API_TOK");
}
}For each API call, a JsonHttpResponseHandler is needed to receive the result of the call. You can override the response handlers like so, and abbreviated with ellipses below:
new JsonHttpResponseHandler() {
@Override
public void onSuccess(int statusCode, Header[] headers, JSONObject response) {
System.out.println("JSONResult : " + response.toString());
}
@Override
public void onFailure(int statusCode, Header[] headers, Throwable throwable, JSONObject errorResponse) {
if (errorResponse != null) {
System.out.println("JSONResult : " + errorResponse.toString());
}
}
});Encapsulated Methods take care of all the logic of enrollment/verification and the UI in new Android Activities. Immediately upon calling a method it displays a enrollment/verification view controller that enrolls/verifies the user and provides relevant callbacks for whether the API calls were successful or not with associated biometric confidence. Note: If less than the required enrollments exist for a user, enrollment methods delete them and re-enroll.
Create three voice enrollments user with given userId(begins with 'usr_'), contentLanguage('en-US','es-ES' etc.), and a given phrase such as "Never forget tomorrow is a new day".
myVoiceIt.encapsulatedVoiceEnrollment(Activity, "USER_ID_HERE", "CONTENT_LANGUAGE_HERE", "PHRASE_HERE", new JsonHttpResponseHandler() {...});Verify user with given userId(begins with 'usr_'), contentLanguage('en-US','es-ES' etc.), and a given phrase such as "Never forget tomorrow is a new day".
myVoiceIt.encapsulatedVoiceVerification(Activity, "USER_ID_HERE", "CONTENT_LANGUAGE_HERE", "PHRASE_HERE", new JsonHttpResponseHandler() {...});Identify user from given groupId(begins with 'grp_'), contentLanguage('en-US','es-ES' etc.), and a given phrase such as "Never forget tomorrow is a new day".
myVoiceIt.encapsulatedVoiceIdentification(Activity, "GROUP_ID_HERE", "CONTENT_LANGUAGE_HERE", "PHRASE_HERE", new JsonHttpResponseHandler() {...});Create face enrollments for user with given userId(begins with 'usr_') and contentLanguage('en-US','es-ES' etc.).
myVoiceIt.encapsulatedFaceEnrollment(Activity, "USER_ID_HERE", "CONTENT_LANGUAGE_HERE", new JsonHttpResponseHandler() {...});Verify user with given userId(begins with 'usr_') and contentLanguage('en-US','es-ES' etc.).
myVoiceIt.encapsulatedFaceVerification(Activity, "USER_ID_HERE", "CONTENT_LANGUAGE_HERE", new JsonHttpResponseHandler() {...});Create three video enrollments for user with given userId(begins with 'usr_') and contentLanguage('en-US','es-ES', etc.), and a given phrase such as "my face and voice identify me".
myVoiceIt.encapsulatedVideoEnrollment(Activity, "USER_ID_HERE", "CONTENT_LANGUAGE_HERE", "PHRASE_HERE", new JsonHttpResponseHandler() {...});Verify user with given userId(begins with 'usr_'), contentLanguage('en-US','es-ES' etc.), a given phrase such as "my face and voice identify me".
myVoiceIt.encapsulatedVideoVerification(Activity, "USER_ID_HERE", "CONTENT_LANGUAGE_HERE", "PHRASE_HERE", new JsonHttpResponseHandler() {...});To set the theme, please initialize the voiceit Module with the Color integer as the third argument:
myVoiceIt = new VoiceItAPI3("API_KEY","API_TOK", Color.parseColor("HEX_COLOR_VALUE_HERE"));Please make sure that the color is a valid Hex value. The parseColor method throws an IllegalArgumentException so it is recommended to wrap the initialize method in try-catch blocks
Please refer to https://voiceit.io/documentation for information about all API calls.
Remember to add "new JsonHttpResponseHandler() {...}" as the last argument
For example, you can check whether a user exists for the given userId(begins with 'usr_')
myVoiceIt.checkUserExists("USER_ID_HERE", new JsonHttpResponseHandler() {...});All strings and prompts utilized in the encapsulated views can be overwritten by adding strings with the same names as found in:
/voiceit3/src/main/res/values/strings.xml
to the strings.xml file in your app.
If you find this SDK useful, please consider giving it a star on GitHub — it helps others discover the project!
VoiceIt Technologies, support@voiceit.tech
VoiceItApi3AndroidSDK is available under the MIT license. See the LICENSE file for more info.




