blob: 29b6fc26bb203cbbd9d001daa27f159d41ffec71 [file] [log] [blame]
apply plugin: 'com.android.application'
android {
compileSdkVersion 33
defaultConfig {
applicationId 'com.google.oboe.samples.hellooboe'
minSdkVersion 21
targetSdkVersion 33
versionCode 1
versionName '1.0'
externalNativeBuild {
cmake {
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'
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path 'src/main/cpp/CMakeLists.txt'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':audio-device')
implementation 'androidx.appcompat:appcompat:1.6.0-rc01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
}