Build Android LatinIME

I want to make some changes to LatinIME. So I cloned this Repo LatinIME and made them.

Now I noticed that I need to build this in AOSP, because there are dependencies.

My problem is that I only want to create LatinIME (with dependencies), but without creating and cloning the entire AOSP.

I do not want to download and build the entire AOSP, as described here .

Is there any way to do this?

Change I found the following solutions.

  • Create inside AOSP and create a specific module with mmm macro. (This only creates the module and its dependencies.)
  • Build a toolchain application and use ready-made libraries extracted from pre-created AOSP.
+4
source share
2 answers

I found the following solutions.

  • Create inside AOSP and create a specific module with mmm macro. (This only creates the module and its dependencies.)
  • Build a toolchain application and use ready-made libraries extracted from pre-created AOSP.
0
source

Source: https://habr.com/ru/post/1484289/


All Articles