I want to extend Android 2.3 Keyboard(LatinIme). I get source code from http://android.git.kernel.org/?p=platform/packages/inputmethods/LatinIME.git;a=summary After fixing some errors(missed classes) and packages rename, i can install it as bonus keyboard. But it doesn't work.

I see: ERROR/AndroidRuntime(23089): Caused by: java.lang.NoClassDefFoundError: com.android.inputmethod.latin.BinaryDictionary

but name of my package is com.keyboard.latin and i delete all links to this missed class.

Can someone give me an advice how to solve this problem?

link|improve this question
Very hard to answer without seeing the code, but note that the native C++ code also has a reference to it, in native/jni/com_android_inputmethod_latin_BinaryDictionary.cpp : const char* const kClassPathName = "com/android/inputmethod/latin/BinaryDictionary"; – johusman Feb 24 '11 at 7:29
You are completely right. By change this link and recompile native classes I solve this problem. – user631814 Feb 26 '11 at 4:44
feedback

1 Answer

You can take some inspiration from scandinavian-keyboard, it solves similar issue (I think it's Eclair or Froyo though, not updated to work with Gingerbread). It reimplements missing parts. If you look at its sources you'll see classes like Dictionary, UserDictionaryProvider etc. There's some C code too.

link|improve this answer
Missed classes really not a problem. Easy to find it using Google. – user631814 Feb 26 '11 at 4:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.