How to add Smack API lib to your project using Maven

To add Smack API lib to your project using Maven please add following code to your dependency section of your POM.xml <dependency> <groupId>org.igniterealtime.smack</groupId> <artifactId>smack</artifactId> <version>3.2.1</version> <scope>jar</scope> </dependency>
readmore

Android. Creating OnClickListener produces errors without reason in Eclipse

When you create OnClickListener() as an anonymous class in Eclipse with a code like this: someView.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { //Do something here } }); And you get errors even when there’s no reason for this (even when your code was generated by Eclipse). To fix this you need to add the following line to...
readmore

Building the body you want

Building the body you want Sorry, this entry is only available in Ukrainian.
readmore

Android autolink=”email” produces Unsupported Action notification

Android autolink=”email” produces Unsupported Action notification When you’re using autolink=”email” for TextView in your Android application and tapping on that TextView produces “Unsupported Action” message (opening Email app is expected). And the TextView is highlighted as a link. It means that you don’t have email account configured. Please configure an email account and the link will work
readmore

Echo The Complete Edition review

Echo The Complete Edition review Today I would like to write about the book that I was very impressed of, which was a real surprise for me, the great comic that I would recommend to read it to anyone who likes comics. To begin the review i’d like to tell that I learned about this book quite by accident (Amazon tossed in as recommended reading for me). I thought, “Mmm, comics on 600 pages, with good reviews, and for...
readmore

Android Project does not build due to “gen folder was not found (is missing)” (in Eclipse)

When you have a Android Project in Eclipse that you want to build, but you get build error dialog that says that the gen folder is missing please enable Auto-build in Project menu and let it do a full build for once. Then you can disable the Auto-build.
readmore

Maven: Installed JAR can not be found

Maven: Installed JAR can not be found If you are trying to install a jar into your local repository (e.g. using mvn install:install-file -Dfile=C:/Java/maps.jar -DgroupId=com.google.android.maps -DartifactId=maps -Dversion=8_r1 -Dpackaging=jar) and Maven says SUCCESS. But when you try to build you projects it says “Failed to resolve artifact” (artifact(your JAR) is missing). The reason behind this can be that the folder...
readmore

Captain America Omnibus vol.1 review

Captain America Omnibus vol.1 review Today I want to tell about the book that made a huge impression on me: Captain America Omnibus vol.1. This is a great thick and heavy book (maybe for someone it is a disadvantage, but for me – it is definitely a big plus:)). The feelings when holding this hardcover book in hands, are worth it! Glossy good paper and very good print! In short, book quality is superb. The only drawback –...
readmore

The Road To Civil War review

The Road To Civil War review Today I would like to share impressions after reading the book The Road To Civil War. Actually in this blog I decided to write only about the big fat books (200+ pages, and ideally all the 500:)) but because I really wanted to read a mega-crossover Civil War, I decided to get acquainted with the events that preceded it (about the big Civil War book I will write later). Judging from the title this...
readmore

Android Application doesn’t start due to ClassNotFoundException. And there’s no reason for that exception

Android Application doesn’t start due to ClassNotFoundException. And there’s no reason for that exception If you’re using Eclipse you have a situation when your application suddenly stopped launching (Exception is thrown at startup). And when you look at LogCat you find ClassNotFoundException (e.g. it can’t find your custom Application class). The solution may be simple: check whether you have Auto-build enabled. If it is off please turn it on, at least let it make 1 full build. It should...
readmore

« Previous Entries

line
footer