mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-07 16:06:08 +00:00
28 lines
479 B
Groovy
28 lines
479 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
dependencies {
|
|
implementation project(':owncloudComLibrary')
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
minSdkVersion 19
|
|
targetSdkVersion 28
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/LICENSE.txt'
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|