Posts

Showing posts from December, 2013

How to submit an App to Google Play store

Image
Login to your Google play account: https://market.android.com/publish/Home   Purchase Google play certificate in $25 then Download the apk file from Conduit mobile platform.            In your Google play account click "Add new application"            Add your app name in Title rubric. Then click Upload APK.           Click "Upload your first APK" and upload the APK file you downloaded from Conduit mobile platform on step 1.          Choose Store listing from the list on left screen          Add your app description           Scroll down to add your App's Graphics assets. The minimum are 2 phone screen shots and a High res icon images.      Phone screen shots dimensions required are: 320(w)X640(L)      High res icon dimensions: 512X512         * If you have a nice feature graphic and a promo graphic, or a video introducing your business or your app purpose           you can add these as well and it will appear on the App in marketplace.            Scrol
Java: Exception in thread main java.lang.NoClassDefFoundError   Exception in thread “main” java.lang.NoClassDefFoundError: When trying to run a Java program, you may get this annoying error. I first got it when running our simple hello world program . The error occurs because the classpath is not set up or referenced correctly. Executing your program using the following command should correct the problem: java -classpath . helloworld In this command, helloworld is the name of your compiled class. This tells Java that your classpath is your local directory.