Skip to content

yayaa/easyFoursquare4Android

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

76 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

easyFoursquare4Android

No Maintenance Intended

Since the original library has not changed at all by 2 years, i decided to convert it into AndroidStudio Project in order to make it easier to include in applications.

To include, get aar file from here and put it into 'libs' folder, then have project's gradle file following lines:

android {
	...

	repositories {
    	    flatDir {
        	    dirs 'libs'
        	}
    	}
	
	...
}

dependencies {
	compile(name: 'easyFoursquare4Android_v1.2.1', ext: 'aar')	
}

Important

Don't forget to set your clientId & clientSecret & callbackURL as below:

FoursquareConfig.setClient(CLIENT_ID, CLIENT_SECRET);
FoursquareConfig.setCallbackUrl(CALLBACK_URL);

Proguard

# Because it uses gson, we need to keep models
-keep class br.com.condesales.models.** { *; }
-dontwarn fi.foyt.foursquare.**

About

Library to easy make foursquare requests

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Java 100.0%