Skip to content

Commit

Permalink
Merge pull request jfeinstein10#467 from linuxmotion/master
Browse files Browse the repository at this point in the history
Add a build.gradle
  • Loading branch information
jfeinstein10 committed Dec 9, 2013
2 parents 3876155 + bd701c6 commit e9721f7
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions library/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.4.+'
}
}
apply plugin: 'android-library'

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

android {
compileSdkVersion 17
buildToolsVersion "17.0.0"

defaultConfig {
minSdkVersion 7
targetSdkVersion 16
}

sourceSets {
main {
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']

manifest.srcFile 'AndroidManifest.xml'
}
}

}

0 comments on commit e9721f7

Please sign in to comment.