Friday, January 24, 2014

I am featured on the Glass Apps Developer page!

Google Glass Developer on Glass-Apps.org


Check it out here!





Check out my Open Source Google Glass development on OpenCV.org!

Check out Glass-Apps.org for the Latest Google Glass Resources

Latest Google Glass News and Resources on Glass-Apps.org


Google Glass

Google Glass Application List

Google Glass Accessories

Google Glass Blogs

Google Glass Startups

Google Glass Investors

Google Glass Developers (Freelancer)

Sunday, January 19, 2014

Voice Memo App for Google Glass!

Open Source Voice Memo App for Google Glass!

by Andre Compagno

1. Simply Start the Memo App for Glass like any other!


2. Create a Memo or View existing Memos


3. Example Memo being created




Please check out the repository here!

Saturday, November 30, 2013

How to set a full screen Wallpaper on your Android device? [ROOT]

How to set a full screen Wallpaper on your Android device? [ROOT]

I have a rooted Android device running CM 10.2(Android 4.3.1). I wanted to have the Nexus 5 background without installing an applications to "set the wallpaper" or have it cropped by setting the wallpaper manually.



I have provided the Nexus 5 wallpaper above. Make sure to rename the wallpaper:

mv wallpaper.jpg wallpaper

Push the wallpaper to your device:

adb push wallpaper_info.xml /data/system/users/0
adb push wallpaper /data/system/users/0


Make sure your ADB shell is running root:

adb root
adb shell


Make sure the new files have the write permissions:

chmod 666 /data/system/users/0/wallpaper_info.xml
chmod 666 /data/system/users/0/wallpaper


Make sure the new files have the right ownership:

chown system:system /data/system/users/0/wallpaper_info.xml
chown system:system /data/system/users/0/wallpaper

Tuesday, November 26, 2013

How to Root your Google Glass?

How to Root your Google Glass?

You can simply root your Google Glass by flashing a different ROM and running a few commands!

Run these commands in your terminal:

adb reboot bootloader
fastboot oem unlock
fastboot flash boot boot.img
fastboot reboot
adb root


For more information, take a look here: https://developers.google.com/glass/tools-downloads/system.

How to Turn On Android Debug Mode for Google Glass?

How to Turn On Android Debug Mode for Google Glass?

For any developers or anyone that wants to simply "sideload" Android APKs to their Google Glass, this is the option for you!


Go to Settings on your Google Glass:



In Settings, navigate to Device info:



Tap the side of your Glass to toggle Debug mode on or off:



How to take Screenshots with Google Glass?

How to take Screenshots with Google Glass?

In order to take screenshots with Google Glass as of now is to simply do it via the command line with ADB!




Check out these two commands that can easily take care of this for you:

adb shell /system/bin/screencap -p /sdcard/FILE.png
adb pull /sdcard/FILE.png FILE.png