Version bumped
This commit is contained in:
parent
cf79182242
commit
00126a95d0
1 changed files with 12 additions and 2 deletions
|
@ -72,7 +72,7 @@ android {
|
|||
defaultConfig {
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 28
|
||||
versionCode 4122
|
||||
versionCode 4123
|
||||
versionName "4.1"
|
||||
applicationId getPackageName()
|
||||
multiDexEnabled true
|
||||
|
@ -158,7 +158,17 @@ dependencies {
|
|||
implementation 'com.google.android:flexbox:1.1.0'
|
||||
implementation 'com.github.bumptech.glide:glide:4.9.0'
|
||||
|
||||
implementation "org.linphone:linphone-sdk-android:4.1-369-ge4ad24e"
|
||||
if (isLocalAarAvailable()) {
|
||||
if (isLocalReleaseAarAvailable()) {
|
||||
//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
|
||||
implementation project(path: ":linphone-sdk-android", configuration: 'release')
|
||||
} else {
|
||||
releaseImplementation project(path: ":linphone-sdk-android", configuration: 'release')
|
||||
debugImplementation project(path: ":linphone-sdk-android", configuration: 'debug')
|
||||
}
|
||||
} else {
|
||||
implementation "org.linphone:linphone-sdk-android:4.1-366-g1b22291"
|
||||
}
|
||||
}
|
||||
if (firebaseEnabled()) {
|
||||
apply plugin: 'com.google.gms.google-services'
|
||||
|
|
Loading…
Reference in a new issue