Hey there, fellow Android developers! Today, we’re going to talk about a data-handling superhero that will make your app development life a breeze – LiveData! It saves your app from data disasters and keeps your UI components in sync. So, grab your developer capes, and let’s dive into the world of LiveData! Continue reading…
Tag: Android
Compile c/c++ for android and make a native executable
Most of us are familiar with android studio or Android SDK to develop an Android App but what about binary executables?
Let say you have a C code like this and you what to compile it and run it on your Android phone just like a console application.
#include <stdio.h> int main() { printf("Hello world \n"); printf("I'm running on Android\n"); return 0; }