Skip to content
This repository has been archived by the owner on Mar 19, 2020. It is now read-only.

astrada/smartwishlistapp-android

Repository files navigation

Smart Wish List Android App

This is the Android client for SmartWishList.net.

The app lets you receive notifications when a price of a product in your wish list drops below your target price.

You can install this app from Google Play Store.

How to build

This app was developed with Android Studio IDE.

Dependencies

Get source and compile (Linux)

  1. Clone smartwishlistapp-android repository:

     $ git clone https://github.com/astrada/smartwishlistapp-android.git
    
  2. Go to the root project directory:

     $ cd smartwishlistapp-android
    
  3. Clone volley repository (from smartwishlistapp-android root):

     $ git clone https://android.googlesource.com/platform/frameworks/volley
    
  4. Create or edit ~/.gradle/gradle.properties inserting your values:

     LocalApiUrlProp=
     LocalWebSiteUrlProp=
     DebugClientIdProp=
     DebugTokenProp=
     DebugDefaultRegionProp=
     DebugHasAccountProp=
     DebugNotificationsEnabledProp=
     GcmSenderIdProp=
     KeyAlias=
     KeyPassword=
     StoreFile=
     StorePassword=
    
  5. Compile using gradle (debug target):

     $ ./gradlew assembleDebug
    
  6. (or) Compile using gradle (release target):

     $ ./gradlew assembleRelease