Google Play: The form field “Compliance Status” to delete a previously declared Permission for a new APK is not shownPermissions Declaration Form still showing in Google Play Console even with updated APK uploaded without READ_CALL_LOGPreviously declared permissions (2 permissions) google play app releaseWhat does this Google Play APK publish error message mean?Android Play Store asking users for a permission that is no longer present in the current production APKUnable to upload new APK file to Android Play store (Android Pay Permission)When do I need android.hardware.location.gps and android.hardware.location.network?Google Play Upload Failed 'You uploaded a debuggable APK'Call/SMS permission final warning email from Google Play for My React Native appgoogle play: How can I have different apks distributed to different countries but with same version?Permissions Declaration Form still showing in Google Play Console even with updated APK uploaded without READ_CALL_LOGGoogle play: about the Permissions Declaration FormHow to remove already declared permissions while app update on Google Play?

Flashing the ESP8266 12F from raspberry

How to tell readers that I know my story is factually incorrect?

How did Jayne know when to shoot?

What's a German word for »Sandbagger«?

What is a Romeo Word™?

Sentence impact: Articles, Negation without verb

What could make large expeditions ineffective for exploring territory full of dangers and valuable resources?

Project Euler # 25 The 1000 digit Fibonacci index

Locked-up DOS computer beeped on keypress. What mechanism caused that?

Why are flying carpets banned while flying brooms are not?

Was demon possession only a New Testament phenomenon?

Do pedestrians imitate automotive traffic?

Should I have one hand on the throttle during engine ignition?

Does unblocking power bar outlets through short extension cords increase fire risk?

Do Australia and New Zealand have a travel ban on Somalis (like Wikipedia says)?

Demographic consequences of closed loop reincarnation

Does a hash function have a Upper bound on input length?

How was Luke's prosthetic hand in Episode V filmed?

Is it possible to have a career in SciComp without contributing to arms research?

A spacecraft is travelling at X units per hour. But relative to what exactly? Does it depend on orbit? How?

Why does a tetrahedral molecule like methane have a dipole moment of zero?

Did Hitler say this quote about homeschooling?

Why teach C using scanf without talking about command line arguments?

Is encryption still applied if you ignore the SSL certificate warning for self-signed certs?



Google Play: The form field “Compliance Status” to delete a previously declared Permission for a new APK is not shown


Permissions Declaration Form still showing in Google Play Console even with updated APK uploaded without READ_CALL_LOGPreviously declared permissions (2 permissions) google play app releaseWhat does this Google Play APK publish error message mean?Android Play Store asking users for a permission that is no longer present in the current production APKUnable to upload new APK file to Android Play store (Android Pay Permission)When do I need android.hardware.location.gps and android.hardware.location.network?Google Play Upload Failed 'You uploaded a debuggable APK'Call/SMS permission final warning email from Google Play for My React Native appgoogle play: How can I have different apks distributed to different countries but with same version?Permissions Declaration Form still showing in Google Play Console even with updated APK uploaded without READ_CALL_LOGGoogle play: about the Permissions Declaration FormHow to remove already declared permissions while app update on Google Play?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








4















Context



I use React Native and Expo to develop an Android application. The problem I have with the Permission Statement is when I publish the APK on Google Play, in the "Publication Management > Application Versions" page.



Problem



For the previous version of my APK, I had declared READ_SMS permission in Google Play ( "Application Versions" page). Now, the application no longer needs it; however, Google Play does not offer me a form field to allow me to indicate it to it. (cf. Part "What I have already tried to do > About Google Play")



Expected results



I would like to be able to delete the declaration of the "READ_SMS" Permission in order to be able to send the new version of the APK. For example thanks to "Compliance Status field" (cf. Stackoverflow related questions).



Current results



Google Play displays me a form where I am required to fill in a type of functionality for the "READ_SMS" Permission (which I no longer need and should therefore be deleted) of the new version of the APK, and I am therefore blocked at this step. Examples of feature types: "Default SMS Manager", "Proxy Calls", "Services - OEM", etc.



Below is a screenshot I did. The types of functionalities are shown, as the (not needed and unwanted) READ_SMS Permission:



The types of functionalities are shown, as the (not needed and unwanted) READ_SMS Permission



The types of functionalities are shown, as the (not needed and unwanted) READ_SMS Permission



What I've already tried to do



At the app.json level



I changed my permissions in app.json, putting only what I need for geolocation:



