android-facebook icon indicating copy to clipboard operation
android-facebook copied to clipboard

Tunned Facebook SDK for Android

This is a stand-alone implementation of the official Facebook library for Android. You could want to use this library if you do not want to deal with Android Libraries, but instead use a JAR directly or through Maven.

###Download

Latest version available is 1.6:

###Maven

You can use it from Maven by including this dependency and repository:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    ...
    <dependencies>
        ...
        <dependency>
            <groupId>com.codeslap</groupId>
            <artifactId>android-facebook</artifactId>
            <version>1.6</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>

    <repositories>
        <repository>
            <id>codeslap</id>
            <url>http://casidiablo.github.com/codeslap-maven/repository/</url>
        </repository>
    </repositories>
</project>