Недостающие библиотеки и другое содержимое из файла Gradle - PullRequest
0 голосов
/ 17 января 2019

Я получаю сообщение об ошибке R файла и при открытии 'build.Gradle' . Я получил это в файле, и все библиотеки исчезли.

Я попытался очистить кэш и перезапустить Android Studio.

Пожалуйста, помогите мне выйти из этой ситуации.

/*
 * Copyright 2011 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.gradle.api.artifacts;

/**
 * Unsuccessfully resolved dependency.
 */
public interface UnresolvedDependency {
    /**
     * The module selector of the dependency.
     *
     * @since 1.1-rc-1
     */
    ModuleVersionSelector getSelector();

    /**
     * the exception that is the cause of unresolved state
     */
    Throwable getProblem();
}

1 Ответ

0 голосов
/ 17 января 2019
android.enableBuildCache=false

к свойствам gradle.

или попробуйте это

dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...