You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My React Native 0.70 app uses react-native-code-push 7.1.0. And the way it was integrated into the React Native app happens at the index.js:
/**
* @format
*/
import 'react-native-gesture-handler';
import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';
import codePush from "react-native-code-push"; //code push
AppRegistry.registerComponent(appName, () => codePush(App));
I was told by app reviewer that codePush is retrieving user's ANDROIDID (red flag) before his/her consent (as index.js is the first module loaded when app is launched). I was told that a popup window asking for users' consent before the code push is needed. There are 2 questions. 1. Does code push depends on user's ANDROIDID to work. 2. If it does, how to load the code push module later on after users' consent (After the app has checked if there is users' consent and will be a few components after index.js).
Here is the app call stack provided by the reviewer:
emclab
changed the title
Does react-native-code-push retrieve user's ANDROIDID?
How to load react-native-code-push after root node & app launch?
Jul 28, 2023
Hello @emclab and thanks for reaching out to us, the fact is that a fix for this problem has already been implemented, and it was released along with the 8.1.1 version of react-native-code-push, so I am closing this issue, but if you have any other questions feel free to reopen it.
My React Native 0.70 app uses react-native-code-push 7.1.0. And the way it was integrated into the React Native app happens at the index.js:
I was told by app reviewer that codePush is retrieving user's ANDROIDID (red flag) before his/her consent (as index.js is the first module loaded when app is launched). I was told that a popup window asking for users' consent before the code push is needed. There are 2 questions. 1. Does code push depends on user's ANDROIDID to work. 2. If it does, how to load the code push module later on after users' consent (After the app has checked if there is users' consent and will be a few components after index.js).
Here is the app call stack provided by the reviewer:
Environment
(The more info the faster we will be able to address it!)
The text was updated successfully, but these errors were encountered: