Localytics is a marketing and analytics platform for mobile and web apps
Questions tagged [localytics]
54 questions
2
votes
1 answer
Unit test Swift with third party library
I am using Localytics in my app which is basically just an API that can be used to send analytics data to the server.
https://docs.localytics.com/dev/ios.html#install-sdk-ios
I work in a project where we have to unit test every single file to make…

golldy
- 1,279
- 1
- 15
- 31
2
votes
1 answer
Why does Localytics require google-play-services:ads?
I was running into problems with how many methods I have in my project, and have finally fixed it.
However, I noticed that the Localytics documentation says to include the dependency com.google.android.gms:play-services-ads. It is never used…

JuiCe
- 4,132
- 16
- 68
- 119
2
votes
2 answers
Implementing deep linking in Localytics Push Notification
I am trying to implement Deep linking through Localytics Push notification in Android.In the below code I am able to receive the key value pair which I send through Localytics dashboard while creating the Push notification.
However, my requirement…

Veena
- 113
- 1
- 1
- 7
2
votes
0 answers
Localytics Flow is not being logged properly on the server in my Android app
I am working on an android app where I am supposed to log the flow in the Localytics(same like google analytics); that means how a user is walking through in my app. But flow in my app seems to be behaving weird because there are few Activities…

Kshitij
- 21
- 3
2
votes
2 answers
Integrating Localytics - Project Number
I'm currently trying to integrate Localytics into my Android app. In step 5, they need a project number. How do I find this?
If you are using Localytics Push Messaging, register for push notifications in onCreate().
public void onCreate(Bundle…

dl1
- 25
- 6
2
votes
0 answers
Undefined Symbols error when integrating Localytics iOS SDK via Cocoapods
When integrating the Localytics iOS SDK via Cocoapods, I get the following errors:
Undefined symbols for architecture arm64:
"_OBJC_CLASS_$_Localytics", referenced from:
objc-class-ref in AppDelegate.o
objc-class-ref in…

Sinu Varghese
- 800
- 1
- 14
- 39
2
votes
1 answer
How do I extract data using data from Localytics using the httr package in R?
I am trying to extract data from Localytics using R. Here is the snippet of code I'm using:
library(httr)
localytics_url = 'https://api.localytics.com/v1/query'
r <- POST(url = localytics_url,
body=list(
app_id=app_id,
…

Brad Davis
- 1,063
- 3
- 18
- 38
2
votes
2 answers
android studio jar file is red?
I'm curious what's causing this? I'm picking up on someone's code and using a 3rd party analytics software called localytics. I'm trying to import their .jar file and had success when I created a dummy app with it. The problem is trying to integrate…

cj1098
- 1,560
- 6
- 32
- 60
2
votes
1 answer
Using Localytics on multiple platforms - separate app key?
I'm intending using Localytics (http://www.localytics.com) for an app which will be released on both iPhone and Android. My question is: Should I aim to use a separate app ID for the two platforms? I'd really like to just use one (so that all my…

Chris Rae
- 5,627
- 2
- 36
- 51
1
vote
0 answers
Localytics Causing Crash in SwiftUI - Could not cast value of type 'LLAppDelegateProxy' to 'SwiftUI.AppDelegate'
I have a SwiftUI app and it uses Localytics for push notification. Recently in a view I added .focused(), and when entering this view, the app crashed with error "Could not cast value of type 'LLAppDelegateProxy' to 'SwiftUI.AppDelegate'".
It's not…

Leo Yang
- 113
- 1
- 5
1
vote
1 answer
Cannot open session in Localytics
In my app I track some events with Localytics. The events were tracked properly, but not all events are tracked anymore the last couple of days. I set the IS_LOGGABLE to true, so I see some messages in LogCat. When I call localyticsSession.open() I…

Dante
- 1,104
- 1
- 10
- 15
1
vote
3 answers
Migrate to AndroidX
I'm trying to migrate to AndroidX and we use this library in our project. However, this is currently causing an issue in our project:
Unable to resolve dependency for ':module@buildType/compileClasspath':
Failed to transform file…

portfoliobuilder
- 7,556
- 14
- 76
- 136
1
vote
1 answer
Can't integrate localytics-react-native on iOS
I'm trying to integrate the localytics-react-native package to my already existing app and successfully integrated it on android but I can't pass the build phase on iOS.
I followed this documentation to do so.
After linking it manually, I followed…

Nathan Rompteaux
- 71
- 6
1
vote
0 answers
Localytics Android: Putting app in background causes BackgroundService to crash
Fatal Exception: com.localytics.android.LocalyticsManager$LocalyticsNotInitializedException: You must first initialize Localytics
at com.localytics.android.LocalyticsManager.getLocationHandler(LocalyticsManager.java:1211)
at…

tom.raic
- 86
- 1
- 4
1
vote
2 answers
Firebase Dynamic Link can't find continueUserActivity when Localytics implemented
While implementing Firebase Dynamic link on iOS, there is an error message in the debugging console when you click open dynamic link:
FIRAnalytics/WARNING Implementation of application:continueUserActivity:restorationHandler: not found. Please add…

Breek
- 1,431
- 13
- 24