Java/Android Client for using Fatsecret REST API
You can use this library by downloading it here or by following this step -
<dependency>
<groupId>com.fatsecret4j</groupId>
<artifactId>fatsecret-platform</artifactId>
<version>2.0</version>
</dependency>
You can use this library by downloading it here and placing it in libs folder or by following these steps -
build.gradle
filerepositories {
mavenCentral()
}
android {
defaultConfig {
minSdkVersion 24
jackOptions {
enabled true
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
compile 'com.fatsecret4j:fatsecret-platform:2.0'
compile 'com.android.volley:volley:1.0.0'
}
Android Manifest
fileIn order to target Android API level 24 or later, you will need to ensure that your application requests runtime permissions for internet access.
<uses-permission android:name="android.permission.INTERNET"/>
You can check more documentation here.