Registering iap purchase analytics event in Flutter using Flurry analytics - flutter

I am new to Flurry analytics, and from the looks of the docs they have for both iOS and Android, there is a support for registering purchase events with a dedicated method on each platform separately. But with flutter plugin they have, this option is not supported, and therefore I am not able to register purchases at all on their dashboard. Is there a way of "manually" sending this iap event, so the dashboard can still consume it?

I think you are asking if this data can be sent directly to the Flurry servers, without being sent from the SDK. If so, this is unfortunately not possible.

Related

Set Offer Token using Flutter in app purchase package for Google Play Store

I am trying to offer a subscription with a specified offer for specific users using Flutter in app purchases in the Google Play console.
I created an offer in Google Play Store with the "Eligibility Criteria" set to "Developer Determined", but I cannot figure out how to specify this offer in an in app purchase.
I am looking for something similar to the setOfferToken method provided by the Google Play Billing Library.
I thought that I could use the offer ID as a product ID from the Google developer API docs, but I had misunderstood the documentation.
I have looked through the Flutter in app purchase package and the Google Play Billing Library, but could not find documentation related to my use case.
Is there any documentation specific to Flutter for assigning offer IDs to in app subscription purchases?
Thanks!

Asking AppTrackingTransparency permission for using google analytics , is mandatory?

I am using Google Analytics SDK in my application.
It uses the demographic area, age and other user informations.
So, Am I need to ask permission for AppTracking manually or it was handled in google analytics SDK?
Without AppTracking Permission,Will my future updates get approved by iTunes connect?
YES, I need to ask permission for App Tracking Transparency manually. It will not handled by Google Analytics SDK.
Since I am using Google Analytics for campaning tracking, GASDK gets the device IDFA, So the app must need Tracking Permission.
Note: If you or your third party framework uses IDFA, It is mandatory to implement app tracking transparency framework. Otherwise Apple will simply reject us.!

How can I use Firebase/Google Analytics for analyzing user behaviors and logging specific events from huawei mobiles?

We are replacing firebase kits with HMS kits for HMS based mobiles (noGMS) for our app.
However, we still would like to stick and use Firebase/Google Analytics for analyzing user behaviors and logging specific events from huawei mobiles?
How it could be achieved? is there any workaround to do that?
You can refer to the official https://firebase.google.com/docs/android/android-play-services. According to that page:
The Firebase SDK for Google Analytics can send events on any device, but some automatic insights such as demographics are only available on devices with Google Play services.
Base on your needs, you can decide if you want to keep using GA with limited functionalities, or to forward analytics data from Huawei Analytics -> Firebase/Google Analytics as sAm suggested
Yes its possible to forward analytics data straight to Firebase using Huawei Analytics and DTM Kits. Not only that you can also forward analytics data to third party tool as well. As shown in this table:
For more details please visit this link

List all the in-app products for an Apple Store app

Developing subscriptions back-end service for App-Store app, there is a requirement to fetch all available in-app products and subscription for specific App-Store App. The best way is using the rest API call.
I wondering if the App-Store exposes such API. What I expect to have is something similar to what Android provides.
https://developers.google.com/android-publisher/api-ref/inappproducts/list
The Rest API.
GET https://www.googleapis.com/androidpublisher/v3/applications/packageName/inappproducts
Googling it, didn't bring anything close to what Android has.
Any helpful ideas or develop stuff will be appreciated.
I believe you are looking for :
GET https://api.appstoreconnect.apple.com/v1/apps/{id}/inAppPurchasesV2
From documentation: https://developer.apple.com/documentation/appstoreconnectapi

register device token manually with Firebase Notifications

I would like to integrate my existing ionic ios app with the new firebase notification service. But i could not find any documentation about registering a device token manually with the rest api or web api.
Am i missing any new feature? Or is this not possible with the current libraries?
Firebase Notifications at launch just supports Android and iOS.
For now, you can implement FCM directly for the web, see the documentation for FCM, which will allow pushing messages via the API.