Cordova Facebook plugin : missing variables APP_ID, APP_NAME

前端 未结 4 1627
一向
一向 2021-01-17 17:55

When I do :

cordova plugin add https://github.com/phonegap/phonegap-facebook-plugin.git

I get the error :

Error: Variable(s         


        
4条回答
  •  半阙折子戏
    2021-01-17 18:44

    Look at the bottom of the README.md file on that github repository. You'll see it gives you instructions for installing the plugin and including the variables:

    plugman install --platform [PLATFORM] --project [TARGET-PATH] --plugin [PLUGIN-PATH] --variable APP_ID="[APP_ID]" --variable APP_NAME="[APP_NAME]"
    
    where
        [PLATFORM] = ios or android
        [TARGET-PATH] = path to folder containing your phonegap project
        [PLUGIN-PATH] = path to folder containing this plugin
        [APP_ID] = Your APP_ID as registered on Facebook
    

    The Cordova CLI uses Plugman behind the scenes, so you can use it to inject variable names like this:

    cordova plugin add https://github.com/phonegap/phonegap-facebook-plugin.git --variable APP_ID="my-app-id" --variable APP_NAME="my-app-name"
    

提交回复
热议问题