I just create a new project in flutter with flutter create , but when I want to run the project I have errors.
‘I have reinstalled the visual code, android studio, I create the emulator with all the downloads, but nothing ….
this is the code.’
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}
‘And I have this error’
‘Build file ‘C:UsersDanFlutter Projectscasa1androidbuild.gradle’ line: 13′
‘* What went wrong:’
‘A problem occurred evaluating root project ‘android’.’
‘> Build completed with 1 failures.’
‘> org/bouncycastle/jce/provider/BouncyCastleProvider’
DanUngureanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.