Can I develop Android phones and tablets using the same plugin?

I am new to mobile development and a little confused. I downloaded and installed the Android Eclipse plugin and JDK.

I want to develop applications for Android tablets, as well as Android applications.

Can I do this with the same plugin? That is, development for both devices running through the same Eclipse IDE, or do I need something else?

+4
source share
4 answers

Yes, development for both devices is done through the Eclipse IDE.

+3
source

You will also have to install the Starter Package SDK . Once this is installed from the Android SDK and AVD Manager, you can install the platforms you need (in your case, SDK 11 for tablet development). See Step 4 on this page .

+1
source

When you create a new android project in Eclipse, you select the version of the SDK that you want to develop. All you have to do is select the version supported by the tablet for which you want to develop an application.

Due to how the android works, the application is not designed for either a phone or tablet, but just for Android. For example, an application written for Andriod 2.2 will launch on the Galaxy tab with changes.

+1
source

He is right. If you want to start Android programming, here is what you need to see https://stackoverflow.com/questions/2869338/where-to-start-to-learn-android

Oh, you changed the name of the question and its description. now my answer is completely wrong.

0
source

Source: https://habr.com/ru/post/1348080/


All Articles