Hello guys, i want to build a Telecommunication via VoIP app, and i want to know is there any possibility to replace the ionic dialer app with native dialer android app ?
Yes, it’s definitely possible to replace the Ionic dialer with a native Android dialer in a VoIP app. However, this will involve a few steps to integrate the native functionality into your app.
To achieve this, you would need to either use Android’s native dialer APIs or build a custom dialer interface that works with your VoIP backend. If you’re working with React Native, there are libraries that can help bridge the native functionality to your app. Specifically, you can leverage native modules to call Android’s native dialer from within your React Native app.
For a practical starting point, you can check out this React Native VoIP sample app by MirrorFly. It provides a good base for building a fully functional VoIP app and can be customized to include a native dialer.
Hope this helps! Let me know if you need more details.