27 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
219
views
AppsFlyer OneLink for iOS is referencing unwanted App Clip which can’t be removed
for our app we use AppsFlyers OneLink tool (e.g. for deeplinks). The hosted {our-branded-domain.tld}/.well-known/apple-app-site-association is referencing the expected applinks, but also an app clip ...
0
votes
0
answers
151
views
ITMS-90809: Deprecated API Usage with AppsFlyerFramework pod
I am making an update to a legacy iOS app but App Store Connect isn't accepting the our new build. I get the message:
ITMS-90809: Deprecated API Usage - New apps that use UIWebView are no longer ...
2
votes
2
answers
3k
views
Unable to record a non-organic install in AppsFlyer dashboard (iOS)
I have integrated AppsFlyer SDK in my iOS application and successfully added AppsFlyer event logging feature for several events. I am able to detect organic installs in my AppsFlyer dashboard and the ...
2
votes
0
answers
1k
views
AppsFlyer Deeplink not working in Swift iOS
I am using an appsflyer deeplink to open the app but it is redirecting to the appstore instead of taking to the app which is already installed.
Any response will be appreciated.
The link is already ...
1
vote
0
answers
724
views
Way to fetch all prices for all countries of all subscriptions from AppStore Connect
I need to track all purchase events in my iOS application.
The thing is that it uses a subscription model so the majority of events come from server-to-server notifications (sent by Apple, without the ...
0
votes
0
answers
643
views
Cannot launch app after installing AppsFlyerLib
I'm trying to integrate the AppsFlyer SDK into my SwiftUI iOS app. I've installed the framework via cocoapods.
But now when running the app (My Mac, Designed for iPhone), I get this error:
The ...
1
vote
0
answers
417
views
Swift Undefined OBJC Class symbol
I am trying to build and run my project on the simulator, but am getting this error from an AppsFlyer library:
Undefined symbol: _OBJC_CLASS_$_AppsFlyerLib
Building and running on a physical device ...
1
vote
1
answer
1k
views
AppsFlyer SDK iOS integration error Code=3840 "No value."
I've integrated the AppsFlyer SDK but continuously getting the following error:
It calls the following delegate func
-(void)onConversionDataFail:(NSError *) error {
NSLog(@"%@",error);
}
...
0
votes
0
answers
723
views
How to resolve .../AppDelegate.h:13:1: Duplicate interface definition for class 'AppDelegate' error
I am following these instructions to integrate Appslflyer into my React-Native app: https://support.appsflyer.com/hc/en-us/articles/360017822178#testing-ios-uninstalls
WHAT AM I TRYING TO ACHIEVE
I ...
2
votes
1
answer
2k
views
continueUserActivity not being called when Universal Link is launched, using AppsFlyer and React Native
I'm working on adding Universal/Deep Linking to a React Native app, and it's also using the AppsFlyer React Native plugin / iOS SDK (however I believe this is not the issue). Whenever I click a ...
1
vote
0
answers
889
views
Cannot See NonOrganic Installs in AppsFlyer Dashboard
I have installed iOS AppsFlyer SDK, and I am able to see organic installs but I am not able to see NonOrganic installs, when I tried their "Simulate non-organic install" test. I still got an ...
2
votes
0
answers
1k
views
Sending server-to-server events to AppsFlyer
I'm trying to sending server-to-server events to AppsFlyer for subscription notifications. For now I caught user subscription data from my API end point. According to below article I have to append '...
2
votes
0
answers
2k
views
iOS IDFA AppsFlyer - Events Won't Log
In an app I am working on we are using Appsflyer to track events in the app.
We are using Appsflyer for years now, but since March 2020 we stopped seeing events in the console.
In Android App ...
0
votes
0
answers
365
views
Check if user installed my app from Snapchat using AppsFlyer SDK
I'm using AppsFlyer and trying to set up ads in Snapchat. When users install the app from Snapchat I see a separate column of users in AppsFlyer for "media_source – snapchat_int".
I want to ...
1
vote
1
answer
844
views
Initializer for conditional binding must have Optional type, not '[AnyHashable : Any]'
when I type like this :
func onAppOpenAttribution(_ attributionData: [AnyHashable : Any]!) {
if let data = attributionData {
if let link = data["link"]{
print("link: \(link)")...