mobile_tele2med_2024/lib/build.gradle

20 lines
382 B
Groovy
Raw Normal View History

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']
}
}