1.15.5.0 and Later¶
Removed sub modules¶
The Tapkey Mobile SDK does not contain the libraries Tapkey.GoogleAnalytics
, Tapkey.GoogleSignIn
, Tapkey.Gcm
and Tapkey.Auth0Authentication
anymore.
These libraries are not relevant for third party apps so we don't distribute them anymore. These libraries shouldn't be used anyway, removing them from build.gradle
should be safe.
If it causes some compiler issues, then there is something wrong. Please contact us in such a situation.
...
dependencies {
...
implementation 'net.tpky:Tapkey.MobileLib:xx.xx.xx.xxx'
// Remove followin dependencies when they are existing
// implementation 'net.tpky:Tapkey.Gcm:xx.xx.xx.xxx'
// implementation 'net.tpky:Tapkey.GoogleAnalytics:xx.xx.xx.xxx'
// implementation 'net.tpky:Tapkey.GoogleSignIn:xx.xx.xx.xxx'
// implementation 'net.tpky:Tapkey.Auth0Authentication:xx.xx.xx.xxx'
}
Public maven repository¶
The Android Mobile SDK is delivered by the public maven repository https://maven.tapkey.com
.
repositories {
// Replace the local path with https://maven.tapkey.com
// maven { url "[YOUR_APP_SDK_PATH]/Android/Libs" }
maven { url "https://maven.tapkey.com" }
}
...
Artifact group id changed¶
The artifact group id was changed from net.tpky
to com.tapkey.android
. Change your gradle dependency to the new group id.
...
dependencies {
...
// Change from
//implementation 'net.tpky:Tapkey.MobileLib:xx.xx.xx.xxx'
// to
implementation 'com.tapkey.android:Tapkey.MobileLib:xx.xx.xx.xxx'
}