1apply plugin: 'com.android.library' 2 3android { 4 defaultConfig { 5 minSdkVersion 21 6 targetSdkVersion 35 7 compileSdkVersion 35 8 9 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 10 } 11 buildTypes { 12 release { 13 minifyEnabled false 14 proguardFiles getDefaultProguardFile('proguard-android-optimize.txt') 15 } 16 } 17 compileOptions { 18 sourceCompatibility JavaVersion.VERSION_18 19 targetCompatibility JavaVersion.VERSION_18 20 } 21 externalNativeBuild { 22 cmake { 23 path 'src/main/cpp/CMakeLists.txt' 24 } 25 } 26 namespace 'com.google.oboe.samples' 27} 28 29dependencies { 30 implementation fileTree(dir: 'libs', include: ['*.jar']) 31 32 implementation 'androidx.appcompat:appcompat:1.7.0' 33} 34