mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Added back log for which SDK is being used
This commit is contained in:
parent
c2a74df26d
commit
407e474896
1 changed files with 17 additions and 0 deletions
|
|
@ -10,6 +10,23 @@ plugins {
|
|||
|
||||
def packageName = "org.linphone"
|
||||
|
||||
configurations {
|
||||
customImplementation.extendsFrom implementation
|
||||
}
|
||||
|
||||
task linphoneSdkSource() {
|
||||
doLast {
|
||||
configurations.customImplementation.getIncoming().each {
|
||||
it.getResolutionResult().allComponents.each {
|
||||
if (it.id.getDisplayName().contains("linphone-sdk-android")) {
|
||||
println 'Linphone SDK used is ' + it.moduleVersion.version + ' from ' + it.properties["repositoryName"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
project.tasks['preBuild'].dependsOn 'linphoneSdkSource'
|
||||
|
||||
android {
|
||||
namespace 'org.linphone'
|
||||
compileSdk 34
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue