I have an sdk that tells me to add the following to my manifest file...
However AddReceiverText() requires two parameters. I don't have the first module parameter.
Adding the above worked with AddManifestText() using the <receiver> tags. However I now have another AddReceiverText() command for the Appbilling library and I am not sure if both can exist together under two separate <receiver> tags.
B4X:
<receiver
android:exported="true"
android:name="com.sponsorpay.sdk.android.advertiser.InstallReferrerReceiver" >
<intent-filter >
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
However AddReceiverText() requires two parameters. I don't have the first module parameter.
Adding the above worked with AddManifestText() using the <receiver> tags. However I now have another AddReceiverText() command for the Appbilling library and I am not sure if both can exist together under two separate <receiver> tags.