我是Android应用程序跟踪的新手,我想创建一个页面,我可以看到谁从我的参考安装了应用程序
我将在我的android menifest中使用广播接收器
广播接收器
<receiver android:name="com.myeapptracker.Tracker" android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
我会像这样分享下载应用程序的链接 https://play.google.com/store/apps/details?id=com.hellochatty&referrer=tracking_id%3C123456
我只想知道应该编写哪些代码来接收来自android广播的详细信息。
我基本上是.NET&amp; PHP程序员,指导我应该使用什么语言或方法来接收来自Android广播的信息,如上所述。
我知道这个主题非常广泛,但我只是想要一些提示,比如使用什么和方法/语言。