You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
419 B
24 lines
419 B
2 years ago
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 31
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 19
|
||
|
targetSdkVersion 31
|
||
|
versionName "5.2.1.51"
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
main {
|
||
|
manifest.srcFile 'AndroidManifest.xml'
|
||
|
jniLibs.srcDirs = ['libs']
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
api project(':rtclib')
|
||
|
}
|