Open hosaaam opened 2 weeks ago
@hosaaam have you found any workaround? I am stuck with this error as well.
For a workaround, you can use this in your android/build.gradle
file.
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
afterEvaluate {
// check if `android` block is available and namespace isn't set
if(it.hasProperty('android') && it.android.namespace == null){
def manifest = new XmlSlurper().parse(file(it.android.sourceSets.main.manifest.srcFile))
def packageName = manifest.@package.text()
android.namespace= packageName
}
}
}
facing same issue , will clone and apply fix
i have create pull request and waiting for approval .
meanwhile you can use updated reference to my pacakge code
replace
video_thumbnail: your_version_of_package
with
video_thumbnail: git: url: https://github.com/Shahidbangash/video_thumbnail.git ref: master
while i build my project i got his error A problem occurred configuring project ':video_thumbnail'.