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;








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":[]













share|improve this question






























    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":[]













    share|improve this question


























      0












      0








      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":[]













      share|improve this question
















      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 google-play-console






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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






















          1 Answer
          1






          active

          oldest

          votes


















          0














          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






          share|improve this answer























          • 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










          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
          );



          );













          draft saved

          draft discarded


















          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









          0














          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






          share|improve this answer























          • 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















          0














          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






          share|improve this answer























          • 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













          0












          0








          0







          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






          share|improve this answer













          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







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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

















          • 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






          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.



















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

          155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해