Search This Blog

Friday, June 7, 2013

Screen Capture by using adb

Just because my pc was very slow and capture screen with eclipse seems impossible for the large screen tablet. So I have to use adb to do the job instead ...

# adb shell screencap -p /mnt/sdcard/sc.png
# adb pull /mnt/sdcard/sc.png /home/your/Desktop

It works for my nexus 10. Enjoy !!


Unboxing Nexus 10

Just bought Nexus 10 from Google Play.

Nice box

Main screen

 I'm No.2


Saturday, June 1, 2013

#FIXBUG VFY: unable to find class referenced in signature

Today, After updated Android SDK to version 22.0.1 and back to work. This message just appeared and my app just crashed.

VFY: unable to find class referenced in signature

After google it. It seems they added more setting into Android project that make using libraries don't go with the apk. So, just right click on your project and click on
Java Build Path -> Order and Export and tick on "Android Private Libraries ".
 That is !!