aboutsummaryrefslogtreecommitdiff
path: root/prefab_build.sh
blob: 6da515a09d3ce9ebda67f42e59cfea91ce02ab50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/bin/bash

# Test that the prefab binary exists
if hash prefab 2>/dev/null; then
  echo "Prefab is installed"
else
  echo "Prefab binary not found. See https://github.com/google/prefab for install instructions"
  exit 1
fi

# Get the version string from the source
major=$(grep "#define OBOE_VERSION_MAJOR" include/oboe/Version.h | cut -d' ' -f3)
minor=$(grep "#define OBOE_VERSION_MINOR" include/oboe/Version.h | cut -d' ' -f3)
patch=$(grep "#define OBOE_VERSION_PATCH" include/oboe/Version.h | cut -d' ' -f3)
version=$major"."$minor"."$patch

echo "Building libraries for Oboe version "$version
./build_all_android.sh

mkdir -p build/prefab
cp -R prefab/* build/prefab

ABIS=("x86" "x86_64" "arm64-v8a" "armeabi-v7a")

pushd build/prefab

  # Remove .DS_Store files as these will cause the prefab verification to fail
  find . -name ".DS_Store" -delete

  # Write the version number into the various metadata files
  mv oboe-VERSION oboe-$version
  mv oboe-VERSION.pom oboe-$version.pom
  sed -i '' -e "s/VERSION/${version}/g" oboe-$version.pom oboe-$version/prefab/prefab.json

  # Copy the headers
  cp -R ../../include oboe-$version/prefab/modules/oboe/

  # Copy the libraries
  for abi in ${ABIS[@]}
  do
    echo "Copying the ${abi} library"
    cp -v "../${abi}/liboboe.so" "oboe-${version}/prefab/modules/oboe/libs/android.${abi}/"
  done

  # Verify the prefab packages
  for abi in ${ABIS[@]}
  do

    prefab --build-system cmake --platform android --os-version 29 \
        --stl c++_shared --ndk-version 21 --abi ${abi} \
        --output prefab-output-tmp $(pwd)/oboe-${version}/prefab

    result=$?; if [[ $result == 0 ]]; then
      echo "${abi} package verified"
    else
      echo "${abi} package verification failed"
      exit 1
    fi
  done

  # Zip into an AAR and move into parent dir
  pushd oboe-${version}
    zip -r oboe-${version}.aar . 2>/dev/null;
    zip -Tv oboe-${version}.aar 2>/dev/null;

    # Verify that the aar contents are correct (see output below to verify)
    result=$?; if [[ $result == 0 ]]; then
      echo "AAR verified"
    else
      echo "AAR verification failed"
      exit 1
    fi

    mv oboe-${version}.aar ..
  popd

  # Zip the .aar and .pom files into a maven package
  zip oboe-${version}.zip oboe-${version}.* 2>/dev/null;
  zip -Tv oboe-${version}.zip 2>/dev/null;

  # Verify that the zip contents are correct (see output below to verify)
  result=$?; if [[ $result == 0 ]]; then
    echo "Zip verified"
  else
    echo "Zip verification failed"
    exit 1
  fi
popd

echo "Prefab zip ready for deployment: ./build/prefab/oboe-${version}.zip"