skia2/modules/androidkit
Kevin Lubick efce17de5d Reland "[includes] Remove link between SkImage.h and SkImageEncoder.h"
This is a reland of commit f60584eb0f

Client changes:
 - https://chromium-review.googlesource.com/c/chromium/src/+/3508565
 - http://cl/433225409
 - http://cl/433450799

Original change's description:
> [includes] Remove link between SkImage.h and SkImageEncoder.h
>
> According to go/chrome-includes [1], this will save about
> 210MB (0.09%) off the Chrome build. http://screen/GVdDaRRneTRuroL
>
> [1] https://commondatastorage.googleapis.com/chromium-browser-clang/include-analysis.html#view=edges&filter=%5Ethird_party%2Fskia%2Finclude%2Fcore%2FSkImage%5C.h%24&sort=asize&reverse=&includer=%5Ethird_party%2Fskia%2Finclude%2Fcore%2FSkImage%5C.h%24&included=&limit=1000
>
> Change-Id: If911ec283a9ce2b07c8509768a6a05446573a215
> Bug: 242216
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/512416
> Reviewed-by: Leon Scroggins <scroggo@google.com>
> Reviewed-by: Brian Osman <brianosman@google.com>
> Commit-Queue: Kevin Lubick <kjlubick@google.com>

Bug: 242216
Change-Id: Ic61e4ac2878e7a51f389312a3a434856e2e32be3
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/518277
Reviewed-by: Leon Scroggins <scroggo@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Kevin Lubick <kjlubick@google.com>
2022-03-10 04:47:51 +00:00
..
src Reland "[includes] Remove link between SkImage.h and SkImageEncoder.h" 2022-03-10 04:47:51 +00:00
README [androidkit] Split Canvas backing store into Surface 2021-04-13 13:56:04 +00:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

AndroidKit is an AAR, or Android Library, that compiles Skia's native code, 
JNI bindings, and Java wrapper classes into a shared library.

BUILDING

1) Through Android Studio
-  Start a project by opening skia/platform_tools/android/apps with Android Studio.
-  Ensure that you're local.properties file is filled out with paths to your 
   Skia out directories. It should look like this:

   sdk.dir=[sdk file path]
   depot_tools.dir=[depot tools file path]
   x86.out.dir=[out file for x86]
   x64.out.dir=[out file for x64]
   arm64.out.dir=[out file for xarm64]
   arm.out.dir=[out file for arm]

-  Click on AndroidKit on the project tree, click Build in the toolbar, and select
   " Make Module 'apps.androidkit' "
-  The AAR will be under the build/outputs/aar directory.

2) Through the terminal
-  Run: platform_tools/android/bin/android_build_app -C  out/[out_dir] androidkit
-  If it builds with no errors, youll find the AAR in the out directory you were building from


LOADING

Before using AndroidKit classes, client applications must explicitly load the native library.
This is usually accomplished via a static class initializer, e.g.

  public class MyApp {
      static {
          System.loadLibrary("androidkit");
      }

      ...
  }