Open Source Google Glass Development
Much like quartz sand is the main ingredient in most commercial glass, we want OpenQuartz to be the main "ingredient" in the future development for Google Glass
- Getting Started
- New to Android? New to Glass?
- Official Examples
- Important Libraries
- Important ADB Commands
- Example Applications
- OpenQuartz Open Source Applications
- Google Glass Application Sources
- Tools for decompiling applications
- Third Party Applications
- Useful third party applications
- External Links
- Official documentation and links for Google Glass as well as helpful links for developers
- Keep Your Google Glass On while charging/developing:
- adb shell svc power stayon true | false | usb | ac
- Turn off Wifi and only use Bluetooth
- adb shell svc wifi enable | disable
- Installing/Uninstall Applications(.apks):
- adb install -r FILE.apk
- adb uninstall FILE.apk
- Running the Application:
- adb shell am start -n PACKAGE.NAME/.MAIN.ACTIVITY.NAME
- List all Packages on your Android Device:
- adb shell pm list packages -f
- List all Relative Information about your Android Device:
- adb shell dumpsys
- adb shell dumpsys battery
- adb shell dumpsys wifi
- adb shell dumpsys cpuinfo
- adb shell dumpsys meminfo
- adb shell dumpsys meminfo PACKAGE.NAME
- adb shell cat "/system/build.prop" | grep "product"
- adb shell dumpsys
- Show the AndroidManifest for an APK
- aapt dump xmltree FILE.apk AndroidManifest.xml
- Screenshots from Commandline
- adb shell /system/bin/screencap -p /sdcard/screenshot.png
- adb pull /sdcard/screenshot.png screenshot.png
Read more:
- http://developer.android.com/tools/help/adb.html
- http://stackoverflow.com/questions/11201659/whats-android-adb-shell-dumpsys-tool-and-its-benefits
- Decompiling APKs
- Decompiling compiled Java (.class) files
- View decompiled JAR files from Dex2Jar
- JD-GUI
- Dumping APK Resources
- Android APKtool
- All in One Tool
Read more:
- http://stackoverflow.com/questions/3122635/is-it-possible-to-decompile-an-android-apk-file
- http://blog.burrowsapps.com/2012/02/hacking-facebook-for-android.html
- http://blog.burrowsapps.com/2012/05/how-to-reverse-engineer-android-malware.html
Copyright (C) 2014 OpenQuartz
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.