summaryrefslogtreecommitdiff
path: root/core/build.gradle
diff options
context:
space:
mode:
authorMats Wahlberg <rcxslinger@gmail.com>2020-06-20 12:25:16 +0200
committerMats Wahlberg <rcxslinger@gmail.com>2020-09-30 13:52:31 +0200
commit30268d73d1a309467b2d183ec276fd4ff672b386 (patch)
tree3b2b85f32fdc364e3f5751e310719b4d294d151e /core/build.gradle
parent3271d7628fd62d3e26c150ae26fc095d24c6fa37 (diff)
downloadAntennaPod-30268d73d1a309467b2d183ec276fd4ff672b386.zip
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.
Diffstat (limited to 'core/build.gradle')
-rw-r--r--core/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/build.gradle b/core/build.gradle
index ee7441550..e2ee3a0bd 100644
--- a/core/build.gradle
+++ b/core/build.gradle
@@ -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"
}