This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-09-22
Channels
- # announcements (2)
- # beginners (137)
- # chlorine-clover (13)
- # clj-kondo (3)
- # cljsrn (4)
- # clojure (52)
- # clojure-australia (3)
- # clojure-dev (2)
- # clojure-europe (34)
- # clojure-nl (1)
- # clojure-sg (3)
- # clojure-spec (1)
- # clojure-uk (12)
- # clojurescript (2)
- # clojureverse-ops (7)
- # code-reviews (3)
- # conjure (2)
- # cursive (18)
- # datavis (21)
- # datomic (34)
- # exercism (1)
- # figwheel-main (6)
- # graphql (3)
- # helix (21)
- # introduce-yourself (1)
- # jackdaw (1)
- # jobs (4)
- # jobs-discuss (32)
- # juxt (14)
- # leiningen (6)
- # lsp (35)
- # meander (19)
- # nrepl (2)
- # off-topic (37)
- # portal (40)
- # quil (5)
- # re-frame (45)
- # reagent (10)
- # releases (1)
- # remote-jobs (4)
- # reveal (15)
- # sci (7)
- # shadow-cljs (40)
- # spacemacs (3)
- # tools-build (2)
- # vim (17)
- # xtdb (11)
Morning!
but I do have some good news, the App I have been working on for the last year is in the Play store! 🎉

our plan is to sell to enterprise and charge them, end user can download the app for free. Employer pays
theres alot of apps jostling for attention...
So you’ve made the MVP and now you need to add all the other things?
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.
push notifications are a bit of a journey @thomas
[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
hmmm ok... I was thinking about using Expo, but I'll have a look into it. thank you for the tip
[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
@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
unless you are talking about local-only notifications, rather than pushes - in which case, it's all within expo
Expo has a service which abstract both APNS and firebase away for you and present one interface for the two.
oh, i see - expo has an API-side service, for sending the pushes - i didn't realise, i thought it was on-device only
yeah, a single service is certainly more convenient