Can I change the application created by Google AppInventor with a different software environment?

So, I see that creating an Android application with Google AppInventor is very simple compared to using it with the Android plugin for Eclipse. But since the capabilities of AppInventor are limited, is it possible to somehow modify any element of the application that it created using Eclipse or any other programming environment that allows me to change the code manually?

+7
source share
2 answers

As you know, you cannot do this directly, as the App Inventor code is converted to a circuit and then converted by the kawa compiler to Java byte code. It is never introduced in Java.

However, the team has released open source component libraries that can help people make the transition from App Inventor to the Java SDK. See this post and this tutorial . A team from the University of Alabama is creating a tool to automatically translate App Inventor code into Java. See this post and this project site .

+7
source

You can download the .aia file and change the file extension to .zip. Then you can access the files and maybe even open it in the Android studio.

0
source

All Articles