Здравствуйте. После обновления Android Studio до 3.3.2
я получаю эту ошибку при каждом запуске приложения:
Could not set unknown property 'localProperties' for project ':app' of type org.gradle.api.Project
Мой build.gradle
:
testInstrumentationRunnerdef localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}