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:
Mats Wahlberg 2020-06-20 12:25:16 +02:00
parent 3271d7628f
commit 30268d73d1
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ dependencies {
api "com.google.android.support:wearable:$wearableSupportVersion"
compileOnly "com.google.android.wearable:wearable:$wearableSupportVersion"
} 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"
}