From 2ffab0397bbda93124855dfdf2c6d8c013269a64 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Mon, 27 Mar 2017 17:52:12 -0700 Subject: [PATCH] Package the stripped build of libflutter.so inside flutter.jar (#3531) --- shell/platform/android/BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/platform/android/BUILD.gn b/shell/platform/android/BUILD.gn index f01b77b4d3c..f7af4153207 100644 --- a/shell/platform/android/BUILD.gn +++ b/shell/platform/android/BUILD.gn @@ -131,7 +131,7 @@ action("android") { inputs = [ "$root_build_dir/flutter_java.jar", - "$root_build_dir/libflutter.so", + "$root_build_dir/lib.stripped/libflutter.so", "$root_build_dir/flutter_shell_assets/icudtl.dat", ] @@ -147,7 +147,7 @@ action("android") { "--asset_dir", rebase_path("flutter_shell_assets", root_build_dir, root_build_dir), "--native_lib", - rebase_path("libflutter.so", root_build_dir, root_build_dir), + rebase_path("lib.stripped/libflutter.so", root_build_dir, root_build_dir), "--android_abi", "$android_app_abi", ]