20 lines
382 B
Groovy
20 lines
382 B
Groovy
apply plugin: 'android-library'
|
|
|
|
android {
|
|
|
|
// Define these properties in the gradle.properties file in the root project folder
|
|
compileSdkVersion 33
|
|
buildToolsVersion "29.0.3"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 26
|
|
targetSdkVersion 33
|
|
}
|
|
|
|
sourceSets.main {
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
java.srcDirs = ['src']
|
|
res.srcDirs = ['res']
|
|
}
|
|
}
|