32
Views
3
Comments
How to remove information from .plist file
Question

hello

when I try to publish my app in apple store

I'm getting warning like:

"Your app contains NSUserTrackingUsageDescription, indicating that you will request permission to track users. You must indicate which data types are tracking users. If this is incorrect, update your app binary and upload a new build to App Store Connect "


Actually I'm not using any location tracking. But I think a plugin which I used (can be google admob plugin) may use this.

I want to remove this location tracking completely. How can I do it?

Thanks


2024-08-01 09-19-00
Mohd Shuaib

Hi @Cagri Keskin,

Check the actions you are using from the plugin (Google ad . . or any). There should any JS implemented for tracking purposes. You can do:

  1. Clone the actions and use them according to your needs by removing unwanted JS.
  2. Using only those actions which do not need the location permissions from user.
  3. Search for other plugin which only serves your purpose.

Hope this helps!

UserImage.jpg
Cagri Keskin

Hello Mohd

thanks for the suggestion

I checked all plugins which I use and I couldn't find anything about tracking.

for skipping the apple requirements, I added this to extensibility configuration:

 "ios": [{                                

"name": "UseSwiftLanguageVersion",                               

 "value": "5"                                

},                               

 {                               

 "name": "NSUserTrackingUsageDescription",                                

"value": "This app needs your location for providing specilized notifications."                                }                            

]


But again my app has been rejected.
I can't remove the tracking or I can't keep it and solve the issue which apple is mentioining.


I'm using only these:

and I opened all js' but I couldn't find anything about tracking.


2019-01-07 16-04-16
Siya
 
MVP

Please see if this discussion helps to resolve your issue. 

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.