Hi there,
While typing implementation, runtimeOnly and etc. in build.gradle, I find they
can be changed to comma separated style, as the build.gradle is a groovy file,
for example:
implementation 'xerces:xercesImpl:2.11.0'
implementation 'com.google.zxing:core:3.4.0'
implementation
'com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2'
implementation 'com.googlecode.ez-vcard:ez-vcard:0.9.10'
implementation
'com.googlecode.owasp-java-html-sanitizer:owasp-java-html-sanitizer:1.1'
EQUALS to
implementation 'xerces:xercesImpl:2.11.0',
'com.google.zxing:core:3.4.0',
'com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2',
'com.googlecode.ez-vcard:ez-vcard:0.9.10',
'com.googlecode.owasp-java-html-sanitizer:owasp-java-html-sanitizer:1.1'
Just the same as
int a, b
equals to
int a
int b
What do you think?
Kind Regards,
Shi Jinghai