Skip to content

Commit d25993c

Browse files
committed
Copy in prefab build scripts and bump version to 1.4.3
1 parent 9fba183 commit d25993c

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

build_all_android.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# Script to build Oboe for multiple Android ABIs and prepare them for distribution
15+
# Script to build Oboe for multiple Android ABIs and prepare them for distribution
1616
# via Prefab (github.com/google/prefab)
1717
#
1818
# Ensure that ANDROID_NDK environment variable is set to your Android NDK location
@@ -29,6 +29,7 @@ fi
2929
BUILD_DIR=build
3030

3131
CMAKE_ARGS="-H. \
32+
-DBUILD_SHARED_LIBS=true \
3233
-DCMAKE_BUILD_TYPE=Release \
3334
-DANDROID_TOOLCHAIN=clang \
3435
-DANDROID_STL=c++_shared \
@@ -65,4 +66,4 @@ build_oboe x86_64 21
6566
# Currently unsupported ABIs
6667
# build_oboe armeabi 16 - This was deprecated in Android 16 and removed in 17
6768
# build_oboe mips 21 - This was deprecated in Android 16 and removed in 17
68-
# build_oboe mips64
69+
# build_oboe mips64

include/oboe/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
#define OBOE_VERSION_MINOR 4
3838

3939
// Type: 16-bit unsigned int. Min value: 0 Max value: 65535. See below for description.
40-
#define OBOE_VERSION_PATCH 2
40+
#define OBOE_VERSION_PATCH 3
4141

4242
#define OBOE_STRINGIFY(x) #x
4343
#define OBOE_TOSTRING(x) OBOE_STRINGIFY(x)

prefab/oboe-VERSION.pom

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
44
<groupId>com.google.oboe</groupId>
55
<artifactId>oboe</artifactId>
6-
<version>1.3.0</version>
6+
<version>VERSION</version>
77
<packaging>aar</packaging>
88
<name>oboe</name>
99
<description>The AAR for Oboe.</description>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"schema_version": 1,
33
"name": "oboe",
4-
"version": "1.3.0",
4+
"version": "VERSION",
55
"dependencies": []
6-
}
6+
}

0 commit comments

Comments
 (0)