Violation of the Permissions policy - expo react native app removed from play consoleWhat is the difference between Expo and React Native?Error Running React Native App From Terminal (iOS)Network Response Time Out Error (create-react-native-app) (expo)watchPosition fails with react native expoRemove expo from react nativereact native transform - error couldn't find preset "babel-preset-react-native-stage-0Is my app or its dependencies violating the Android Advertising Id policy?Expo to react native initUnable to import Expo from 'expo'. in react nativeReact Native WebView onMessage IOS issue
What causes a fastener to lock?
What is the fundamental difference between catching whales and hunting other animals?
Should I increase my 401(k) contributions, or increase my mortgage payments
Does the Milky Way orbit around anything?
Question about targeting a Hexproof creature
Is it possible that Curiosity measured its own methane or failed doing the spectrometry?
In the Seventh Seal why does Death let the chess game happen?
The Purpose of "Natu"
Will Jimmy fall off his platform?
n-level Ouroboros Quine
Curve fitting when data has a sharp initial slope and then tapers off
How do I iterate equal values with the standard library?
Who is responsible for exterminating cockroaches in house - tenant or landlord?
Is there a standard definition of the "stall" phenomena?
Why weren't Gemini capsules given names?
How to deal with a Murder Hobo Paladin?
What is the maximum amount of diamond in one Minecraft game?
Boss furious on bad appraisal
LTSpice: how to setup sinusoidal or exponential voltage source?
What is this arch-and-tower near a road?
How can I effectively map a multi-level dungeon?
Simple Arithmetic Puzzle 8. Or is it?
Advice for making/keeping shredded chicken moist?
How to reclaim personal item I've lent to the office without burning bridges?
Violation of the Permissions policy - expo react native app removed from play console
What is the difference between Expo and React Native?Error Running React Native App From Terminal (iOS)Network Response Time Out Error (create-react-native-app) (expo)watchPosition fails with react native expoRemove expo from react nativereact native transform - error couldn't find preset "babel-preset-react-native-stage-0Is my app or its dependencies violating the Android Advertising Id policy?Expo to react native initUnable to import Expo from 'expo'. in react nativeReact Native WebView onMessage IOS issue
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
A change of policy has been made at google play console and I started getting these weird email notifying me that my app was removed -
"We only allow apps to access Call Log or SMS data for permitted uses
and only to enable the app’s core functionality."
Thing is that I have any of these permission requests neither in my app.json nor I have any library requesting such a thing (I pretty sure).
Under permission in my app.json I tried adding "ACCESS_COARSE_LOCATION" instead of leaving that empty, because I read somewhere that it prevents expo from requesting default (READ_SMS) permissions, but it didn't work.
Also, I didn't see anywhere where it says that the lib react-native-phone-call requests either of these above permissions.
my package.json:
"name": "empty-project-template",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts":
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject"
,
"dependencies":
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@expo/vector-icons": "^8.0.0",
"aws-amplify": "^1.1.21",
"aws-amplify-react-native": "^2.1.7",
"axios": "^0.18.0",
"expo": "^32.0.0",
"firebase": "^5.5.7",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"react": "16.5.0",
"react-moment": "^0.8.2",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"react-native-confirmation-code-input": "^1.0.4",
"react-native-elements": "^0.19.1",
"react-native-fast-image": "^5.1.0",
"react-native-fetch-blob": "^0.10.8",
"react-native-linear-gradient": "^2.4.2",
"react-native-modal": "^7.0.2",
"react-native-modal-dropdown": "^0.6.2",
"react-native-phone-call": "^1.0.9",
"react-native-timer-countdown": "^2.0.3",
"react-navigation": "^2.17.0",
"react-redux": "^5.0.7",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"typeface-raleway": "0.0.54"
,
"rnpm":
"assets": [
"./assets/fonts/"
]
my app.json
"expo":
"privacy": "public",
"sdkVersion": "32.0.0",
"platforms": ["ios", "android"],
"version": "1.1.0",
"orientation": "portrait",
"icon": "./....png",
"splash":
"image": "./assets/SplashScreen.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
,
"facebookAppId": ".....",
"facebookDisplayName": "....",
"facebookScheme": "...",
"updates":
"fallbackToCacheTimeout": 0
,
"assetBundlePatterns": [
"**/*"
],
"ios":
"buildNumber": "15",
"supportsTablet": true,
"bundleIdentifier": ".......",
"infoPlist":
"LSApplicationQueriesSchemes": ["fbapi", "fb-messenger-share-api", "fbauth2", "fbshareextension"]
,
"android":
"versionCode": 15,
"package": "....",
"permissions":[]
react-native react-native-android expo
add a comment |
A change of policy has been made at google play console and I started getting these weird email notifying me that my app was removed -
"We only allow apps to access Call Log or SMS data for permitted uses
and only to enable the app’s core functionality."
Thing is that I have any of these permission requests neither in my app.json nor I have any library requesting such a thing (I pretty sure).
Under permission in my app.json I tried adding "ACCESS_COARSE_LOCATION" instead of leaving that empty, because I read somewhere that it prevents expo from requesting default (READ_SMS) permissions, but it didn't work.
Also, I didn't see anywhere where it says that the lib react-native-phone-call requests either of these above permissions.
my package.json:
"name": "empty-project-template",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts":
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject"
,
"dependencies":
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@expo/vector-icons": "^8.0.0",
"aws-amplify": "^1.1.21",
"aws-amplify-react-native": "^2.1.7",
"axios": "^0.18.0",
"expo": "^32.0.0",
"firebase": "^5.5.7",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"react": "16.5.0",
"react-moment": "^0.8.2",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"react-native-confirmation-code-input": "^1.0.4",
"react-native-elements": "^0.19.1",
"react-native-fast-image": "^5.1.0",
"react-native-fetch-blob": "^0.10.8",
"react-native-linear-gradient": "^2.4.2",
"react-native-modal": "^7.0.2",
"react-native-modal-dropdown": "^0.6.2",
"react-native-phone-call": "^1.0.9",
"react-native-timer-countdown": "^2.0.3",
"react-navigation": "^2.17.0",
"react-redux": "^5.0.7",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"typeface-raleway": "0.0.54"
,
"rnpm":
"assets": [
"./assets/fonts/"
]
my app.json
"expo":
"privacy": "public",
"sdkVersion": "32.0.0",
"platforms": ["ios", "android"],
"version": "1.1.0",
"orientation": "portrait",
"icon": "./....png",
"splash":
"image": "./assets/SplashScreen.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
,
"facebookAppId": ".....",
"facebookDisplayName": "....",
"facebookScheme": "...",
"updates":
"fallbackToCacheTimeout": 0
,
"assetBundlePatterns": [
"**/*"
],
"ios":
"buildNumber": "15",
"supportsTablet": true,
"bundleIdentifier": ".......",
"infoPlist":
"LSApplicationQueriesSchemes": ["fbapi", "fb-messenger-share-api", "fbauth2", "fbshareextension"]
,
"android":
"versionCode": 15,
"package": "....",
"permissions":[]
react-native react-native-android expo
add a comment |
A change of policy has been made at google play console and I started getting these weird email notifying me that my app was removed -
"We only allow apps to access Call Log or SMS data for permitted uses
and only to enable the app’s core functionality."
Thing is that I have any of these permission requests neither in my app.json nor I have any library requesting such a thing (I pretty sure).
Under permission in my app.json I tried adding "ACCESS_COARSE_LOCATION" instead of leaving that empty, because I read somewhere that it prevents expo from requesting default (READ_SMS) permissions, but it didn't work.
Also, I didn't see anywhere where it says that the lib react-native-phone-call requests either of these above permissions.
my package.json:
"name": "empty-project-template",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts":
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject"
,
"dependencies":
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@expo/vector-icons": "^8.0.0",
"aws-amplify": "^1.1.21",
"aws-amplify-react-native": "^2.1.7",
"axios": "^0.18.0",
"expo": "^32.0.0",
"firebase": "^5.5.7",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"react": "16.5.0",
"react-moment": "^0.8.2",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"react-native-confirmation-code-input": "^1.0.4",
"react-native-elements": "^0.19.1",
"react-native-fast-image": "^5.1.0",
"react-native-fetch-blob": "^0.10.8",
"react-native-linear-gradient": "^2.4.2",
"react-native-modal": "^7.0.2",
"react-native-modal-dropdown": "^0.6.2",
"react-native-phone-call": "^1.0.9",
"react-native-timer-countdown": "^2.0.3",
"react-navigation": "^2.17.0",
"react-redux": "^5.0.7",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"typeface-raleway": "0.0.54"
,
"rnpm":
"assets": [
"./assets/fonts/"
]
my app.json
"expo":
"privacy": "public",
"sdkVersion": "32.0.0",
"platforms": ["ios", "android"],
"version": "1.1.0",
"orientation": "portrait",
"icon": "./....png",
"splash":
"image": "./assets/SplashScreen.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
,
"facebookAppId": ".....",
"facebookDisplayName": "....",
"facebookScheme": "...",
"updates":
"fallbackToCacheTimeout": 0
,
"assetBundlePatterns": [
"**/*"
],
"ios":
"buildNumber": "15",
"supportsTablet": true,
"bundleIdentifier": ".......",
"infoPlist":
"LSApplicationQueriesSchemes": ["fbapi", "fb-messenger-share-api", "fbauth2", "fbshareextension"]
,
"android":
"versionCode": 15,
"package": "....",
"permissions":[]
react-native react-native-android expo
A change of policy has been made at google play console and I started getting these weird email notifying me that my app was removed -
"We only allow apps to access Call Log or SMS data for permitted uses
and only to enable the app’s core functionality."
Thing is that I have any of these permission requests neither in my app.json nor I have any library requesting such a thing (I pretty sure).
Under permission in my app.json I tried adding "ACCESS_COARSE_LOCATION" instead of leaving that empty, because I read somewhere that it prevents expo from requesting default (READ_SMS) permissions, but it didn't work.
Also, I didn't see anywhere where it says that the lib react-native-phone-call requests either of these above permissions.
my package.json:
"name": "empty-project-template",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts":
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject"
,
"dependencies":
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@expo/vector-icons": "^8.0.0",
"aws-amplify": "^1.1.21",
"aws-amplify-react-native": "^2.1.7",
"axios": "^0.18.0",
"expo": "^32.0.0",
"firebase": "^5.5.7",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"react": "16.5.0",
"react-moment": "^0.8.2",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"react-native-confirmation-code-input": "^1.0.4",
"react-native-elements": "^0.19.1",
"react-native-fast-image": "^5.1.0",
"react-native-fetch-blob": "^0.10.8",
"react-native-linear-gradient": "^2.4.2",
"react-native-modal": "^7.0.2",
"react-native-modal-dropdown": "^0.6.2",
"react-native-phone-call": "^1.0.9",
"react-native-timer-countdown": "^2.0.3",
"react-navigation": "^2.17.0",
"react-redux": "^5.0.7",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"typeface-raleway": "0.0.54"
,
"rnpm":
"assets": [
"./assets/fonts/"
]
my app.json
"expo":
"privacy": "public",
"sdkVersion": "32.0.0",
"platforms": ["ios", "android"],
"version": "1.1.0",
"orientation": "portrait",
"icon": "./....png",
"splash":
"image": "./assets/SplashScreen.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
,
"facebookAppId": ".....",
"facebookDisplayName": "....",
"facebookScheme": "...",
"updates":
"fallbackToCacheTimeout": 0
,
"assetBundlePatterns": [
"**/*"
],
"ios":
"buildNumber": "15",
"supportsTablet": true,
"bundleIdentifier": ".......",
"infoPlist":
"LSApplicationQueriesSchemes": ["fbapi", "fb-messenger-share-api", "fbauth2", "fbshareextension"]
,
"android":
"versionCode": 15,
"package": "....",
"permissions":[]
react-native react-native-android expo
react-native react-native-android expo
edited Mar 25 at 20:07
Tomka Koliada
1,2702 gold badges8 silver badges28 bronze badges
1,2702 gold badges8 silver badges28 bronze badges
asked Mar 25 at 19:34
SoragimSoragim
6010 bronze badges
6010 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
its a new policy buy google they won't allow you to do in app phone calls and texting without very specific permissions, basically you have to be a messing app to get approved, they are retroactivly removing any app from the store that has the permission in their xml but that does not comply with the new rules
But they don't mention making phone calls as part of the permission list. I didn't request access to call logs nor to reading sms. I don't understand where does it state in my app that I request that.
– Soragim
Mar 25 at 21:40
its heard to teak without seeing your manifest,xml
– Walter Shub
Mar 25 at 21:48
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55345207%2fviolation-of-the-permissions-policy-expo-react-native-app-removed-from-play-co%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
its a new policy buy google they won't allow you to do in app phone calls and texting without very specific permissions, basically you have to be a messing app to get approved, they are retroactivly removing any app from the store that has the permission in their xml but that does not comply with the new rules
But they don't mention making phone calls as part of the permission list. I didn't request access to call logs nor to reading sms. I don't understand where does it state in my app that I request that.
– Soragim
Mar 25 at 21:40
its heard to teak without seeing your manifest,xml
– Walter Shub
Mar 25 at 21:48
add a comment |
its a new policy buy google they won't allow you to do in app phone calls and texting without very specific permissions, basically you have to be a messing app to get approved, they are retroactivly removing any app from the store that has the permission in their xml but that does not comply with the new rules
But they don't mention making phone calls as part of the permission list. I didn't request access to call logs nor to reading sms. I don't understand where does it state in my app that I request that.
– Soragim
Mar 25 at 21:40
its heard to teak without seeing your manifest,xml
– Walter Shub
Mar 25 at 21:48
add a comment |
its a new policy buy google they won't allow you to do in app phone calls and texting without very specific permissions, basically you have to be a messing app to get approved, they are retroactivly removing any app from the store that has the permission in their xml but that does not comply with the new rules
its a new policy buy google they won't allow you to do in app phone calls and texting without very specific permissions, basically you have to be a messing app to get approved, they are retroactivly removing any app from the store that has the permission in their xml but that does not comply with the new rules
answered Mar 25 at 20:38
Walter ShubWalter Shub
2732 silver badges12 bronze badges
2732 silver badges12 bronze badges
But they don't mention making phone calls as part of the permission list. I didn't request access to call logs nor to reading sms. I don't understand where does it state in my app that I request that.
– Soragim
Mar 25 at 21:40
its heard to teak without seeing your manifest,xml
– Walter Shub
Mar 25 at 21:48
add a comment |
But they don't mention making phone calls as part of the permission list. I didn't request access to call logs nor to reading sms. I don't understand where does it state in my app that I request that.
– Soragim
Mar 25 at 21:40
its heard to teak without seeing your manifest,xml
– Walter Shub
Mar 25 at 21:48
But they don't mention making phone calls as part of the permission list. I didn't request access to call logs nor to reading sms. I don't understand where does it state in my app that I request that.
– Soragim
Mar 25 at 21:40
But they don't mention making phone calls as part of the permission list. I didn't request access to call logs nor to reading sms. I don't understand where does it state in my app that I request that.
– Soragim
Mar 25 at 21:40
its heard to teak without seeing your manifest,xml
– Walter Shub
Mar 25 at 21:48
its heard to teak without seeing your manifest,xml
– Walter Shub
Mar 25 at 21:48
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55345207%2fviolation-of-the-permissions-policy-expo-react-native-app-removed-from-play-co%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown