expose `lib-multisrc` dependencies to the extensions (#1293)
* expose `lib-multsrc` deps to the extensions change `implementation` to `api` * remove those libs from extensions
This commit is contained in:
parent
df9983f9b0
commit
489729f52b
|
@ -5,5 +5,5 @@ plugins {
|
|||
baseVersionCode = 2
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib:synchrony"))
|
||||
api(project(":lib:synchrony"))
|
||||
}
|
||||
|
|
|
@ -5,6 +5,6 @@ plugins {
|
|||
baseVersionCode = 33
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib:cryptoaes"))
|
||||
implementation(project(":lib:randomua"))
|
||||
api(project(":lib:cryptoaes"))
|
||||
api(project(":lib:randomua"))
|
||||
}
|
||||
|
|
|
@ -5,5 +5,5 @@ plugins {
|
|||
baseVersionCode = 27
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib:randomua"))
|
||||
api(project(":lib:randomua"))
|
||||
}
|
||||
|
|
|
@ -5,5 +5,5 @@ plugins {
|
|||
baseVersionCode = 28
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib:randomua"))
|
||||
api(project(":lib:randomua"))
|
||||
}
|
||||
|
|
|
@ -5,5 +5,5 @@ plugins {
|
|||
baseVersionCode = 1
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib:dataimage"))
|
||||
api(project(":lib:dataimage"))
|
||||
}
|
||||
|
|
|
@ -8,7 +8,3 @@ ext {
|
|||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib:randomua"))
|
||||
}
|
||||
|
|
|
@ -7,7 +7,3 @@ ext {
|
|||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib:cryptoaes"))
|
||||
}
|
||||
|
|
|
@ -7,7 +7,3 @@ ext {
|
|||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib:cryptoaes"))
|
||||
}
|
||||
|
|
|
@ -10,5 +10,4 @@ apply from: "$rootDir/common.gradle"
|
|||
|
||||
dependencies {
|
||||
implementation(project(":lib:synchrony"))
|
||||
implementation(project(":lib:cryptoaes"))
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue