Skip to content

Instantly share code, notes, and snippets.

@mrcljx
Created February 5, 2014 10:50
Show Gist options
  • Save mrcljx/8821088 to your computer and use it in GitHub Desktop.
Save mrcljx/8821088 to your computer and use it in GitHub Desktop.
Simple Gradle Buildfile for PebbleKit 2.0
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.8+'
}
}
apply plugin: 'android-library'
dependencies {
compile files('libs/guava-14.0.1.jar')
}
android {
compileSdkVersion 17
buildToolsVersion '19.0.1'
android {
lintOptions {
abortOnError false
}
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment