Remove extra colons in build.gradles

modulePrefix should include this already.

PiperOrigin-RevId: 495853065
This commit is contained in:
andrewlewis 2022-12-16 13:49:56 +00:00 committed by Tianyi Feng
parent 74559b4a18
commit 9b82d5317f
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ dependencies {
implementation 'androidx.annotation:annotation:' + androidxAnnotationVersion
implementation 'org.robolectric:robolectric:' + robolectricVersion
implementation project(modulePrefix + 'library-core')
implementation project(modulePrefix + ':lib-transformer')
implementation project(modulePrefix + 'library-transformer')
implementation project(modulePrefix + 'testutils')
}

View file

@ -26,7 +26,7 @@ dependencies {
implementation 'androidx.annotation:annotation:' + androidxAnnotationVersion
implementation 'com.squareup.okhttp3:mockwebserver:' + okhttpVersion
implementation project(modulePrefix + 'library-core')
implementation project(modulePrefix + ':lib-transformer')
implementation project(modulePrefix + 'library-transformer')
testImplementation 'org.robolectric:robolectric:' + robolectricVersion
}