use implementation instead of compile for yoga dependencies

Summary: Use implementation instead of compile in build.gradle

Reviewed By: passy

Differential Revision: D17343602

fbshipit-source-id: a2ec21a46ebbf3feb5dcc0d9ae2684f8efb096e3
This commit is contained in:
Sidharth Guglani
2019-09-16 09:12:44 -07:00
committed by Facebook Github Bot
parent 8216c54b05
commit 6ac38d188c
2 changed files with 5 additions and 5 deletions

View File

@@ -58,11 +58,11 @@ android {
}
dependencies {
compileOnly 'com.google.code.findbugs:jsr305:3.0.1'
compileOnly project(':yoga:proguard-annotations')
implementation 'com.google.code.findbugs:jsr305:3.0.1'
implementation project(':yoga:proguard-annotations')
implementation 'com.facebook.soloader:soloader:0.5.1'
testImplementation 'junit:junit:4.12'
testCompile project(':testutil')
testImplementation project(':testutil')
}
task sourcesJar(type: Jar) {

View File

@@ -34,7 +34,7 @@ android {
dependencies {
implementation 'com.facebook.soloader:soloader:0.5.1'
compileOnly 'com.google.code.findbugs:jsr305:3.0.1'
compileOnly project(':yoga:proguard-annotations')
implementation 'com.google.code.findbugs:jsr305:3.0.1'
implementation project(':yoga:proguard-annotations')
}
}