Small tweak to make debug installations quicker
This commit is contained in:
parent
73f55677e8
commit
cca253e1fa
1 changed files with 3 additions and 1 deletions
|
@ -151,7 +151,9 @@ dependencies {
|
|||
implementation 'com.github.bumptech.glide:glide:4.9.0'
|
||||
|
||||
if (isLocalAarAvailable()) {
|
||||
debugImplementation project(path: ":linphone-sdk-android", configuration: 'debug')
|
||||
//debugImplementation project(path: ":linphone-sdk-android", configuration: 'debug')
|
||||
//debug AAR is a lot bigger than release one, and APK install time will be much longer so use release one for day-to-day development
|
||||
debugImplementation project(path: ":linphone-sdk-android", configuration: 'release')
|
||||
releaseImplementation project(path: ":linphone-sdk-android", configuration: 'release')
|
||||
} else {
|
||||
debugImplementation "org.linphone:linphone-sdk-android-debug:4.1+"
|
||||
|
|
Loading…
Reference in a new issue