| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #!/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 -e
- 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 --check --fail-on-unused-args 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 default
- 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
|