Мой AppCompatActivity не работает. почему так? - PullRequest
0 голосов
/ 24 января 2020

Я работал над проектом, появилась следующая ошибка:

ОШИБКА: Не удалось разрешить: com. android .support: design: 29.3.0 Добавить репозиторий и синхронизацию Google Maven c проект Показать в диалоговом окне "Структура проекта" Затронутые модули: приложение ОШИБКА: не удалось разрешить: com. android .support: appcompat-v7: 29.3.0 Добавить репозиторий Google Maven и синхронизировать c проект Показать в диалоговом окне "Структура проекта" Затрагиваемые модули : app

Вот код для XML:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/tan_background"
    android:orientation="vertical"
    tools:context="com.example.android.miwok.MainActivity">

    <TextView
        android:id="@+id/numbers"
        style="@style/CategoryStyle"
        android:background="@color/category_numbers"
        android:text="@string/category_numbers" />

    <TextView
        android:id="@+id/family"
        style="@style/CategoryStyle"
        android:background="@color/category_family"
        android:text="@string/category_family" />

    <TextView
        android:id="@+id/colors"
        style="@style/CategoryStyle"
        android:background="@color/category_colors"
        android:text="@string/category_colors" />

    <TextView
        android:id="@+id/phrases"
        style="@style/CategoryStyle"
        android:background="@color/category_phrases"
        android:text="@string/category_phrases" />

</LinearLayout>

И Java:

package com.example.android.myprejoct;

import android.os.Bundle;
import androidx.annotation.*;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

Что мне делать?

1 Ответ

0 голосов
/ 24 января 2020

Добавьте эту строку в файл Gradle

allprojects {
    repositories {
        google()

        // If you're using a version of Gradle lower than 4.1, you must
        // instead use:
        //
        // maven {
        //     url 'https://maven.google.com'
        // }
    }
}

Надеюсь, это сработает!

...