mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 16:53:25 +00:00
12 lines
324 B
JavaScript
12 lines
324 B
JavaScript
const withEntitlementsPlist =
|
|
require("@expo/config-plugins").withEntitlementsPlist;
|
|
|
|
const withRemoveiOSNotificationEntitlement = (config) => {
|
|
return withEntitlementsPlist(config, (mod) => {
|
|
delete mod.modResults["aps-environment"];
|
|
return mod;
|
|
});
|
|
};
|
|
|
|
module.exports = withRemoveiOSNotificationEntitlement;
|