Showing posts with label IDE. Show all posts
Showing posts with label IDE. Show all posts

Monday, August 10, 2015

Android Studio IDE, Installation On Windows OS, AS01 - Kapil Sharma



Saturday, September 14, 2013

How to create your first Java code on Eclipse: Class 200

     How to create your first Java code on Eclipse: Class 200

     Double click on Eclipse short-cut icon, mine Eclipse IDE is Juno flavour. 
    
    Click New+ under file menu option then again click on Java project.(Fig. J1) 
     
    Click next after entering Java Project name.(Fig. J2) 

In Java settings page (Fig. J3) just click finished. 
     
    After this the IDE workbench windows (means the windows for writing code opens) now, again right click on “src” folder select “New” and then select “Class” (Fig. J4). 
    
    A New Java “class” file windows opens up, write down the name for that class and click finished. (Fig. J5). 
     
    Now the user named class file open up. (Fig. J6
    
    Now write down the code, which shared in the Fig. J7.  
     
    And now, you can see your output/result in the eclipse-ide console window. 

Friday, May 17, 2013

My Android Reboot Class: 101


Class: 101

First class and hands on details, how I try to make my first real application. 

What I learn, I will share, each bits and bytes with you all, so that a collective learning can be attained in this first session or in upcoming future sessions. 

This lesson is for the first timers, so if you are advance Android experts you can further skip this lesson or future lessons.

So, this how I started my first Android learning curve.................... 

Prerequisite for this session: 

1.) Windows(XP/7/8) Or Ubuntu (10-12.04 LTS) machines. 
2.) Eclipse IDE 
     (http://www.eclipse.org/downloads/packages/eclipse-classic-422/junosr2)
3.) Android SDK (http://developer.android.com/sdk/index.html#download)
4.) ADT-Plugin for Eclipse to integrate Android feature in IDE.   
    (http://developer.android.com/tools/sdk/eclipse-adt.html)
5.) Latest SDK tools and platforms using Android SDK.

Note: 
Don't worry, if you don't know, how to install and configure the above prerequisite. I will share each details with you in upcoming classes :) 





Monday, August 13, 2012

ADT setup on Eclipse IDE on Ubuntu


Custom plugin for the Eclipse IDE, called Android Development Tools (ADT). 

If you need to install Eclipse, you can download it from http://www.eclipse.org/downloads/. 
Android recommend the "Eclipse Classic" version. 

Download the ADT Plugin
Start Eclipse, then select Help > Install New Software....Click Add, in the top-right corner.
In the Add Repository dialog that appears, enter "ADT Plugin" for the Name and the following URL for the 

Location: https://dl-ssl.google.com/android/eclipse/    >>  (Click OK)

Note: If you have trouble acquiring the plugin, try using "http" in the Location URL, instead of "https" (https is preferred for security reasons).In the Available Software dialog, select the checkbox next to Developer Tools and click Next. In the next window, you'll see a list of the tools to be downloaded. Click Next.
Read and accept the license agreements, then click Finish.

Note: If you get a security warning saying that the authenticity or validity of the software can't be established, click OK.When the installation completes, restart Eclipse.

Configure the ADT Plugin
After you've installed ADT and restarted Eclipse, you must specify the location of your Android SDK directory:

Select Window > Preferences... to open the Preferences panel (on Mac OS X, select Eclipse > Preferences). Select Android from the left panel.

You may see a dialog asking whether you want to send usage statistics to Google. If so, make your choice and click Proceed. For the SDK Location in the main panel, click Browse... and locate your downloaded Android SDK directory (such as android-sdk-windows). Click Apply, then OK.

If you haven't encountered any errors, you're done setting up ADT and can continue to the next step of the SDK installation.

Source: http://developer.android.com/guide/faq/troubleshooting.html#installeclipsecomponents