How do i change the Store information Entitlements = Exponent.app/Exponent

Also when i got email after submitting to Apple it said following: How do i change this value ?

I dont want them to figure that I use Exponent so I might do OTAs.

Make sure the icons you specify in app.json don’t have any transparency specified.

@dikaiosune Interesting,
“Make sure the icons you specify in app.json don’t have any transparency specified.”
How do I figure that ? Below is my app.json file.

Earlier I was trying to provide the splash screen and the moment I’d finish uploading the app , I’d get this email from Apple saying

Heres my app.json… Kindly help me figure where could be the issue.

{
“expo”: {
“name”: “APP”,
“description”: "Good App - changed ",
“slug”: “APP”,
“privacy”: “unlisted”,
“sdkVersion”: “21.0.0”,
“version”: “1.0.16”,
“orientation”: “portrait”,
“primaryColor”: “#cccccc”,
“icon”: “./assets/icons/app.png”,
“hideExponentText”: true,
“loading”: {
“icon”: “./assets/icons/loading.png”,
/“backgroundImage”: “./assets/icons/splashImage.png”,/
},
“packagerOpts”: {
“assetExts”: [“ttf”, “mp4”]
},
“ios”: {
“bundleIdentifier”: “com.APP.exp”,
“supportsTablet”: true
},
“android”: {
“package”: “org.APP.exp”,
}
}
}