Skip to main content
Filter by
Sorted by
Tagged with
4 votes
0 answers
102 views

I’m using Flutter and I want to know whether my app was installed via a Google Ads (UAC) / AdMob app install ad. For Facebook Ads and Unity Ads, I already detect installs successfully by checking ...
Snehil Tejani's user avatar
0 votes
0 answers
54 views

I'm implementing Huawei Install Referrer using the official SDK: com.huawei.hms:ads-installreferrer. However, when trying to retrieve referrer information, under the hood the method getChannelInfo() ...
1 vote
1 answer
99 views

Is there any strategy to get referrer parameter only one time? not everytime when launch app. Now, my app has referrer parameter data while app is installed. I can't find any strategy to solve this ...
강승구's user avatar
2 votes
0 answers
497 views

So, I'm getting some crashes in crashlytics regarding the Install Referral Lib. Crash Report main (native):tid=1 systid=21220 #00 pc 0x9ae70 libc.so (__ioctl + 8) #01 pc 0x69383 libc.so (ioctl + 26) #...
Sam's user avatar
  • 91
1 vote
0 answers
137 views

I need to get the app name that invoked my activity. For api<=32 I am able to get this using getReferrer() method in the OnCreate() of my activity. But this returns null in Api 33. Is there any ...
FurElise's user avatar
2 votes
1 answer
3k views

I want to have referral links to get the referral code with in the application (after installation) to provide credits based on the code for both Android and iOS. I was able to explore these options: ...
Housefly's user avatar
  • 4,431
4 votes
0 answers
681 views

Background I'm using Google Play Install Referrer Library in my native Android app to track some UTM parameters. To test my implementation, I use Google Play URL Builder to generate test URLs for my ...
Abdul Mateen's user avatar
  • 1,734
4 votes
1 answer
1k views

We have a Facebook Ad for installing a mobile application. The link on the ad points to following: https://play.google.com/store/apps/detailsid=com.app.example&fbclid=...
Neel Sharma's user avatar
4 votes
1 answer
571 views

This is the current implementation of AppDelegate import UIKit import Flutter import flutter_downloader import moengage_flutter import MoEngage import GoogleCast import UserNotifications @...
Mofidul Islam's user avatar
0 votes
0 answers
2k views

https://developers.facebook.com/docs/app-ads/install-referrer/ Facebook uses AES-GCM 256bit symmetric key using LibSodium to encrypt their referrer data. And i am trying to decrypt them on Android. ...
Joe Mobarak's user avatar
1 vote
1 answer
2k views

For our app I recently included the Play Install Referrer Library for getting the referrer link after an app install, following all steps exactly as laid out in this page by Google. We then store it ...
Jorn Rigter's user avatar
  • 1,315
3 votes
1 answer
2k views

I tried adding Installreferrer to my app after adding it to gradle, when rebuilding the app. I'm getting this error. Duplicate class com.google.android.a.a found in modules jetified-installreferrer-2....
Ganesh Shetty's user avatar
0 votes
1 answer
1k views

I want to use google analytics for Install referrer and traffic source attribution for Android App. I have linked my Firebase project with google analytics. I can see these projects while login in ...
Darshan Kapasi's user avatar
3 votes
1 answer
1k views

I'm using Google Play Install Referrer SDK to retrieve the referral content from Google Play. I'm experiencing an issue when the installation comes from an Ad placed in Google Play, in that case I'm ...
icastell's user avatar
  • 3,625
1 vote
1 answer
2k views

I am developing an app in android studio and tracking referrer using referral link but my app not working in live condition My app work fine when I send referrer using below command adb shell am ...
Hemant Prajapat's user avatar
3 votes
0 answers
252 views

I want to understand where my users came from (another app, website, paid advertisement, etc). Their journey would be something like: viewing a website X containing an ad Y to my app -> clicking ...
nurnachman's user avatar
  • 4,575
3 votes
1 answer
2k views

