This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Android] add data record [Android] add build script for build runtime-jss.so
- Loading branch information
zhongcang
committed
Jul 4, 2019
1 parent
d702306
commit ebb943a
Showing
4 changed files
with
31 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
echo "--> # buils jsc_runtime so" | ||
|
||
|
||
../gradlew assembleRelease -PbuildRuntimeApi=true | ||
|
||
|
||
echo "--> ## cp jss_runtime so" | ||
|
||
unzip -o build/outputs/aar/weex_sdk-release.aar -d build/outputs/aar/weex_sdk-release | ||
|
||
|
||
cp build/outputs/aar/weex_sdk-release/jni/armeabi-v7a/libweexjss.so libs/armeabi-v7a/libweexjssr.so | ||
cp build/outputs/aar/weex_sdk-release/jni/arm64-v8a/libweexjss.so libs/arm64-v8a/libweexjssr.so | ||
cp build/outputs/aar/weex_sdk-release/jni/x86/libweexjss.so libs/x86/libweexjssr.so | ||
|
||
|
||
echo "--> ## cp jss_runtime Symbol so" | ||
|
||
rm -rf unstrippedSo | ||
mkdir unstrippedSo | ||
|
||
cp build/unstrippedSo/armeabi-v7a_libweexjss.so unstrippedSo/armeabi-v7a_libweexjssr.so | ||
cp build/unstrippedSo/arm64-v8a_libweexjss.so unstrippedSo/arm64-v8a_libweexjssr.so | ||
cp build/unstrippedSo/x86_libweexjss.so unstrippedSo/x86_libweexjssr.so |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.