I wanted to use StanfordCoreNLP library in my android app . So i have imported the .jar files using the following dependencies in my gradle.build file . These are my gradle dependencies
The Files are imported properly but many of the files in the .jar file have ':' character in their names which the android studio wont accept .You can see the names here . Filenames with invalid characters in .jar file
So i got an error as below when i tried to make the project . com.android.build.api.transform.TransformException: java.nio.file.InvalidPathException: Illegal char <:> at index 43: edu/stanford/nlp/models/kbp/tokensregex/org:founded_by.rules
And the homepage of stanfordCoreNLP says that the lib works fine with utf-8 encoding but it is'nt .Encoding snippet from homepage
So does anyone have an idea how to make android studio accept the ':' character . Thanks in advance for any help .