Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 2.11 KB

README.md

File metadata and controls

30 lines (22 loc) · 2.11 KB

FantasyWear is an Android application to view fantasy sports scores from Yahoo™ Fantasy Sports leagues. It supports Android 4.0+ (Ice Cream Sandwich) and all current Android Wear devices. Log into accounts on a phone/tablet and a score card will show up with the current week's results for all leagues for those accounts.

The application is available for free on Google Play™. Google Play is a trademark of Google Inc.

Special thanks to the following open source projects which were used to create FantasyWear:

Also thanks to openclipart for providing images used in the example screenshots.

Compiling FantasyWear

First, obtain an API key at the Yahoo! Developer Network.

To compile a debug APK, the following gradle properties must be set:

  • com.jeffpdavidson.fantasywear.consumerKey: the OAuth consumer key
  • com.jeffpdavidson.fantasywear.consumerSecret: the OAuth consumer secret
  • com.jeffpdavidson.fantasywear.callbackUrl: the OAuth callback URL

Then run ./gradlew mobile:assembleDebug wear:assembleDebug to build the mobile and wearable APKs, which must be installed separately.

For release builds, specify a keystore with the com.jeffpdavidson.fantasywear.keystore property. This keystore should have a store password of "jeffpdavidson" and a key with alias/password "fantasywear". Then ./gradlew mobile:assembleRelease will build a release APK with the wear app embedded inside of it, suitable for standalone installation.