Fork me on GitHub
#clojure-europe
<
2021-09-22
>
dharrigan06:09:41

Good Morning!

pez06:09:10

God morgon!

thomas08:09:32

Good moaning... I have good nose and bad nose.

borkdude08:09:45

mogguh. @thomas well, what is it?

thomas08:09:41

Actually I was more quoting officer Crabtree from 'allo 'allo...

borkdude08:09:08

I got the reference, but I thought you actually had some :)

thomas08:09:13

but I do have some good news, the App I have been working on for the last year is in the Play store! 🎉

partywombat 16
borkdude08:09:24

wow, congrats!

thomas08:09:58

thanks... and I guess the bad news is, now we really need to make it all work 😉

Ben Hammond09:09:06

how do you go about getting noticed in the Play store?

🚀 2
thomas09:09:54

our plan is to sell to enterprise and charge them, end user can download the app for free. Employer pays

thomas09:09:46

and we do have several 'sales' people and lots of interest.

Ben Hammond09:09:19

theres alot of apps jostling for attention...

cdpjenkins09:09:13

So you’ve made the MVP and now you need to add all the other things?

thomas09:09:21

well, a bit more then an MVP. We need to sort a few things out, but the main things are done. translation isn't complete for instance.

thomas09:09:00

ooh and I need to sort out notifications as well

mccraigmccraig10:09:57

push notifications are a bit of a journey @thomas

mccraigmccraig10:09:35

[1] i would highly recommend you hit APNS and firebase APIs directly rather than using an intermediary - after issues with lost notifications via a couple of different intermediaries (pushwoosh, AWS pinpoint) we ended up going direct

thomas10:09:37

hmmm ok... I was thinking about using Expo, but I'll have a look into it. thank you for the tip

mccraigmccraig10:09:41

[2] iOS and android have some quite different push capabilities (e.g. channels in android) - it's worth reading around the docs and thinking about how you can offer the best feature set to users on each platform

👍 2
mccraigmccraig10:09:31

@thomas well, there's the presentation of notifications in the client, which is in the domain of expo, but you have to send the notifications which is where you hit the APNS/firebase APIs

mccraigmccraig10:09:56

unless you are talking about local-only notifications, rather than pushes - in which case, it's all within expo

thomas10:09:16

Expo has a service which abstract both APNS and firebase away for you and present one interface for the two.

thomas10:09:17

and we want remote notifications

mccraigmccraig10:09:36

oh, i see - expo has an API-side service, for sending the pushes - i didn't realise, i thought it was on-device only

thomas10:09:55

I think I going to try that first.

mccraigmccraig10:09:43

yeah, a single service is certainly more convenient

thomas10:09:14

and there are tutorials out there that show you how to hook it up with Lambdas, so that is known to work as well.