apply plugin: 'com.android.library' apply plugin: 'kotlin-android' apply plugin: 'maven-publish' android { compileSdkVersion 32 defaultConfig { minSdkVersion 16 targetSdkVersion 32 } buildTypes { release { minifyEnabled false consumerProguardFiles 'proguard-rules.pro' } } namespace 'com.pedro.encoder' } dependencies { api 'androidx.annotation:annotation:1.3.0' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" }