Is it possible to use firebase messaging without analytics? App has been rejected by Apple. #4947
-
Hello, I've already removed AdSupport from pods. But app was rejected : I haven't found any ATT framework but I found that GoogleAppMeasurement.framework matches 'NSUserTrackingUsageDescription' which can be related to App Tracking Transparency. Is it possible to use only firebase-messaging without GoogleAppMeasurement, FirebaseAnalytics or any other code violating kids category guideline? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi there - without information on versions I can't say. I suspect you are using old versions somehow, as Have you searched issues for past information? Others have been in this area if I recall I have tested combinations of the react-native-firebase without IDFA in order to probe iOS builds and get a result that was okay for kids apps if I recally correctly, you can see the testing rig here and run it yourself to see how it builds / what it includes: At the time I got IDFA-free builds with everything but admob? https://github.com/mikehardy/rnfbdemo/blob/37b13cd0ea36a2db650c63d365d3bc11b7a084c7/make-demo.sh#L142-L144 In general since this is a very subtle area and has evolved quickly you should very carefully check the firebase-ios-sdk upstream docs as well: |
Beta Was this translation helpful? Give feedback.
Hi there - without information on versions I can't say. I suspect you are using old versions somehow, as
@react-native-firebase/app
only uses Firebase-CoreOnly which is supposed to have no IDFA-containing transitive dependenciesreact-native-firebase/packages/app/RNFBApp.podspec
Line 30 in e173954
Have you searched issues for past information? Others have been in this area if I recall
I have tested combinations of the react-native-firebase without IDFA in order to probe iOS builds and get a result that was okay for kids apps if I recally correctly, you can see the testing rig here and run it yourself to see how it bu…