Reputation: 37
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.
Upvotes: 0
Views: 513
Reputation: 581
10.0.1 is not one of the available version numbers. The most recent Android version is 11.0.0, but 10.1.0 and 10.0.0 are also available. Update your implementation to one of those three version numbers, and it should work.
Upvotes: 0
Reputation: 1894
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'
}
Upvotes: 1