Created by: DannyIsFunny
[Issue] Static library in v2.6.0 Android compiling result is verified unusable. When we tried to link libpaddle_api_light_bundled.a
,
error message listed below will appear:
could not read symbols: Archive has no index;
[Reason] After compiling, we stripped libpaddle_api_light_bundled.a
to decrease its size, which is proved reason of this error, because some necessary symbols are striped.
[Works of this Pull Request] We discarded striping of this static library, since the size of static library will not be added into the app's size directly, this modification has little impact on resulted app size. After merging this PR, static library is tested to be usable.