Skip to content

Commit

Permalink
adding gradle support for library project
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasbruns committed Sep 10, 2013
1 parent a7d07d5 commit b708ba3
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions HoloGraphLibrary/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.5.+'
}
}

apply plugin: 'android-library'

android {
compileSdkVersion 17
buildToolsVersion = 17

sourceSets {

main {
assets.srcDirs = ['assets']
res.srcDirs = ['res']
aidl.srcDirs = ['src']
resources.srcDirs = ['src']
renderscript.srcDirs = ['src']
java.srcDirs = ['src']
manifest.srcFile 'AndroidManifest.xml'

}
}
}


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

0 comments on commit b708ba3

Please sign in to comment.