Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

183
Views
Push Notifications on Android and iOS without third parties such as Firebase

I have developed an app, using Ionic Framework with React, running on top of Capacitor. Now I have to implement Push Notifications on Android and iOS, but I'm requested to not use third parties such as Firebase. It's not my decision!

Example: A part of my app is showing Sale History of the user. I would like to have a push notification, every time a new sale is added.

How do I show Sale History in the app?

useEffect(() => {
    mounted.current = true;
    const options = {
      url: baseURL + "/sale-history",
      headers: {
        Accept: "application/json",
        "Content-Type": "application/json",
        Token: token,
      },
    };
    
    Http.request({ ...options, method: "GET" })
      .then((response) => {
        if (mounted.current) {
          setSaleEntries(response.data);
        }
      })
      .catch((error) => {
        console.log("Error in sale history");
      });
    return () => {
      mounted.current = false;
    };
  }, []);

Do you have any idea how can I implement Push notifications without third parties, for example in a static way?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!