Showing posts with label eclipse. Show all posts
Showing posts with label eclipse. Show all posts

Thursday, 24 January 2013

How To publish android application in market.

Process of publish an application in the android market (Google-Play).


Android Market:
            https://play.google.com/store
Android Market now called Google Play is a digital-distribution multimedia-content service from Google which includes an online store for music, movies, books, and Android applications and games, as well as a cloud media player.
For publishing the application in the market we need to check the following points:
·         Getting application ready
a.       Request necessary android permission
b.      Specify a name and icon
c.       Configure  version manifest data
d.      Set compatibility option
e.       Cleanup file and removing logging
f.       Sign in and zip align the application
·         Becoming a market publisher
a.       Register as a publisher and setup your profile
b.      Read and agree to the Android Market Developer Distribution Agreement.
c.       Pay a registration fee of $25 USD via Google Checkout.
To publish applications on the Android Market, you must be a registered developer. Head over to http://market.android.com/publish and sign in with your Google account. Next, fill out all the required information along with your real phone number, which Google will use to contact you in the event of an emergency or a problem with any of your Android applications. If you can’t decide on a developer name, don’t worry. Just use your real name for now – you can always change that later via your profile page.
You should read the Android Market Developer Distribution Agreement carefully, as you are required to accept the terms and you will be legally bound to them upon paying the registration fee.
Click the Google Checkout button and pay the one-time registration fee and you’re done!


·         Uploading an application
Login to your publisher account and click “Upload an Application”. Fill in all of the form data and include screenshots if you can and provide a precise, short and well-formatted description. You can also choose whether or not you want to release it as a free or paid app – though you need to be a registered Google Checkout Merchant to do the latter and it’s currently only available in a handful of countries. Lastly, click “Publish.” 
  
 
Our new android application for EGreeting.Have a look to it.
 The Greetings Android Application 

Download:-

 



NovaRadix Android Application Development Team
NovaRadix Technology
WWW.NOVARADIX.COM


 

Friday, 18 January 2013

How to connect android device in Linux (Ubantu)

Connect Android Device for Development in Linux (Ubuntu)

Connecting android device in ubuntu (Linux) guide.
First of all you have to login with root user. If there is no root login then enable root login using following steps:
 Enable the root account in Ubuntu ,
Please follow below steps
1 . To get started, Open terminal - press Ctrl – Alt – T 
on your keyboard to open Terminal.  
2. When it opens, run the commands below to create a new root password.

sudo passwd root

It asks for new password for root login.

3.  copy and paste the commands below to enable manual or other login.

sudo sh -c 'echo "greeter-show-manual-login=true" >> /etc/lightdm/lightdm.conf'

Restart your computer and choose to login as root.

Log in as root and create this file: /etc/udev/rules.d/51-android.rules.

Use this format to add each vendor to the file:
SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", MODE="0666", GROUP="plugdev"

List of vendor Ids :
http://developer.android.com/tools/device.html#VendorIds

In this example, the vendor ID is for HTC, vendor id of HTC is “0bb4”. The MODE assignment specifies read/write permissions, and GROUP defines which Unix group owns the device node.

You can add multiple device vendor id with creating new line for each venor
SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", MODE="0666", GROUP="plugdev"

After , Save the file and run the following command in terminal

Now execute:
chmod a+r /etc/udev/rules.d/51-android.rules

Restart the eclipse and enjoy the usb debugging in android with ubuntu.

Our new android application for EGreeting.Have a look to it.
 The Greetings Android Application 


NovaRadix Android Application Development Team
NovaRadix Technology
WWW.NOVARADIX.COM

Call web services easily

get source code from here, Download