Theron084
Theron084

Reputation: 155

Java Application on Smartphone

What alteration should be made in a Java Application to be able to install it on Java Enabled Smartphone?

I tried using a random app of mine to see what happens, when I open it on the cell, it says Install? I say yes, and it says invalid file.

Now I was wondering what alteration should be made?

My smartphone (Samsung S8500) runs on bada which is more or less the same as Android, but alterations in the General.

Upvotes: 0

Views: 1246

Answers (1)

nebula
nebula

Reputation: 3972

You need different SDK for smartphones. Like for Android, you need Android SDK 1.5 or any other version. You just cannot install the same application. You need to develop using the resources provided by the SDK. If your application is Java based mobile application then you can use some tools to convert it for Android. Doesn't work every time but worth a try.

In your case, Bada OS is not like Android what i learn from here. So, you need to develop the application using J2ME .

Upvotes: 1

Related Questions