Port Java Application to Android
- by mihirk
I am not so sure about the question or what I should call what I am trying to achieve.
I use a dialer called super sify. Here is the download - http://thegoan.com/supersify/supersify.zip
The when extracted it has two files for linux, one is a .jar file which consists of some classes. The application was written in java. The other is a .sh file, which is a shell executable and takes some parameters like username and password and machine id and stuff.
I want to port this app to android. What exactly would I have to do.
Some more information is the .jar file is named supersify.jar
and the .sh file is named ss.sh so here is the code for ss.sh
java -jar supersify.jar $*
if [ $? -eq 1 ]
then read
fi
Please help me out. This is an open source software.So I am not doing any illegal modifications.
I need to port this app to android, so would I have to write the whole thing again or just something else. I know some basic hello world android app development, and I have made an app to add two numbers, I am still on my way to become an android app developer, but I need this app and will learn a lot to make this possible unless it involves rewriting all the java classes.
Thank you in advance
If you have anymore question I will be glad to answer to them :D.