-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[android] build the Android App in GH jobs (#3340)
* [android] build the Android App in GH jobs * separate build steps & use only JDK 8 * using 'TARGET_CPU' for ot-commissioner script * add a build script for Android App * fix typo in GH job name * fix style issues * add gradle build * remove JAVA_HOME check * Android SDK Agreements * update README
- Loading branch information
Showing
4 changed files
with
92 additions
and
46 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
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,47 @@ | ||
#!/usr/bin/env bash | ||
|
||
# | ||
# Copyright (c) 2020 Project CHIP Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
set -x | ||
env | ||
|
||
if [ -z "$ANDROID_HOME" ]; then | ||
echo "ANDROID_HOME not set!" | ||
exit 1 | ||
fi | ||
|
||
if [ -z "$ANDROID_NDK_HOME" ]; then | ||
echo "ANDROID_NDK_HOME not set!" | ||
exit 1 | ||
fi | ||
|
||
if [ -z "$TARGET_CPU" ]; then | ||
echo "TARGET_CPU not set! Candidates: arm, arm64, x86 and x64." | ||
exit 1 | ||
fi | ||
|
||
# Build shared CHIP libs | ||
source scripts/activate.sh | ||
gn gen out/"android_$TARGET_CPU" --args="target_os=\"android\" target_cpu=\"$TARGET_CPU\" android_ndk_root=\"$ANDROID_NDK_HOME\" android_sdk_root=\"$ANDROID_HOME\"" | ||
ninja -C out/"android_$TARGET_CPU" src/setup_payload/java src/controller/java | ||
|
||
rsync -a out/"android_$TARGET_CPU"/lib/*.jar src/android/CHIPTool/app/libs | ||
rsync -a out/"android_$TARGET_CPU"/lib/jni/* src/android/CHIPTool/app/src/main/jniLibs | ||
|
||
# Build ot-commissioner libs | ||
git submodule update --init --recursive third_party/ot-commissioner/repo | ||
TARGET_CPU=arm64 ./third_party/ot-commissioner/build-android-libs.sh |
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