0

For the Android platform, the official guide doesn't mention a maven or gradle respository, but since it could be that it is just not documented I decided to search for it. I found four repos for the query string "localytics" but can't tell for sure if they're official:

enter image description here

Is any of those the official repo? does it even have one? (I'm avoiding including the *.jar directly)

Christopher Francisco
  • 15,672
  • 28
  • 94
  • 206

2 Answers2

2
apply plugin: 'com.android.application'

repositories {
    jcenter()
    maven { url 'http://maven.localytics.com/public' }
}

dependencies {
    compile 'com.android.support:support-v4:23.1.0'
    compile 'com.google.android.gms:play-services-gcm:8.1.0'
    compile 'com.google.android.gms:play-services-ads:8.1.0'
    compile 'com.localytics.android:library:3.5+'
}
sirFunkenstine
  • 8,135
  • 6
  • 40
  • 57
0

Localytics have package name com.localytics.android and all suggestions from search does not have any similar package. So, Localytics does not have any maven/gradle repository.

My point of view: These are not official Localytics libraries. They are missing few classes. The library I am using, has size of ~300kb.

Krrishnaaaa
  • 689
  • 11
  • 23