Archive Blogs

Recent Posts

blog cover
Software Development

Cross-platform vs. Native Mobile Apps: A Comprehensive Guide

In today’s digital age, mobile applications have become an integral part of our daily lives. Whether it’s for communication, entertainment, or business, apps play a pivotal role. With the increasing demand for mobile apps, developers are often faced with a crucial decision: Should they opt for native or cross-platform app development? Let’s dive deep into […]
photo of the creator2
blog cover
IOS

WordPress to Android plugin!

At Infuy we are working in some internal products, one of them is this which is just launched (free version). With this version you are going to be able to generate an unsigned APK with a lot of functionalities. We are working on finishing the premium which will have several features such us, sending push […]
photo of the creator2
blog cover
Android

Push Notifications Using Google Cloud Messaging (GCM)

We had to implement in some of our android apps the ability to send push notifications in order to send a message or a notification of a new event to the devices, request data synchronization, etc. In this case we will be showing a scenario using PHP and MySQL on the backend, which will serve downstream messages […]
photo of the creator2
blog cover
Android

Android: How to get cellphone number from SIM

In some register forms you need to get the phone number in order to avoid that some users enters some invalid phones. So in order to achieve this you could detect the number from the SIM. The tricky point is that some Carriers does not have such info updated on the SIM, so in this […]
photo of the creator2
blog cover
Android

Networking for Android made easy: The Volley Library

When developing an app on native Android you definitely at some point happen to need to make a network call, say, calling a JSON api. Being either your own well known or third party api you always need to get your hands on that tedious boilerplate code: create an AsyncTask and in it’s doInBackground() method implement the HTTP call […]
photo of the creator2
blog cover
Android

Improving PhoneGap geolocation for Android

Some Android devices have the problem of not being able to obtain the user’s current geolocation using the following standard code:navigator.geolocation.getCurrentPosition(onSuccess, onError, options);The first possible solution to this problem is to add the following options parameter:options = { enableHighAccuracy: true,timeout: 5000,maximumAge: 0,desiredAccuracy: 0, frequency: 1 };If that doesn’t work, the other possible solution is to stop […]
photo of the creator2