I'm using firebase dynamic link in my app. I've a two part quetsion. How to know in the app if its a fresh install done using Dynamic Link? Is there a way I can get these events in my app " ...
Khay's user avatar
  • 993
0 votes
1 answer
2k views

I have been struggling over the past week figuring out how to use Google Play Install Referrer API, in an Ionic app. I have tried using the following approaches: Approach 1: InstallBroadcast I ...
Craziest Hacker's user avatar
4 votes
1 answer
898 views

I want to test my own app before going live after integrating with Huawei install Referrer SDK. I followed all the steps found in codelabs and the documentations and when i install the apk on the ...
Yomna Gamal's user avatar
2 votes
0 answers
474 views

I'm developing an android application in Java where I need to pass the referer information to an URL. I'm getting the referrer information using Play Install Referrer Library. Here is my code: ...
Jay Patel's user avatar
  • 2,451
1 vote
0 answers
105 views

I am trying to retrieve referral content with the Play Install Referrer Library but it doesn't work when the play store is opened via the browser (the referrer is lost).
Nguyễn Trung Phong's user avatar
-1 votes
1 answer
216 views

I'm experiencing this issue when updating to the installreferrer library v2.0. LINK So when I call to the library's startConnection method it throws: Process: com.tomatedigital.lottogram, PID: 13424 ...
Addev's user avatar
  • 32.4k
9 votes
0 answers
787 views

I updated the implementation 'com.android.installreferrer:installreferrer:X' from 1.1.2 to 2.0 then started getting this error: Process: com.tomatedigital.lottogram, PID: 13424 java.lang....
Rafael Lima's user avatar
  • 3,585
3 votes
1 answer
1k views

Caused by java.lang.SecurityException Not allowed to bind to service Intent { act=com.google.android.finsky.BIND_GET_INSTALL_REFERRER_SERVICE cmp=com.android.vending/com.google.android.finsky....
emad pirayesh's user avatar
9 votes
1 answer
901 views

I have received email from google: We recently announced that we’ll be deprecating the install_referrer intent broadcast mechanism. Because one or more of your apps uses this intent to track ...
user avatar
0 votes
0 answers
43 views

I am referring to an other app, but that app doesn't receive my referrer url. It keeps showing the url that's shown after a normal installation from the PlayStore. I can find lots of explanations for ...
Heinzlmaen's user avatar
2 votes
2 answers
910 views

Google is deprecating intall_referrer intent soon. I found google analytic CampaignTrackingReceiver is using it in our project. Adding the code from manifest for reference: <receiver ...
Suneesh Ambatt's user avatar
3 votes
1 answer
4k views

I'm trying to figure out how to access referrer info provided by Google Play Store using the Play Install Referrer Library/API. Do I need to create a platform channel to the Android? And when should ...
Mayur Dhurpate's user avatar
0 votes
1 answer
141 views

I've received a mail from google regarding install_referrer We recently announced that we’ll be deprecating the install_referrer intent broadcast mechanism. Because one or more of your apps uses ...
Sarthak Solanki's user avatar
8 votes
2 answers
1k views

Updating the Install Referrer Library from v1.0 to v1.1 added the following permissions: WRITE_EXTERNAL_STORAGE READ_EXTERNAL_STORAGE READ_PHONE_STATE Those permissions are not present in the ...
sagis's user avatar
  • 2,552
1 vote
0 answers
181 views

1) I'm using Play Install Referrer Library to track install referrers from Google Play. 2) When I catch a Play referrer in my app, I send it on Firebase as action. 3) To debug this feature I've ...
Pavel Mokshanov's user avatar
7 votes
1 answer
1k views

Is there a way in Flutter to get the install referrer from google play? https://developer.android.com/google/play/installreferrer/library.html if possible both Android and iOS. My Goal is to ...
Eleojasmil J Milagrosa's user avatar
3 votes
1 answer
5k views

I am working on an install referral in which need to avoid crediting users for multiple app installs. Settings.Secure.ANDROID_ID looks to solve the issue. In the below URL it is mentioned not to use ...
OnDWay's user avatar
  • 139
