PhoneGap Build,Build上的Google Plus插件和推送通知插件冲突失败

时间:2018-04-25 08:37:09

标签: android cordova phonegap-plugins phonegap-build phonegap

我需要使用google plus插件以及推送通知插件
<plugin name="cordova-plugin-googleplus" source="npm" spec="5.2.1"></plugin>,但使用这两个版本会产生错误:Failed to apply plugin [class 'com.google.gms.googleservices.GoogleServicesPlugin'] > For input string: "+"

当我使用5.3.0的googleplus插件时,它可以正常运行并构建成功,但是在发送通知时,我的手机中会弹出一个弹出窗口并说应用程序已停止...关闭应用程序。

更新: config.xml中

<?xml version='1.0' encoding='utf-8'?>

<widget id="com.phonegap.myapp1" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
    <name>My App1</name>
    <description>
       MyApp
    </description>


        <preference name="DisallowOverscroll" value="true" />
        <preference name="AndroidPersistentFileLocation" value="Compatibility" />
        <preference name="loadUrlTimeoutValue" value="700000" /> 
        <preference name="android-minSdkVersion" value="17" />



        <preference name='phonegap-version' value='cli-8.0.0' />

        <preference name='pgb-builder-version' value='2' />






        <hook src="scripts/cordova-google-services-version-gradle-fix.js" type="before_prepare" />



            <platform name="android">

                <framework src="com.google.android.gms:play-services-gcm:+" />

                <framework src="com.android.support:support-v4:+" />

            </platform>
  

这消除了冲突错误,但在发送NOTIFICATION而不是通知时,我的手机中会出现一个对话框,显示App已停止关闭应用程序

        <plugin name="cordova-plugin-googleplus" source="npm" spec="5.3.0"></plugin>  
  

所以我使用这个版本提供了一个很好的通知

     <plugin name="cordova-plugin-googleplus" source="npm" spec="5.2.1"></plugin>    


        <platform name="android">   

            <resource-file src="app/google-services.json" target="app/google-services.json" />  

        </platform>     



         <plugin name="phonegap-plugin-push" spec="1.10.5">     
OR
      <plugin name="phonegap-plugin-push" spec="1.4.5">  
OR

    <plugin name="phonegap-plugin-push" spec="2.1.3"> 
            <param name="SENDER_ID" value="xxx" />
        </plugin>


            <content src="index.html" />    


    </widget> 

0 个答案:

没有答案