honeywell_scanner icon indicating copy to clipboard operation
honeywell_scanner copied to clipboard

Could not resolve all files for configuration ':app:debugRuntimeClasspath'.

Open StatTark opened this issue 2 years ago • 1 comments

Hello, I am getting this error even though I fulfill all the installation conditions. I did the same with everything in the example section in the GitHub account.The screenshot of the error message I received is as follows.

image

setting.gradle file

include ':app'
include ':honeywell'

def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
def properties = new Properties()

assert localPropertiesFile.exists()
localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }

def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"

folder structure image version honeywell_scanner: ^4.0.0+14

StatTark avatar Feb 11 '23 09:02 StatTark