Android Ошибка: не удается разрешить Symbol v7 в android studio - PullRequest
0 голосов
/ 20 января 2020

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

import android.support.v7.app.ActionBarActivity;
public class about extends ActionBarActivity
{
    @Override
    protected void onCreate(Bundle savedInstanceSatte)
    {
        super.onCreate(savedInstanceSatte);
        setContentView(R.layout.about);
    }

Это мой build.gradle (зависимости):

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'com.google.firebase:firebase-analytics:17.2.2'
    testImplementation 'junit:junit:4.13'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}


Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...