aboutsummaryrefslogtreecommitdiff
path: root/samples/hello-oboe/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'samples/hello-oboe/build.gradle')
-rw-r--r--samples/hello-oboe/build.gradle10
1 files changed, 5 insertions, 5 deletions
diff --git a/samples/hello-oboe/build.gradle b/samples/hello-oboe/build.gradle
index c4577614..29b6fc26 100644
--- a/samples/hello-oboe/build.gradle
+++ b/samples/hello-oboe/build.gradle
@@ -1,17 +1,17 @@
apply plugin: 'com.android.application'
android {
- compileSdkVersion 28
+ compileSdkVersion 33
defaultConfig {
applicationId 'com.google.oboe.samples.hellooboe'
- minSdkVersion 16
- targetSdkVersion 28
+ minSdkVersion 21
+ targetSdkVersion 33
versionCode 1
versionName '1.0'
externalNativeBuild {
cmake {
- cppFlags "-std=c++14"
+ cppFlags "-std=c++17"
arguments '-DANDROID_STL=c++_static'
// armeabi and mips are deprecated in NDK r16 so we don't want to build for them
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
@@ -35,6 +35,6 @@ android {
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':audio-device')
- implementation 'androidx.appcompat:appcompat:1.0.0-rc02'
+ implementation 'androidx.appcompat:appcompat:1.6.0-rc01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
}