Can't publish on jitpack

Solution 1:

In jitpack log you can see why jitpack can't publish your library. Just delete some part of your code because of jitpack error.

Cannot get the value of write-only property 'publishNonDefault' for object of type com.android.build.gradle.LibraryExtension.

if( android.publishNonDefault && variant.name == android.defaultPublishConfig ) {
                def bundleTask = tasks["bundle${name.capitalize()}"]
                artifacts {
                    archives(bundleTask.archivePath) {
                        classifier null
                        builtBy bundleTask
                    }
                }
            }
        }
    }

Then jitpack do not show the error when publishing your library. Works like a charm. To publish your library just realese once again then publish your libary.

I just made it for you as an example see the repository which I forked from you here https://github.com/markizdeviler/Busybox