Skip to content

Commit 8f495ee

Browse files
author
Luke
committed
Universal image gradle stuff
1 parent 49470b7 commit 8f495ee

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

library/build.gradle

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
apply plugin: 'android-library'
2+
3+
android {
4+
compileSdkVersion rootProject.compileSdkVersion
5+
buildToolsVersion rootProject.buildToolsVersion
6+
7+
defaultConfig {
8+
minSdkVersion rootProject.minSdkVersion
9+
targetSdkVersion rootProject.targetSdkVersion
10+
}
11+
compileOptions {
12+
sourceCompatibility JavaVersion.VERSION_1_7
13+
targetCompatibility JavaVersion.VERSION_1_7
14+
}
15+
lintOptions {
16+
disable 'InvalidPackage'
17+
}
18+
sourceSets {
19+
main.java.srcDirs = ['src']
20+
main.manifest.srcFile 'AndroidManifest.xml'
21+
}
22+
}

0 commit comments

Comments
 (0)