Closed souzadeveloper closed 4 months ago
The Plugin played the sounds that it was getting the locations but did not register any
If the plugin plays the sounds, that means locations were registered, 100% guaranteed.
See Wiki "Debugging" and observe your logs. Search api docs "emailLog".
Hi Chris, sorry, it was my fault as I put the HeadlessJS Registry in a Context. I switched to my index.js and now my HeadlessJS function is being called correctly.
The logs helped identify this issue.
Thanks
Merhaba Chris, arkadaşım, HeadlessJS Registry'yi bir Context'e koyduğum için hata verdi. Index.js'imi geçtim ve şimdi HeadlessJS fonksiyonum doğru şekilde çağrılıyor.
Günlükler bu sorunun belirlenmesine yardımcı oldu.
Şerefsizler
Hello, I have the same problem. How did you solve it? Can you help me?
Merhaba Chris, arkadaşım, HeadlessJS Registry'yi bir Context'e koyduğum için hata verdi. Index.js'imi geçtim ve şimdi HeadlessJS fonksiyonum doğru şekilde çağrılıyor. Günlükler bu sorunun belirlenmesine yardımcı oldu. Şerefsizler
Hello, I have the same problem. How did you solve it? Can you help me?
Hello, explain your problem better or provide some part of your code so I can help you.
Merhaba Chris, arkadaşım, HeadlessJS Registry'yi bir Context'e koyduğum için hata verdi. Index.js'imi geçtim ve şimdi HeadlessJS fonksiyonum doğru şekilde çağrılıyor. Günlükler bu sorunun belirlenmesine yardımcı oldu. Şerefsizler
Hello, I have the same problem. How did you solve it? Can you help me?
Hello, explain your problem better or provide some part of your code so I can help you.
Should I post it here? If you're using Discord, let's talk there.
Merhaba Chris, arkadaşım, HeadlessJS Registry'yi bir Context'e koyduğum için hata verdi. Index.js'imi geçtim ve şimdi HeadlessJS fonksiyonum doğru şekilde çağrılıyor. Günlükler bu sorunun belirlenmesine yardımcı oldu. Şerefsizler
Hello, I have the same problem. How did you solve it? Can you help me?
Hello, explain your problem better or provide some part of your code so I can help you.
Should I post it here? If you're using Discord, let's talk there.
I believe this is a good place to continue the subject as it can be useful for other developers and even Chris can help us. Then post it right here.
Merhaba Chris, arkadaşım, HeadlessJS Registry'yi bir Context'e koyduğum için hata verdi. Index.js'imi geçtim ve şimdi HeadlessJS fonksiyonum doğru şekilde çağrılıyor. Günlükler bu sorunun belirlenmesine yardımcı oldu. Şerefsizler
Hello, I have the same problem. How did you solve it? Can you help me?
Hello, explain your problem better or provide some part of your code so I can help you.
Should I post it here? If you're using Discord, let's talk there.
I believe this is a good place to continue the subject as it can be useful for other developers and even Chris can help us. Then post it right here.
I added headlesstask to my code, but I cannot get updated output. When I want to get debug output, it always gives the old output.
Merhaba Chris, arkadaşım, HeadlessJS Registry'yi bir Context'e koyduğum için hata verdi. Index.js'imi geçtim ve şimdi HeadlessJS fonksiyonum doğru şekilde çağrılıyor. Günlükler bu sorunun belirlenmesine yardımcı oldu. Şerefsizler
Hello, I have the same problem. How did you solve it? Can you help me?
Hello, explain your problem better or provide some part of your code so I can help you.
Should I post it here? If you're using Discord, let's talk there.
I believe this is a good place to continue the subject as it can be useful for other developers and even Chris can help us. Then post it right here.
I added headlesstask to my code, but I cannot get updated output. When I want to get debug output, it always gives the old output.
BackgroundGeolocation.registerHeadlessTask(headlessLocationTask) must be called necessarily in your index.js. Remove the call from anywhere other than index.js. Without your code I can't help.
Your Environment
react-native -v
): 0.71.14My HeadlessJS code:
const headlessLocationTask = async (event) => { switch (event.name) { case 'location': console.log('[onLocation HeadlessTask] -', event.name, event.params); await processLocation(event.params); break; } }
BackgroundGeolocation.registerHeadlessTask(headlessLocationTask);