I want a fat-aar plugin for my Android Library. I was using kezong in order to deliver x86_64 and amr64 code in the same arr, but kezong is not maintained and it's not working with gradle 8.0 .
So I tried to update kezong from the source on github. Notice that I am not very familiar with gradle and groovy, so I am trying, but maybe I make big mistakes doing this.
I first removed this plugins because it seems deprecated :
//apply plugin: 'kotlin-android-extensions'
and then I added:
viewBinding = true
I also removed classifier because it seems not working.
task sourcesJar(type: Jar) {
from sourceSets.main.allJava
classifier = 'sources'
//classifier = 'sources'
}
I am trying to build example and launch it which was working with gradle 7.2. But no luck with grdale 8.0.
Now I have another issue saying:
A problem occurred configuring project ':lib-main'.
Task with name 'transformClassesWithTransformRForFlavor1Debug' not found in project ':lib-main'.
Do you think I broke something disabling kotlin-android-extensions or maybe it's because I removed classifier or this is something else ?
Thanks!