41 lines
1.1 KiB
Groovy
41 lines
1.1 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
applicationId 'com.google.oboe.samples.hellooboe'
|
|
minSdkVersion 16
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName '1.0'
|
|
externalNativeBuild {
|
|
cmake {
|
|
cppFlags "-std=c++14"
|
|
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.0.0-rc02'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
}
|