Forum Replies Created

  • Re: Reply To: Taplinx dependency on com.google.android.gms:play-services-analytics:10.0.0

    7. September 2018 at 16:39
    in reply to: Taplinx dependency on com.google.android.gms:play-services-analytics:10.0.0
    This problem occurs only if something else is using analytics(or something else) from google gms with newer version.

    These gradle lines from "build.gradle" (app module) solved that problem for me. i just excluded gms imports through taplinx and use implementation of newer version.
    and taplinx still works.
    hope it helps.




    .....
    implementation 'com.google.android.gms:play-services-analytics:16.0.3'


    implementation('taplinx-android:nxpnfcandroidlib:1.4@aar') {
    exclude group: "com.google.android.gms"
    transitive = true
    }

    ....
    + 0  |  - 0
Viewing 1 post (of 1 total)