0 votes
2 answers
3k views

Into my App, the user could share a fitness workout with his friends. So there are different use cases: The user's sharing with a friend on our App (this friend uses the App too). Just select his ...
anthony's user avatar
  • 7,743
0 votes
2 answers
2k views

Tell me how you can get install referrer in Unity3D. I made an android plugin in which I created a class inherited from the broadcastreceiver. And in the onreceive method, I send data, but the ...
Stelette's user avatar
12 votes
3 answers
7k views

There are lots of examples how to test "default" way of detecting install referrer, but there is not example how to test com.android.installreferrer:installreferrer library. Examples like adb ...
artem's user avatar
  • 16.8k
2 votes
2 answers
6k views

I want to implement Play Install Referrer API and I found document and I read that but I have have some confusion. First I have implemented all code provided by google. But I want to know which type ...
Mega Infomatix's user avatar
2 votes
0 answers
474 views

I have implemented install-referrer fetching with broadcast receiving with com.android.vending.INSTALL_REFERRER. And it's working great with google play directly, like https://play.google.com/store/...
D. Stevenson's user avatar
9 votes
2 answers
4k views

I am using my custom broadcast receiver as follows to track UTM parameters. <receiver android:name=".services.CustomInstallListener" android:exported="true"> <intent-filter> ...
saurabhlahoti's user avatar
0 votes
1 answer
1k views

We need to track install sources and total revenue per each install source, on iOS (we want to track effectivity of crosslinking and adware campaigns). I.e. users from "source1" make m installs and ...
Torello's user avatar
  • 1,044
0 votes
1 answer
342 views

We are generating branch links according to the described documentation, The links work awesome when clicked from other platfomr like whatsapp, sms, browser etc, but when we share the same link ...
Hari's user avatar
  • 442
8 votes
0 answers
1k views

I'm trying to use Google Play Install Referrer API to create a transparent way for the users to share my app and get benefits... but i'm having a nightmare trying to test this api My app has a button,...
Rafael Lima's user avatar
  • 3,585
15 votes
0 answers
1k views

We are using Google Play Install Referrer library for Install Attribution. The working referrer value we get from this is : network=g&campaignid=863200068&loc_physical_ms=9061947&...
binaryKarmic's user avatar
8 votes
2 answers
5k views

I have developed an application where user can refer other users and can earn incentives. I am getting the expected UTM_SOURCE and UTM_MEDIUM values in 85% of cases but in rest of the cases i am ...
Harry Sharma's user avatar
  • 2,200
9 votes
2 answers
5k views

I have a problem with INSTALL_REFERRER broadcast in my app. I'm trying to create some information about campaign etc, but on most devices my url "https://play.google.com/store/apps/details?id=com....
wojciech_maciejewski's user avatar
1 vote
3 answers
2k views

In what case does google return this format of utm_source=(not%20set)&utm_medium=(not%20set) . Please let me know if there is any documentation to check if the code is working fine?? using the ...
atish naik's user avatar
1 vote
1 answer
971 views

Recently Google released Google Play Install Referrer API (announcement). there are various duplicates to this question but no clarity regarding it. need a exact way of testing this code before ...
atish naik's user avatar
17 votes
3 answers
19k views

I am building eCommerce platform.This includes website,android app and iOS app. I already implemented for Android by using Google Play Install Referrer API.For Android,when users install from a ...
codewiz's user avatar
  • 531
2 votes
0 answers
336 views

I faced with problem. I have BroadcatReceiver which gets the utm_source from Google Play. Manifest: <receiver android:name=".utils.referring.InstallReferrerReceiver" android:exported="...
Kotlin dummy's user avatar
2 votes
0 answers
1k views

I currently have Sony Xperia E6833 device and I tried to test referral using this link: https://play.google.com/store/apps/details?id=com.onesolutions.refferaltester&referrer=123 However, it ...
Mysterious_android's user avatar