I am trying to upgrade flurry analytics(10.0.1)
library into our project. But gradle sync
fails with the below error.
Failed to resolve: com.flurry.android:analytics:10.0.1
How can I resolve this sync error??
Thanks.
The Flurry SDK is available via jcenter. You can add it to your application by including the following in your build.gradle file:
Open your project/build.gradle file then add the
jcenter()
in your repository
repositories {
jcenter()
}
Once that is done add the dependency in your App/build.gradle file
dependencies {
....
implementation 'com.flurry.android:analytics:10.0.1@aar'
}