diff options
| author | Jose Lima <joselima@google.com> | 2015-08-20 16:30:01 -0700 |
|---|---|---|
| committer | Jose Lima <joselima@google.com> | 2015-08-20 16:30:01 -0700 |
| commit | bd6fc08c1a3a1b50c186defbcddf32ce235b201e (patch) | |
| tree | 193a4ef38f6c2a49293fe74d2241a893ae564067 /recommendation | |
| parent | 4a4e0872bdf0548188e81740eb62085215e7f976 (diff) | |
| download | android_frameworks_support-bd6fc08c1a3a1b50c186defbcddf32ce235b201e.tar.gz android_frameworks_support-bd6fc08c1a3a1b50c186defbcddf32ce235b201e.tar.bz2 android_frameworks_support-bd6fc08c1a3a1b50c186defbcddf32ce235b201e.zip | |
Add gradle build files for Recommendations support library
Change-Id: Ic5281e29f5813d3ad0a6f7887d9233a8303b756d
Diffstat (limited to 'recommendation')
| -rw-r--r-- | recommendation/build.gradle | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recommendation/build.gradle b/recommendation/build.gradle new file mode 100644 index 0000000000..0a9ca47efc --- /dev/null +++ b/recommendation/build.gradle @@ -0,0 +1,31 @@ +apply plugin: 'android-library' + +archivesBaseName = 'recommendation' + +dependencies { + compile project(':support-v4') +} + +android { + compileSdkVersion 'current' + + defaultConfig { + minSdkVersion 21 + } + + sourceSets { + main.manifest.srcFile 'AndroidManifest.xml' + main.java.srcDirs = ['src'] + main.res.srcDirs = ['res'] + } + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_7 + targetCompatibility JavaVersion.VERSION_1_7 + } + + lintOptions { + // TODO: fix errors and reenable. + abortOnError false + } +} |
