When submitting my app to the app store which does not use push notifications I get a message saying I have no entitlement for push notifications.
I understand that you can add "DISABLE_PUSH_NOTIFICATIONS" to the xcode project
see here https://stackoverflow.com/a/31799975/122232
but everytime I build in VS I get a new xcode project, I would like to set this in a config in VS somehow so I won't have to remember
I tried adding a res\native\ios\cordova\build-release.xcconfig file
GCC_PREPROCESSOR_DEFINITIONS[config=Release] = $(inherited) DISABLE_PUSH_NOTIFICATIONS=1
but that didn't show up in the project - what am I doing wrong?