mobile_tele2med_2024/lib/build.gradle
2024-04-09 16:57:26 +03:00

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