Video Tutorial

How to publish Android app to Google Play Store?

Objectives :

  • How to publish Android app to Google Play Store?
  • How to publish Android app to Google Play Store using Eclipse?
  • How to create keystore in Android?
  • How to zip align an Android app?
  • How to export signed Android package?
  • How to export signed Android APK?
  • How to export signed Android app?
  • How to create signature for Android app?
  • How to compress Android app for publishing?
  • How to make an Android app ready for publishing?

This video will guide you to publish your own Android apps on Google Play through some simple steps and that too with few clicks. This small video will answer all the questions above.

The video was recorded during a Online Android Training and uploading unedited video here. The training was conducted from Doha, Qatar. If you need online training on Android or need any support, please feel free to write me at aatul@ancyber.com

Please feel free to share the video if you like it and do comment below. And subscribe to my YouTube channel for more video tutorials.

[youtube=https://www.youtube.com/watch?v=1PsByMlw_zE]

Change font size in Eclipse

Hey friends,

Many students & professionals were asking that how they can change the font size in Eclipse.

 

Here is the way to change the font size in Eclipse :

  • Go to Window Menu Preferences > General > Appearance > Colors and Fonts
  • Then to change the font size : Go to Java > Java Editor Text Font > Edit
  • Now set the font & font size you wish, done.

 

See Video Tutorial for above :

[gigya src=”http://player.videofy.me/player.swf?videoId=605346″ width=”480″ height=”256″ quality=”high” wmode=”transparent” allowFullScreen=”true”]

Enjoy Coding!

Why Java is Platform Independent?

Objectives :

  • Why Java is platform independent?
  • How java program executes?
  • What is execution flow of Java Program?
  • What are the steps to execute a Java Program?
  • What are the steps to run a Java Program?

[gigya src=”http://player.videofy.me/player.swf?videoId=424278″ width=”480″ height=”300″ quality=”high” wmode=”transparent” allowFullScreen=”true” ]

Seminar on Cloud Computing & Security – Atul Palandurkar

[youtube:http://www.youtube.com/watch?v=rijoPqLS7Ik&feature=youtu.be]

Seminar on Cloud Computing was held at PIET, Nagpur (INDIA) & was organized by HCL CDC (Career Development Centre), Nagpur (INDIA).

It was a introductory seminar organized by HCL CDC at Priyadarshini Institute of Engineering & Technology, Nagpur on 04 Feb 2012. This kind of seminars always helps students to get in touch with the new trends in IT industry as well as students can interact with the industry experts too.

Creating Google+ Page

Objectives :

  • How to create Google+ page?
  • How to create page on Google+?
  • How to create Google+ fan page?
  • How to create fan page on Google+?
  • How to create page on Google Plus?

Here is the video tutorial which will guide you on above questions :

[youtube:http://www.youtube.com/watch?v=3u-HdzmEa3o&feature=youtu.be]

 

How to set Path for Java

Dear Friends,

If you want to set the path for Java, there are two main types for setting system path for Java which are as follows;

  1. Temporary Path
  2. Permanent Path

For the above two types, the video describes the complete step by step procedure for setting path for Java :

[youtube=http://www.youtube.com/watch?v=rM4Qq3Ua7Sk]

Or you can go through this tutorial :

1. To check path is set or not :
a. Go to Start Menu
b. Go to Run
c. Type “cmd” without quotes to open Command prompt.
d. Get to the root directory say c:/>
e. To check whether the path is already set or not, on command prompt type “javac” without quotes & press enter/return. If the following message appears on the console screen then the path is not set.

f. But if the other message having length nearly equal to half a page then path is set.

2. Temporary Path :

To set the temporary path follow the steps given below;
a. Open Command Prompt.
b. If path is not set &  want to set it temporarily, assume the Java 1.6.0 is installed on your system, type following command on console screen :
And finally the path is set temporarily.
Note : This will work only for the current window, won’t work if you open another window.

3. Permanent Path :

To set the path permanently follow the steps given below;
a. Right Click on “My Computer Icon”.
b. Go to “Properties”.
c. Go to “Advanced” tab.
d. Click on “Environment Variables”.
e. Go to “System Variables”.
f. Find “Path” variable, select it & click “Edit”.
g. Small window will appear. Go to end by simply pressing “End” button & type following path with semicolon ( ; ) as prefix but without quotes;
    “;C:\Program Files\Java\jdk1.6.0\bin
h. Press “OK”, again “OK”, again “OK”.
And finally the path is set permanently.
i. To check whether the path is set or not simply refer details given above in the section 1.