diff --git a/src/@ionic-native/plugins/firebase/index.ts b/src/@ionic-native/plugins/firebase/index.ts index 175697309..e77687b18 100644 --- a/src/@ionic-native/plugins/firebase/index.ts +++ b/src/@ionic-native/plugins/firebase/index.ts @@ -72,9 +72,7 @@ export class Firebase extends IonicNativePlugin { * Check permission to receive push notifications * @return {Promise} */ - @Cordova({ - platforms: ['iOS'] - }) + @Cordova() hasPermission(): Promise { return; } /** @@ -156,7 +154,6 @@ export class Firebase extends IonicNativePlugin { * @return {Promise} */ @Cordova({ - platforms: ['Android'], successIndex: 1, errorIndex: 2 }) @@ -166,9 +163,7 @@ export class Firebase extends IonicNativePlugin { * Activate the Remote Config fetched config * @return {Promise} */ - @Cordova({ - platforms: ['Android'] - }) + @Cordova() activateFetched(): Promise { return; } /** @@ -178,7 +173,6 @@ export class Firebase extends IonicNativePlugin { * @return {Promise} */ @Cordova({ - platforms: ['Android'], successIndex: 2, errorIndex: 3 })