blob: f5f023991e5fb1865c3b22d60cb72f5f8485b4e6 [file] [log] [blame]
/**
* Base rules for building chips. This build file is not used directly but rather
* included in scripts like build.gradle or standalone.gradle using 'apply from'.
*
* This allows the dependencies to be configured so that for builds in the Android tree, the
* dependencies like support library is built directly from source, while for standalone builds they
* will be fetched from maven central.
*/
apply plugin: 'com.android.library'
android {
sourceSets.main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
}
}
dependencies {
compile deps['support-v4']
}