plugins { id "com.android.application" id "kotlin-android" // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins. id "dev.flutter.flutter-gradle-plugin" } android { namespace = "com.icing.dialer" compileSdk = flutter.compileSdkVersion ndkVersion = flutter.ndkVersion compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = JavaVersion.VERSION_17 } defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId = "com.icing.dialer" // You can update the following values to match your application needs. // For more information, see: https://flutter.dev/to/review-gradle-config. minSdk = 23 targetSdk = flutter.targetSdkVersion versionCode = flutter.versionCode versionName = flutter.versionName } buildTypes { release { // TODO: Add your own signing config for the release build. // Signing with the debug keys for now, so `flutter run --release` works. signingConfig = signingConfigs.debug } } } flutter { source = "../.." } dependencies { implementation files('libs/noise-java-1.0.jar') // Audio processing and DSP implementation 'com.github.wendykierp:JTransforms:3.1' // Apache Commons Math for signal processing implementation 'org.apache.commons:commons-math3:3.6.1' // Audio codec - Opus for Android implementation 'com.github.theeasiestway:android-opus-codec:1.0.3' // Kotlin Coroutines for async processing implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3' }