Cleaned up string to println in core/build.gradle
Variable can be used and gets replaced directly in the string without using '+' to concatenate strings.
This commit is contained in:
parent
3271d7628f
commit
30268d73d1
|
@ -88,7 +88,7 @@ dependencies {
|
||||||
api "com.google.android.support:wearable:$wearableSupportVersion"
|
api "com.google.android.support:wearable:$wearableSupportVersion"
|
||||||
compileOnly "com.google.android.wearable:wearable:$wearableSupportVersion"
|
compileOnly "com.google.android.wearable:wearable:$wearableSupportVersion"
|
||||||
} else {
|
} else {
|
||||||
System.out.println("core: free build hack, skipping some dependencies and bundling conscrypt ("+"$conscryptVersion"+")")
|
System.out.println("core: free build hack, skipping some dependencies and bundling conscrypt ($conscryptVersion)")
|
||||||
implementation "org.conscrypt:conscrypt-android:$conscryptVersion"
|
implementation "org.conscrypt:conscrypt-android:$conscryptVersion"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue