I\'m trying to use com.google.common.base.Splitter as follows
Iterable segs = Splitter.on(\"/\").split(\"one/two/three/four/five\"); for (Stri
Use the below dependency to fix the issue
To add a dependency on Guava using Maven, use the following:
com.google.guava guava 19.0
To add a dependency using Gradle:
dependencies { compile 'com.google.guava:guava:19.0' }