rmtheis / tess-two

Fork of Tesseract Tools for Android
Apache License 2.0
3.76k stars 1.38k forks source link

can't resolve symbol 'IOcr' in OCR.java #128

Closed lytasky closed 8 years ago

lytasky commented 8 years ago

in library eyes-two : can't resolve symbol 'IOcr' in OCR.java

Kadrei commented 8 years ago

that might be related to your project structure. When you use Android Studio then IOCr wont be recognized by AS afair, because IOCr is an .aidl-File.

Adding something like

aidl.srcDirs = ['src']

to your build.gradle should fix that

lytasky commented 8 years ago

thank you