From 945b6048da9e6aa2f4537902ba511e96ad402173 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 (flutter/engine#3531) --- engine/src/flutter/shell/platform/android/BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/src/flutter/shell/platform/android/BUILD.gn b/engine/src/flutter/shell/platform/android/BUILD.gn index f01b77b4d3c..f7af4153207 100644 --- a/engine/src/flutter/shell/platform/android/BUILD.gn +++ b/engine/src/flutter/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", ]