I've used Google's vision API to extract text (only English) from any given images in one of my android application. The application fetches every libraries needed, online, only once at the time of installation and then can extract the English text out of an image without the need of the internet after that. Is it possible to achieve the same result with languages other than English? Lately, I came to know about the Google's Cloud Vision API which does support different languages but it requires the internet every time you want to scan images. So, to be precise, I just want to know if I can extract texts of any other languages from an image just adding this line in the app dependencies and if yes, then how?
compile 'com.google.android.gms:play-services-vision:10.0.1'