Skip to content

Commit

Permalink
Add a build.gradle for gradle module
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxmotion committed Jun 26, 2013
1 parent 8fcae2c commit dd1f2de
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 dd1f2de

Please sign in to comment.