Browsed by
Category: Mobile

Run/install/debug Android applications over Wi-Fi

Run/install/debug Android applications over Wi-Fi

Connect the device via USB and make sure debugging is working; adb tcpip 5555. This makes the device to start listening for connections on port 5555; Look up the device IP address with adb shell netcfg or adb shell ifconfig with 6.0 and higher; You can disconnect the USB now; adb connect <DEVICE_IP_ADDRESS>:5555. This connects to the server we set up on the device on step 2; Now you have a device over the network with which you can debug as usual. To switch…

Read More Read More

Versioning Android apps

Versioning Android apps

If you need to improve the versioning scheme of your android app, then you are reading the right story. Let’s discover together some good practices and their advantages. Semantic Versioning There is something in the software world called Semantic Versioning. It consists on a couple of conventions to assign version numbers to your software. You can (or maybe should) read all the details here. Basically, the idea is the following: Given a version number MAJOR.MINOR.PATCH, increment the: MAJOR version when you make…

Read More Read More