- This cuts down on the size of the binding dll
and the installed apk.
- Similar to what I tried on iOS with commit
1118ac7f07
create our own dynamic library that references
all the prebuilt static archives for skia and
let the linker do the work of removing all the
symbols that we do not use.
- Created a libskia_ios xcode project to be the embedded framework
- Changed the binding to use the new embedded framework
The theory is that we can rely on the xcode linker to strip out the
symbols that are not referenced in the c api. If a new c file is added
to skia core we will have to change libskia_ios/SkiaKeeper.c to reference
one of the methods in that file.
From what I can tell it works pretty well. Now the iOS binding is only 7MB
and that is all that is added to the size of the release iphone app size.
- Android binding project created
- Using the system skia. Need to build the Android version.
The system skia is not working on all devices. Guessing you
need Android M.
- Android Forms sample hooked up
- Moved the upper left matrix change to the iOS
native view. Otherwise Android has to apply it twice.