I'm trying to reduce my final app size as much as I can and one thing that did that make a huge difference was to use icu's dat file from third_party\externals\icu\flutter, besides that, is there anything more I could do to reduce it even more?
this is how I'm building skia:
bin\gn.exe gen out/android_armeabi-v7a_release --args="ndk=\"C:\Android\Sdk\ndk\21.1.6352462\" target_cpu=\"arm\" cc=\"clang\" cxx=\"clang++\" is_official_build=true is_debug=false skia_use_expat=true skia_use_system_expat=false skia_use_libpng_decode=true skia_use_libpng_encode=true skia_use_system_libpng=false skia_use_libjpeg_turbo_encode=false skia_use_libjpeg_turbo_decode=false skia_use_libwebp_encode=false skia_use_libwebp_decode=false skia_use_harfbuzz=true skia_use_system_harfbuzz=false skia_use_icu=true skia_use_system_icu=false skia_enable_skottie=false skia_enable_pdf=false skia_enable_fontmgr_android=true skia_use_freetype=true skia_use_system_freetype2=false skia_use_zlib=true skia_use_system_zlib=false skia_use_xps=false skia_use_sfntly=false skia_enable_particles=false skia_use_dng_sdk=false skia_use_piex=false skia_enable_skparagraph=true"
Thanks!