mirror of
https://github.com/material-components/material-components-android.git
synced 2026-01-09 07:11:07 +08:00
24 lines
393 B
Groovy
24 lines
393 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
dependencies {
|
|
api compatibility("appcompat")
|
|
}
|
|
|
|
android {
|
|
sourceSets {
|
|
main {
|
|
java.includes = [ '*.java' ]
|
|
java.srcDirs = ['.']
|
|
java.excludes = [
|
|
'**/build/**',
|
|
]
|
|
res.srcDirs = ['res']
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
}
|
|
}
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion 28
|
|
}
|
|
}
|