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

Commit

Permalink
build script for facebook aar
Browse files Browse the repository at this point in the history
  • Loading branch information
mente committed Jul 27, 2013
1 parent 55a5bbd commit 46bdb34
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.gradle
build
29 changes: 29 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
buildscript {
repositories {
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:0.5+'
}
}

apply plugin: 'android-library'

dependencies {
compile 'com.android.support:support-v4:13.0.0'
}

android {
sourceSets {
main {
manifest.srcFile 'facebook-android-sdk/facebook/AndroidManifest.xml'
java.srcDirs = ['facebook-android-sdk/facebook/src']
res.srcDirs = ['facebook-android-sdk/facebook/res']
}
}
buildToolsVersion "17.0"
compileSdkVersion 17
}


task wrapper(type: Wrapper) {
gradle = "1.6"
}

0 comments on commit 46bdb34

Please sign in to comment.