plugins { id("com.android.library") id("zcash.android-build-conventions") id("kotlin-android") id("kotlin-kapt") } android { defaultConfig { //targetSdk = 30 //Integer.parseInt(project.property("targetSdkVersion")) multiDexEnabled = true } // Need to figure out how to move this into the build-conventions kotlinOptions { jvmTarget = libs.versions.java.get() allWarningsAsErrors = project.property("IS_TREAT_WARNINGS_AS_ERRORS").toString().toBoolean() } } dependencies { implementation(projects.sdkLib) implementation(libs.kotlin.stdlib) implementation(libs.kotlinx.coroutines.core) implementation(libs.kotlinx.coroutines.android) implementation(libs.androidx.multidex) implementation(libs.bundles.grpc) androidTestImplementation(libs.bundles.androidx.test) androidTestImplementation(libs.zcashwalletplgn) androidTestImplementation(libs.bip39) }