"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
],


In Google Play



I followed the following procedure: https://gist.github.com/manishpatelgt/224a330a5d4c7eaf783ca3ff5d522274 (cf. Part StackOverflow related questions), which indicates in particular :



1) To "Create a new version";
2) Then click on "Retain the old APK"
3) Here, a form should normally appear with the following field: "No, this release does not meet the SMS and Call Log permissions policy": I don't see it. (Compliance Status field, cf. Part StackOverflow related questions)



StackOverflow related questions



1) GitHub procedure provided in commentary: Previously declared permissions (2 permissions) google play app release



2) Compliance Status field found in this question, but I can't see it in my own form: Permissions Declaration Form still showing in Google Play Console even with updated APK uploaded without READ_CALL_LOG










share|improve this question
























  • Hello and welcome to StackOverflow. Have you tried to contact Google Play Store support team?

    – Pedro Rodrigues
    Mar 26 at 11:10











  • No, I'm contacting them now.

    – Baptiste CHARPENTIER
    Mar 26 at 11:16











  • Google Play Store support? No such thing unless you like conversations with bots. Let me know when you figured it out, this is such a pain.

    – Jurgen Strydom
    Mar 26 at 12:12











  • Thank's.. Yes, I'll let you know.

    – Baptiste CHARPENTIER
    Mar 26 at 15:02

















4















Context



I use React Native and Expo to develop an Android application. The problem I have with the Permission Statement is when I publish the APK on Google Play, in the "Publication Management > Application Versions" page.



Problem



For the previous version of my APK, I had declared READ_SMS permission in Google Play ( "Application Versions" page). Now, the application no longer needs it; however, Google Play does not offer me a form field to allow me to indicate it to it. (cf. Part "What I have already tried to do > About Google Play")



Expected results



I would like to be able to delete the declaration of the "READ_SMS" Permission in order to be able to send the new version of the APK. For example thanks to "Compliance Status field" (cf. Stackoverflow related questions).



Current results



Google Play displays me a form where I am required to fill in a type of functionality for the "READ_SMS" Permission (which I no longer need and should therefore be deleted) of the new version of the APK, and I am therefore blocked at this step. Examples of feature types: "Default SMS Manager", "Proxy Calls", "Services - OEM", etc.



Below is a screenshot I did. The types of functionalities are shown, as the (not needed and unwanted) READ_SMS Permission:



The types of functionalities are shown, as the (not needed and unwanted) READ_SMS Permission



The types of functionalities are shown, as the (not needed and unwanted) READ_SMS Permission



What I've already tried to do



At the app.json level



I changed my permissions in app.json, putting only what I need for geolocation:



"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
],


In Google Play



I followed the following procedure: https://gist.github.com/manishpatelgt/224a330a5d4c7eaf783ca3ff5d522274 (cf. Part StackOverflow related questions), which indicates in particular :



1) To "Create a new version";
2) Then click on "Retain the old APK"
3) Here, a form should normally appear with the following field: "No, this release does not meet the SMS and Call Log permissions policy": I don't see it. (Compliance Status field, cf. Part StackOverflow related questions)



StackOverflow related questions



1) GitHub procedure provided in commentary: Previously declared permissions (2 permissions) google play app release



2) Compliance Status field found in this question, but I can't see it in my own form: Permissions Declaration Form still showing in Google Play Console even with updated APK uploaded without READ_CALL_LOG










share|improve this question
























  • Hello and welcome to StackOverflow. Have you tried to contact Google Play Store support team?

    – Pedro Rodrigues
    Mar 26 at 11:10











  • No, I'm contacting them now.

    – Baptiste CHARPENTIER
    Mar 26 at 11:16











  • Google Play Store support? No such thing unless you like conversations with bots. Let me know when you figured it out, this is such a pain.

    – Jurgen Strydom
    Mar 26 at 12:12











  • Thank's.. Yes, I'll let you know.

    – Baptiste CHARPENTIER
    Mar 26 at 15:02













4












4








4


0






Context



I use React Native and Expo to develop an Android application. The problem I have with the Permission Statement is when I publish the APK on Google Play, in the "Publication Management > Application Versions" page.



Problem



For the previous version of my APK, I had declared READ_SMS permission in Google Play ( "Application Versions" page). Now, the application no longer needs it; however, Google Play does not offer me a form field to allow me to indicate it to it. (cf. Part "What I have already tried to do > About Google Play")



