{
    "android": {
        "manifest": {
            "usesPermission": [ "android.permission.WAKE_LOCK" ],          
            "application": {
                "mainActivity": {
                    "intent-filter": {
                        "action":[{
                            "$": { "android:name": "YOUR.PACKAGE_NAME.HERE.IBMPushNotification" }
                        }],
                        "category": [{
                            "$": { "android:name": "android.intent.category.DEFAULT" }
                        }]                        
                    }  
                },                
                "activities": [{
                    "$": { "android:name":  "com.ibm.mobilefirstplatform.clientsdk.android.push.api.MFPPushNotificationHandler", 
                                    "android:theme": "@android:style/Theme.NoDisplay" 
                    }
                  
                }],
                "services": [{
                    "$": { "android:exported":  "false" , 
                                    "android:name": "com.ibm.mobilefirstplatform.clientsdk.android.push.api.MFPPushIntentService" },
                    "intent-filter": [{
                        "action": [{
                            "$": { "android:name":  "com.google.firebase.MESSAGING_EVENT" }
                        }]
                    }]                    
                },
                {
                    "$": { "android:name":  "com.ibm.mobilefirstplatform.clientsdk.android.push.api.MFPPush", 
                                    "android:exported": "true" },
                    "intent-filter": [{
                        "action": [{
                            "$": { "android:name":  "com.google.firebase.INSTANCE_ID_EVENT" }
                        }]
                    }]                     
                }]                
            }
        },
        "rootGradle": {
            "dependencies": ["classpath 'com.google.gms:google-services:4.0.0'"]
        },
        "appGradle": {
            "dependencies": ["compile 'com.ibm.mobile.foundation:ibmmobilefirstplatformfoundationpush:8.0.+'",
                             "compile 'com.google.firebase:firebase-core:16.0.1'",
                             "compile 'com.google.android.gms:play-services-base:15.0.1'",
                             "compile 'com.google.firebase:firebase-messaging:17.1.0'"],
            "applyPlugins": ["apply plugin: 'com.google.gms.google-services'"]
        }        
    },    
    "ios": {
        "pod": ["pod 'IBMMobileFirstPlatformFoundationPush'"]    
    }  
}