Fixed use of our maven repository for SDK with correct version number
This commit is contained in:
parent
7b6e50814b
commit
6059c6cbae
1 changed files with 24 additions and 24 deletions
|
@ -49,30 +49,6 @@ repositories {
|
|||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
androidTestImplementation('com.android.support.test.espresso:espresso-core:+') {
|
||||
exclude module: 'support-annotations'
|
||||
}
|
||||
androidTestImplementation 'com.jayway.android.robotium:robotium-solo:5.6.3'
|
||||
androidTestImplementation 'junit:junit:4.12'
|
||||
|
||||
implementation 'com.google.firebase:firebase-messaging:15.0.2'
|
||||
implementation 'com.android.billingclient:billing:1.2'
|
||||
|
||||
implementation 'org.apache.commons:commons-compress:1.16.1'
|
||||
implementation 'com.android.support:support-v4:27.1.1'
|
||||
implementation 'com.android.support:recyclerview-v7:27.1.1'
|
||||
implementation 'com.android.support:appcompat-v7:27.1.1'
|
||||
implementation 'com.android.support:design:27.1.1'
|
||||
|
||||
if (isLocalAarAvailable()) {
|
||||
implementation project(":linphone-sdk-android")
|
||||
} else {
|
||||
releaseImplementation 'org.linphone:liblinphone-sdk:${defaultConfig.versionName}'
|
||||
debugImplementation 'org.linphone:liblinphone-sdk:${defaultConfig.versionName}-DEBUG'
|
||||
}
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion 28
|
||||
defaultConfig {
|
||||
|
@ -116,4 +92,28 @@ android {
|
|||
pickFirst 'META-INF/LICENSE'
|
||||
exclude 'META-INF/MANIFEST.MF'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
androidTestImplementation('com.android.support.test.espresso:espresso-core:+') {
|
||||
exclude module: 'support-annotations'
|
||||
}
|
||||
androidTestImplementation 'com.jayway.android.robotium:robotium-solo:5.6.3'
|
||||
androidTestImplementation 'junit:junit:4.12'
|
||||
|
||||
implementation 'com.google.firebase:firebase-messaging:15.0.2'
|
||||
implementation 'com.android.billingclient:billing:1.2'
|
||||
|
||||
implementation 'org.apache.commons:commons-compress:1.16.1'
|
||||
implementation 'com.android.support:support-v4:28.0.0'
|
||||
implementation 'com.android.support:recyclerview-v7:28.0.0'
|
||||
implementation 'com.android.support:appcompat-v7:28.0.0'
|
||||
implementation 'com.android.support:design:28.0.0'
|
||||
|
||||
if (isLocalAarAvailable()) {
|
||||
implementation project(":linphone-sdk-android")
|
||||
} else {
|
||||
releaseImplementation "org.linphone:liblinphone-sdk:${android.defaultConfig.versionName}"
|
||||
debugImplementation "org.linphone:liblinphone-sdk:${android.defaultConfig.versionName}-DEBUG"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue