Skip to content
Open
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: 0 additions & 11 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,6 @@ allprojects {
google()
jcenter()
maven { url 'https://jitpack.io' }
maven {
url = uri("https://repo.authada.de/public/")
authentication {
basic(BasicAuthentication)
}
credentials {
username ""
password ""
}
}
maven {
url "https://raw.githubusercontent.com/idnow/de.idnow.android/master"
}
Expand All @@ -99,7 +89,6 @@ allprojects {

dependencies {
implementation 'de.idnow.sdk:idnow-android-sdk:8.4.0'
implementation 'de.idnow.android.eid:idnow-android-eid-sdk:2.11.0'
implementation "androidx.multidex:multidex:2.0.1"
implementation files ('libs/bcprov-jdk15to18-164.jar')
implementation files ('libs/bctls-jdk15to18-164.jar')
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/de/idnow/sampleproject/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void onClick(View v) {
IDnowSDK.setShowErrorSuccessScreen(true, context);

// need to be changed to your own token as described in API documentation, see https://www.idnow.eu/development/api-documentation/
IDnowSDK.setTransactionToken("TST-JBGXB");
IDnowSDK.setTransactionToken("");

IDnowSDK.getInstance().start(IDnowSDK.getTransactionToken());
} catch (Exception e) {
Expand Down