Has someone had any success in using Shadow Gradle Plugin to generate AAR? I am getting an error Could not find method shadowJar()
. This is my configuration
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'com.github.johnrengelman.shadow' version '6.0.0'
}
android { ... }
shadowJar {
baseName = 'shadow'
classifier = ''
archiveVersion = ''
}