Reputation: 21
I have an error "Cannot resolve symbol 'WifiNetworkSpecifier'". Import is not found, path in the documentation dont exist. I tried to rebuild project, invalidate caches. What should i do?
Upvotes: 1
Views: 875
Reputation: 31
Go to build.gradle(app) and update below
android {
compileSdkVersion 29
buildToolsVersion "29.0.2
}
defaultConfig {
targetSdkVersion 29
}
Upvotes: 1