Fixed use of our maven repository for SDK with correct version number

This commit is contained in:
Sylvain Berfini 2018-11-15 14:36:05 +01:00
parent 7b6e50814b
commit 6059c6cbae

View file

@ -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 { android {
compileSdkVersion 28 compileSdkVersion 28
defaultConfig { defaultConfig {
@ -117,3 +93,27 @@ android {
exclude 'META-INF/MANIFEST.MF' 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"
}
}