Expected results



I would like to be able to delete the declaration of the "READ_SMS" Permission in order to be able to send the new version of the APK. For example thanks to "Compliance Status field" (cf. Stackoverflow related questions).



Current results



Google Play displays me a form where I am required to fill in a type of functionality for the "READ_SMS" Permission (which I no longer need and should therefore be deleted) of the new version of the APK, and I am therefore blocked at this step. Examples of feature types: "Default SMS Manager", "Proxy Calls", "Services - OEM", etc.



Below is a screenshot I did. The types of functionalities are shown, as the (not needed and unwanted) READ_SMS Permission:



The types of functionalities are shown, as the (not needed and unwanted) READ_SMS Permission



The types of functionalities are shown, as the (not needed and unwanted) READ_SMS Permission



What I've already tried to do



At the app.json level



I changed my permissions in app.json, putting only what I need for geolocation:



"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
],


In Google Play



I followed the following procedure: https://gist.github.com/manishpatelgt/224a330a5d4c7eaf783ca3ff5d522274 (cf. Part StackOverflow related questions), which indicates in particular :



1) To "Create a new version";
2) Then click on "Retain the old APK"
3) Here, a form should normally appear with the following field: "No, this release does not meet the SMS and Call Log permissions policy": I don't see it. (Compliance Status field, cf. Part StackOverflow related questions)



StackOverflow related questions



1) GitHub procedure provided in commentary: Previously declared permissions (2 permissions) google play app release



2) Compliance Status field found in this question, but I can't see it in my own form: Permissions Declaration Form still showing in Google Play Console even with updated APK uploaded without READ_CALL_LOG










share|improve this question
















Context



I use React Native and Expo to develop an Android application. The problem I have with the Permission Statement is when I publish the APK on Google Play, in the "Publication Management > Application Versions" page.



Problem



For the previous version of my APK, I had declared READ_SMS permission in Google Play ( "Application Versions" page). Now, the application no longer needs it; however, Google Play does not offer me a form field to allow me to indicate it to it. (cf. Part "What I have already tried to do > About Google Play")



Expected results



I would like to be able to delete the declaration of the "READ_SMS" Permission in order to be able to send the new version of the APK. For example thanks to "Compliance Status field" (cf. Stackoverflow related questions).



Current results



Google Play displays me a form where I am required to fill in a type of functionality for the "READ_SMS" Permission (which I no longer need and should therefore be deleted) of the new version of the APK, and I am therefore blocked at this step. Examples of feature types: "Default SMS Manager", "Proxy Calls", "Services - OEM", etc.



Below is a screenshot I did. The types of functionalities are shown, as the (not needed and unwanted) READ_SMS Permission:



The types of functionalities are shown, as the (not needed and unwanted) READ_SMS Permission



The types of functionalities are shown, as the (not needed and unwanted) READ_SMS Permission



What I've already tried to do



At the app.json level



I changed my permissions in app.json, putting only what I need for geolocation:



"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
],


In Google Play



I followed the following procedure: https://gist.github.com/manishpatelgt/224a330a5d4c7eaf783ca3ff5d522274 (cf. Part StackOverflow related questions), which indicates in particular :



1) To "Create a new version";
2) Then click on "Retain the old APK"
3) Here, a form should normally appear with the following field: "No, this release does not meet the SMS and Call Log permissions policy": I don't see it. (Compliance Status field, cf. Part StackOverflow related questions)



StackOverflow related questions



1) GitHub procedure provided in commentary: Previously declared permissions (2 permissions) google play app release



2) Compliance Status field found in this question, but I can't see it in my own form: Permissions Declaration Form still showing in Google Play Console even with updated APK uploaded without READ_CALL_LOG







android google-play android-permissions expo






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 26 at 13:58









JJIqbal

6241 gold badge4 silver badges20 bronze badges




6241 gold badge4 silver badges20 bronze badges










asked Mar 26 at 11:01









Baptiste CHARPENTIERBaptiste CHARPENTIER

214 bronze badges




214 bronze badges












  • Hello and welcome to StackOverflow. Have you tried to contact Google Play Store support team?

    – Pedro Rodrigues
    Mar 26 at 11:10











  • No, I'm contacting them now.

    – Baptiste CHARPENTIER
    Mar 26 at 11:16











  • Google Play Store support? No such thing unless you like conversations with bots. Let me know when you figured it out, this is such a pain.

    – Jurgen Strydom
    Mar 26 at 12:12











  • Thank's.. Yes, I'll let you know.

    – Baptiste CHARPENTIER
    Mar 26 at 15:02

















  • Hello and welcome to StackOverflow. Have you tried to contact Google Play Store support team?

    – Pedro Rodrigues
    Mar 26 at 11:10











  • No, I'm contacting them now.

    – Baptiste CHARPENTIER
    Mar 26 at 11:16











  • Google Play Store support? No such thing unless you like conversations with bots. Let me know when you figured it out, this is such a pain.

    – Jurgen Strydom
    Mar 26 at 12:12











  • Thank's.. Yes, I'll let you know.

    – Baptiste CHARPENTIER
    Mar 26 at 15:02
















Hello and welcome to StackOverflow. Have you tried to contact Google Play Store support team?

– Pedro Rodrigues
Mar 26 at 11:10





Hello and welcome to StackOverflow. Have you tried to contact Google Play Store support team?

– Pedro Rodrigues
Mar 26 at 11:10













No, I'm contacting them now.

– Baptiste CHARPENTIER
Mar 26 at 11:16





No, I'm contacting them now.

– Baptiste CHARPENTIER
Mar 26 at 11:16













Google Play Store support? No such thing unless you like conversations with bots. Let me know when you figured it out, this is such a pain.

– Jurgen Strydom
Mar 26 at 12:12





Google Play Store support? No such thing unless you like conversations with bots. Let me know when you figured it out, this is such a pain.

– Jurgen Strydom
Mar 26 at 12:12













Thank's.. Yes, I'll let you know.

– Baptiste CHARPENTIER
Mar 26 at 15:02





Thank's.. Yes, I'll let you know.

– Baptiste CHARPENTIER
Mar 26 at 15:02












1 Answer
1






active

oldest

votes


















0














I succeeded starting from the internal test version, where I was not asked for permissions sensitive to my application, then I went back to the production version where miraculously the permissions form had disappeared. I don't know why the google play console absolutely wanted me to select a sensitive permissions, maybe because of the old apk that was in the alpha, beta and test versions and that used sensitive permissions?

The main thing is that now my application only requires geolocation as I wanted and respects Google Play policy. Have a good day






share|improve this answer






















    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%2f55355546%2fgoogle-play-the-form-field-compliance-status-to-delete-a-previously-declared%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














    I succeeded starting from the internal test version, where I was not asked for permissions sensitive to my application, then I went back to the production version where miraculously the permissions form had disappeared. I don't know why the google play console absolutely wanted me to select a sensitive permissions, maybe because of the old apk that was in the alpha, beta and test versions and that used sensitive permissions?

    The main thing is that now my application only requires geolocation as I wanted and respects Google Play policy. Have a good day






    share|improve this answer



























      0














      I succeeded starting from the internal test version, where I was not asked for permissions sensitive to my application, then I went back to the production version where miraculously the permissions form had disappeared. I don't know why the google play console absolutely wanted me to select a sensitive permissions, maybe because of the old apk that was in the alpha, beta and test versions and that used sensitive permissions?

      The main thing is that now my application only requires geolocation as I wanted and respects Google Play policy. Have a good day






      share|improve this answer

























        0












        0








        0







        I succeeded starting from the internal test version, where I was not asked for permissions sensitive to my application, then I went back to the production version where miraculously the permissions form had disappeared. I don't know why the google play console absolutely wanted me to select a sensitive permissions, maybe because of the old apk that was in the alpha, beta and test versions and that used sensitive permissions?

        The main thing is that now my application only requires geolocation as I wanted and respects Google Play policy. Have a good day






        share|improve this answer













        I succeeded starting from the internal test version, where I was not asked for permissions sensitive to my application, then I went back to the production version where miraculously the permissions form had disappeared. I don't know why the google play console absolutely wanted me to select a sensitive permissions, maybe because of the old apk that was in the alpha, beta and test versions and that used sensitive permissions?

        The main thing is that now my application only requires geolocation as I wanted and respects Google Play policy. Have a good day







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 28 at 14:12









        Baptiste CHARPENTIERBaptiste CHARPENTIER

        214 bronze badges




        214 bronze badges


















            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%2f55355546%2fgoogle-play-the-form-field-compliance-status-to-delete-a-previously-declared%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문서를 완성해