Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ dependencies {
implementation 'androidx.fragment:fragment-ktx:1.5.7'

implementation 'com.google.android.material:material:1.9.0'
implementation 'com.google.protobuf:protobuf-javalite:3.20.1'
implementation 'com.google.protobuf:protobuf-kotlin-lite:3.20.1'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'com.googlecode.libphonenumber:libphonenumber:8.13.7'

Expand All @@ -83,10 +81,15 @@ dependencies {
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.github.bumptech.glide:glide:4.16.0'
kapt 'com.github.bumptech.glide:compiler:4.16.0'
implementation 'org.bitbucket.b_c:jose4j:0.9.5'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.10'

[//]: <> (IMPORTANT: Below dependencies must be defined for Selfie/Government ID document upload on S3)
implementation 'org.bitbucket.b_c:jose4j:0.9.5'
[//]: <> (IMPORTANT: Below dependencies should be defined for Selfie Liveness feature)
implementation 'com.google.protobuf:protobuf-javalite:3.20.1'
implementation 'com.google.protobuf:protobuf-kotlin-lite:3.20.1'

}
```

Expand Down Expand Up @@ -167,7 +170,7 @@ public void onDocumentSubmitted(DocumentSubmissionResponse response) {
public void onSubmissionComplete(DocumentSubmissionStatus status) {
// present a basic alert to indicate completion
new AlertDialog.Builder(getActivity())
.setTitle("Document SubmissionCOMPLETE")
.setTitle("Document Submission Complete")
.setMessage("All documents have been successfully submitted")
.create()
.show();
Expand Down
Binary file modified SDK/PingOneVerify-2.3.0.aar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<string name="idv_documentCapture_header_governmentId">Scan your ID</string>
<string name="idv_documentCapture_description_governmentId">Scan your government-issued ID. Make sure your camera is clean and the ID is clearly visible.</string>

// Voice
//Voice
<string name="idv_documentCapture_header_voice">Verify By Voice</string>
<string name="idv_documentCapture_description_voice">Use your voice to verify your identity.</string>
<string name="idv_voiceCapture_instruction">Tap record and say the following text:</string>
Expand All @@ -26,18 +26,18 @@
<string name="idv_voice_speech_reverberation_error">Recording Unclear</string>
<string name="idv_voice_speech_unknown_error">Undetermined Error.\nPlease try again</string>

// Selfie
//Selfie
<string name="idv_documentCapture_header_selfie">Take a Selfie</string>
<string name="idv_documentCapture_description_selfie">Make sure you can see your face in the oval.</string>

// Email
//Email
<string name="idv_emailCapture_title">Verify Your Email</string>
<string name="idv_emailCapture_description">Enter your email address.</string>
<string name="idv_emailCapture_description_option">Please choose your email address</string>
<string name="idv_emailCapture_description_value">Email to be verified</string>
<string name="idv_emailCapture_placeholder">Email Address</string>

// Phone
//Phone
<string name="idv_phoneCapture_title">Verify Your Phone</string>
<string name="idv_phoneCapture_description">Enter your phone number.</string>
<string name="idv_phoneCapture_description_option">Please choose your phone number</string>
Expand Down Expand Up @@ -134,4 +134,19 @@
<string name="mb_face_too_small">Move the camera closer to your face and try again.</string>
<string name="mb_face_angle_too_large">Position the camera directly in front of your face and try again.</string>
<string name="mb_eyes_closed">Make sure your eyes are not closed and try again.</string>

//Indian Aadhaar
<string name="idv_documentCapture_header_aadhaar">Verify Aadhaar ID</string>
<string name="idv_documentCapture_description_aadhaar">Confirm or edit your Aadhaar ID.</string>
<string name="idv_documentCapture_hint_aadhaarId">Aadhaar ID.</string>
<string name="idv_documentCapture_header_aadhaarOtp">Enter OTP</string>
<string name="idv_documentCapture_description_aadhaarOtp">Enter the one-time password that was sent to the phone number associated with the Aadhaar ID.</string>
<string name="idv_documentCapture_header_type">Confirm ID Type</string>
<string name="idv_documentCapture_description_type">We couldn\'t identify your ID.\nSelect the ID type to continue.</string>
<string name="idv_documentCapture_option_aadhaar">Indian Aadhaar Card</string>
<string name="idv_documentCapture_option_license">Driver\'s License</string>
<string name="idv_documentCapture_option_passport">Passport</string>
<string name="idv_documentCapture_option_card">Passport Card</string>
<string name="idv_documentCapture_option_other">Other</string>
<string name="idv_documentCapture_aadhaar_retry">Incorrect password. Try again.</string>
</resources>
7 changes: 7 additions & 0 deletions SampleCode/PingOneVerify/app/src/main/res/values/plurals.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<plurals name="idv_voice_recording_text">
<item quantity="one">You will record %1$s time.</item>
<item quantity="other">You will record %1$s times.</item>
</plurals>
</resources>