/glasquare

Unofficial Foursquare glassware

Primary LanguageJavaOtherNOASSERTION

Glasquare

Unofficial Foursquare glassware

Features

  • 3 voice commands: Check me in, Find nearby places and Search places for ...
  • super-fast check-ins with a possibility to add photos
  • 10 best venues around you/matching your search with details
  • directions towards a selected venue
  • read tips of the selected venue

How to install

  1. Download latest APK
  2. adb install (read this if you don't know what that means)

How does it look

Check the website

Future plans

  • report bugs and feature requests as issues here
  • pull requests are welcomed!

How to build the code

Import it into Android Studio via Gradle.

Intent API

You can open venue detail from any other app like this:

  try {
    Intent i = new Intent("cz.destil.glasquare.VENUE_DETAIL");
    i.putExtra("id", "41059b00f964a520850b1fe3");
    startActivity(i);
  } catch (ActivityNotFoundException e) {
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://destil.github.io/glasquare")));
  }

Author