[aerogear-dev] Cordova-FCM issue (was: Re: Android Push: Firebase Cloud Messaging)

Julio Cesar Sanchez Hernandez jusanche at redhat.com
Fri Jun 10 06:38:17 EDT 2016


Give it a try

On Fri, Jun 10, 2016 at 12:29 PM, Matthias Wessendorf <matzew at apache.org>
wrote:

> Actually that error is due to missing 'applicationID'
>
> Should we have something like this, in our gradle file ?
>
>
> https://github.com/jcesarmobile/phonegap-plugin-push/blob/216ab837fd239c52b4a477f42ecff26a835aca74/push.gradle#L19
>
>
>
> On Fri, Jun 10, 2016 at 11:28 AM, Julio Cesar Sanchez Hernandez <
> jusanche at redhat.com> wrote:
>
>> The hook should be a script that copies the .json
>>
>> <hook type="before_plugin_install" src="src/android/hooks/copy.js"/>
>>
>> and copy.js should copy the .json from the www to the right place
>>
>> can be a .sh or .bat instead of a .js, but I think .js is better as it
>> works on any OS
>>
>> On Fri, Jun 10, 2016 at 11:08 AM, Matthias Wessendorf <matzew at apache.org>
>> wrote:
>>
>>> well really
>>>
>>> doing something like this:
>>> <platform name="android">
>>> <hook type="before_plugin_install" src="www/google-services.json" />
>>> ....
>>>
>>> Failed to install 'aerogear-cordova-push':Error: ENOENT: no such file or
>>> directory, stat
>>> '/Users/matzew/Work/JBoss/UPS.next/FCM/aerogear-cordova-push/www/google-services.json'
>>>
>>> Any ideas ?
>>>
>>>
>>> On Fri, Jun 10, 2016 at 11:00 AM, Matthias Wessendorf <matzew at apache.org
>>> > wrote:
>>>
>>>> Let me try Erik Jan's suggestion w/ the hook :)
>>>>
>>>>
>>>> https://cordova.apache.org/docs/en/latest/guide/appdev/hooks/#plugin-hooks-pluginxml
>>>>
>>>> On Fri, Jun 10, 2016 at 10:58 AM, Matthias Wessendorf <
>>>> matzew at apache.org> wrote:
>>>>
>>>>> Hi,
>>>>>
>>>>> I think I am running into the issue, that I am not having the
>>>>> google-service.json file present, in my app.
>>>>>
>>>>>
>>>>> My try to update our plugin is here:
>>>>>
>>>>> https://github.com/matzew/aerogear-pushplugin-cordova/commit/0f10a771a2d6a7eda64354583ff64abcb828d844
>>>>>
>>>>>
>>>>> And I am using this app:
>>>>>
>>>>> https://github.com/jboss-mobile/unified-push-helloworld/tree/master/cordova
>>>>>
>>>>> My "www/push-config.json" file content is here:
>>>>> https://gist.github.com/matzew/aebceece86f8ac5159ec7677a2fb347c
>>>>>
>>>>> After updating that, I did follow the instructions, on the readme, in
>>>>> the "cordova" folder of the helloworld:
>>>>>
>>>>> 1) cordova platform add android
>>>>> 2) cordova plugin add
>>>>> https://github.com/matzew/aerogear-pushplugin-cordova\#fcm
>>>>> 3) cordova run android
>>>>>
>>>>>
>>>>> But, when the app launches, it crashes
>>>>>
>>>>>
>>>>>
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime:
>>>>> java.lang.RuntimeException: Unable to get provider
>>>>> com.google.firebase.provider.FirebaseInitProvider:
>>>>> java.lang.IllegalStateException: Incorrect provider authority in manifest.
>>>>> Most likely due to a missing applicationId variable in application's
>>>>> build.gradle.
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: at
>>>>> android.app.ActivityThread.installProvider(ActivityThread.java:5156)
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: at
>>>>> android.app.ActivityThread.installContentProviders(ActivityThread.java:4748)
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: at
>>>>> android.app.ActivityThread.handleBindApplication(ActivityThread.java:4688)
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: at
>>>>> android.app.ActivityThread.-wrap1(ActivityThread.java)
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: at
>>>>> android.app.ActivityThread$H.handleMessage(ActivityThread.java:1405)
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: at
>>>>> android.os.Handler.dispatchMessage(Handler.java:102)
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: at
>>>>> android.os.Looper.loop(Looper.java:148)
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: at
>>>>> android.app.ActivityThread.main(ActivityThread.java:5417)
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: at
>>>>> java.lang.reflect.Method.invoke(Native Method)
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: at
>>>>> com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: at
>>>>> com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: Caused by:
>>>>> java.lang.IllegalStateException: Incorrect provider authority in manifest.
>>>>> Most likely due to a missing applicationId variable in application's
>>>>> build.gradle.
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: at
>>>>> com.google.firebase.provider.FirebaseInitProvider.zza(Unknown Source)
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: at
>>>>> com.google.firebase.provider.FirebaseInitProvider.attachInfo(Unknown Source)
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: at
>>>>> android.app.ActivityThread.installProvider(ActivityThread.java:5153)
>>>>> 06-10 10:52:52.039  4894  4894 E AndroidRuntime: ... 10 more
>>>>> 06-10 10:52:52.040  4996  2592 W ActivityManager:   Force finishing
>>>>> activity org.jboss.aerogear.unifiedpush.HelloWorld/.MainActivity
>>>>> 06-10 10:52:52.129 23947 24146 I Icing   : Indexing
>>>>> B96E309EB2416B4DBFAE0D6623436A2C7956B584 from com.google.android.gms
>>>>> 06-10 10:52:52.222  4996  6509 I OpenGLRenderer: Initialized EGL,
>>>>> version 1.4
>>>>> 06-10 10:52:52.231 23947 24146 I Icing   : Indexing done
>>>>> B96E309EB2416B4DBFAE0D6623436A2C7956B584
>>>>> 06-10 10:52:52.236 23947 24146 I Icing   : Indexing
>>>>> 209BD54564CA1E38C7343A8DD5819E6471F3968C from
>>>>> com.google.android.googlequicksearchbox
>>>>> 06-10 10:52:52.269  4996  5005 I art     : Background partial
>>>>> concurrent mark sweep GC freed 22954(1750KB) AllocSpace objects, 0(0B) LOS
>>>>> objects, 26% free, 43MB/59MB, paused 1.180ms total 114.805ms
>>>>> 06-10 10:52:52.321 23947 24058 I Icing   : Indexing done
>>>>> 209BD54564CA1E38C7343A8DD5819E6471F3968C
>>>>> 06-10 10:52:52.661  4996  5039 W ActivityManager: Activity pause
>>>>> timeout for ActivityRecord{16012ae u0
>>>>> org.jboss.aerogear.unifiedpush.HelloWorld/.MainActivity t1391 f}
>>>>>
>>>>> On Fri, Jun 10, 2016 at 12:02 AM, Julio Cesar Sanchez Hernandez <
>>>>> jusanche at redhat.com> wrote:
>>>>>
>>>>>> My fork is here
>>>>>> https://github.com/jcesarmobile/phonegap-plugin-push/tree/FCM
>>>>>>
>>>>>> I didn't add the .json and I'm receiving push notifications
>>>>>>
>>>>>> Last time I read the GCM docs they were already talking about that
>>>>>> .json (I think it was on February or March), it's not a new thing on FCM.
>>>>>>
>>>>>> On Thu, Jun 9, 2016 at 6:38 PM, Summers Pittman <supittma at redhat.com>
>>>>>> wrote:
>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> On Thu, Jun 9, 2016 at 11:00 AM, Julio Cesar Sanchez Hernandez <
>>>>>>> jusanche at redhat.com> wrote:
>>>>>>>
>>>>>>>> I don't think that file is really needed, the phonegap-plugin-push (
>>>>>>>> https://github.com/phonegap/phonegap-plugin-push) doesn't use it
>>>>>>>> and push notifications work without it. The Sender ID is set on plugin
>>>>>>>> install passing it as a variable. Not sure what other values are included
>>>>>>>> on the google-services.json
>>>>>>>>
>>>>>>>
>>>>>>> This plugin isn't using Firebase.  We didn't need
>>>>>>> google-services.json for GCM3.
>>>>>>>
>>>>>>>
>>>>>>>>
>>>>>>>> I forked the phonegap plugin to add FCM support and it works too
>>>>>>>> without the google-services.json file too.
>>>>>>>>
>>>>>>>>
>>>>>>>> Sauce?
>>>>>>>
>>>>>>> Firebase requires two variables, the application id and the sender
>>>>>>> id.  Fortunately the senderId is embedded in the applicationId.
>>>>>>>
>>>>>>> I've made a PoC version of AGDroid-push here :
>>>>>>> https://github.com/secondsun/aerogear-android-push/tree/no_google_services
>>>>>>> and a Poc Puhs app here :
>>>>>>> https://github.com/secondsun/unified-push-helloworld/tree/no_google_services
>>>>>>>
>>>>>>>
>>>>>>> As you can see I've just overloaded the SenderId.
>>>>>>>
>>>>>>>
>>>>>>>>
>>>>>>>> On Thu, Jun 9, 2016 at 2:04 PM, Summers Pittman <
>>>>>>>> supittma at redhat.com> wrote:
>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> On Thu, Jun 9, 2016 at 2:19 AM, Erik Jan de Wit <edewit at redhat.com
>>>>>>>>> > wrote:
>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>> I am now actually wondering, where to put the
>>>>>>>>>>> google-service.json file on Cordova (no I am not updating our plugin), but
>>>>>>>>>>> I have no clue what is matching the native 'app' folder in Crodova land, is
>>>>>>>>>>> it WWW foldeR?
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> https://github.com/jboss-mobile/unified-push-helloworld/tree/master/cordova
>>>>>>>>>>>
>>>>>>>>>>> hrm...
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> There is no native folder on a cordova project, but we can put
>>>>>>>>>> something in the plugin.xml that will install / copy it into the native
>>>>>>>>>> project:
>>>>>>>>>>
>>>>>>>>>> <resource-file src="src/android/google-services.json" target="google-services.json" />
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> https://github.com/aerogear/aerogear-cordova-push/blob/master/plugin.xml#L64
>>>>>>>>>>
>>>>>>>>>> Don't know what the content is of this file seems the
>>>>>>>>>> https://github.com/jboss-mobile/unified-push-helloworld/pull/31 demo
>>>>>>>>>> doesn't have this google-services.json
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Correct.  The documentation is being updated to cover the fact the
>>>>>>>>> developer needs to add the file.  If the file is not present the developer
>>>>>>>>> gets a useful error message in his/her log when registration fails.  If the
>>>>>>>>> file is present but incorrect (as say a stubbed file) then then developer
>>>>>>>>> gets a less useful message.  We chose to leave it out because it is more
>>>>>>>>> clear what the problem is, and a quick google search for
>>>>>>>>> "google-services.json" takes the user exactly where they need to go.
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> --
>>>>>>>>>> Cheers,
>>>>>>>>>>        Erik Jan
>>>>>>>>>>
>>>>>>>>>> _______________________________________________
>>>>>>>>>> aerogear-dev mailing list
>>>>>>>>>> aerogear-dev at lists.jboss.org
>>>>>>>>>> https://lists.jboss.org/mailman/listinfo/aerogear-dev
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> _______________________________________________
>>>>>>>>> aerogear-dev mailing list
>>>>>>>>> aerogear-dev at lists.jboss.org
>>>>>>>>> https://lists.jboss.org/mailman/listinfo/aerogear-dev
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> _______________________________________________
>>>>>>>> aerogear-dev mailing list
>>>>>>>> aerogear-dev at lists.jboss.org
>>>>>>>> https://lists.jboss.org/mailman/listinfo/aerogear-dev
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> _______________________________________________
>>>>>>> aerogear-dev mailing list
>>>>>>> aerogear-dev at lists.jboss.org
>>>>>>> https://lists.jboss.org/mailman/listinfo/aerogear-dev
>>>>>>>
>>>>>>
>>>>>>
>>>>>> _______________________________________________
>>>>>> aerogear-dev mailing list
>>>>>> aerogear-dev at lists.jboss.org
>>>>>> https://lists.jboss.org/mailman/listinfo/aerogear-dev
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Matthias Wessendorf
>>>>>
>>>>> blog: http://matthiaswessendorf.wordpress.com/
>>>>> twitter: http://twitter.com/mwessendorf
>>>>>
>>>>> _______________________________________________
>>>>> aerogear-dev mailing list
>>>>> aerogear-dev at lists.jboss.org
>>>>> https://lists.jboss.org/mailman/listinfo/aerogear-dev
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Matthias Wessendorf
>>>>
>>>> blog: http://matthiaswessendorf.wordpress.com/
>>>> twitter: http://twitter.com/mwessendorf
>>>>
>>>
>>>
>>>
>>> --
>>> Matthias Wessendorf
>>>
>>> blog: http://matthiaswessendorf.wordpress.com/
>>> twitter: http://twitter.com/mwessendorf
>>>
>>> _______________________________________________
>>> aerogear-dev mailing list
>>> aerogear-dev at lists.jboss.org
>>> https://lists.jboss.org/mailman/listinfo/aerogear-dev
>>>
>>
>>
>> _______________________________________________
>> aerogear-dev mailing list
>> aerogear-dev at lists.jboss.org
>> https://lists.jboss.org/mailman/listinfo/aerogear-dev
>>
>
>
>
> --
> Matthias Wessendorf
>
> blog: http://matthiaswessendorf.wordpress.com/
> twitter: http://twitter.com/mwessendorf
>
> _______________________________________________
> aerogear-dev mailing list
> aerogear-dev at lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/aerogear-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/aerogear-dev/attachments/20160610/c17da2ac/attachment-0001.html 


More information about the aerogear-dev mailing list