Inspiring Quotes

Interesting Quotes to share

Posted on

Interesting Quotes Here are some interesting Quotes Find a tool for the purpose, not a purpose for the tool! I see this Quote at this link  “Try to see the coin from both sides” -self I Quote I am Strong because I know my Weaknesses. I am Beautiful because I am aware of my Flaws. […]

Android

Failed to install apk on device timeout

Posted on

In Eclipse ADT, Whenever you’re trying to run app on Android phone by connecting phone to PC. You may see this error Failed to install apk on device timeout. The reason for it ADB connection is closing before running app on device. To fix this issue you need to change ADB Connection timeout settings. Please […]

Android

How to send zip file as attach in email client

Posted on

Hi Guys, When I’m trying to attach zip file to a mail composer. I tried following code //this is a String variable used for file path. String STORAGE_ZIP_FILE=Environment.getExternalStorageDirectory().getPath() + “/MyProj/test.zip”; Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_SUBJECT, “Person Details”); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(STORAGE_ZIP_FILE)); sendIntent.setType(“text/html”); startActivity(sendIntent); But, I see runtime error as it displayed a toast message saying this […]

Android

XStream ConversionException: Cannot construct it does not have a no-args constructor

Posted on

Hi Guys, While using XStream to parse XML in my app, I see app crash due to this parse issue as ConversionException Caused by: com.thoughtworks.xstream.converters.ConversionException: Cannot construct <ClassName> as it does not have a no-args constructor : Cannot construct <ClassName> as it does not have a no-args constructor I see the issue is due to inner class, […]