Switch GCM Client on Development and Production

后端 未结 2 708
忘了有多久
忘了有多久 2021-01-14 07:52

Just implement the new GCM. For official document,

Copy the google-services.json file you just downloaded into the app/ or mobile/ directory of your

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-14 08:36

    I have just answered a similar question here for different productFlavors.

    In your case it's debug/production. I don't know why you need to switch between production and debug but i think you can do the same as what I proposed for flavors.

    Create two extra folders src/release and src/debug , in each of the folders you put the corresponding google-services.json , so you will have: src/release/google-services.json and src/debug/google-services.json

    Now in gradle add this :

    android {
    
    // set build config here to get the right gcm configuration.
    //def myBuildConfig = "release"
    def myBuildConfig = "debug"
    
    // this will copy the right google-services.json file to app/ directory.
    if (myBuildConfig.equals("release")) {
        println "--> release copy!"
        copy {
            from 'src/release/'
            include '*.json'
            into '.'
        }
    } else {
        println "--> debug copy!"
        copy {
            from 'src/debug/'
            include '*.json'
            into '.'
        }
    }
    
    // other stuff
    }
    

提交回复
热议问题