com.google.android.material.R Не удается разрешить символ 'R' для BottomNavigationView
Я использую BottomNavigationView в своем приложении, но у меня проблема: в BottomNavigationView.java есть import com.google.android.material.R, а R красный и пишет "Невозможно разрешить символ 'R'". Темы, которые я видел, не могли мне помочь.
Что бы вы мне посоветовали?
Зависимости:
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
defaultConfig {
applicationId "com.example.yourspeakingclub"
minSdkVersion 24
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
sourceSets {
main {
java.srcDirs = ['src/main/java', 'src/main/java/Models', 'src/main/java/com/salendor/yourspeakingclub/models']
}
}
buildToolsVersion = '28.0.3'
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.android.support:support-compat'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
implementation 'com.google.android.gms:play-services-maps:17.0.0'
testImplementation 'junit:junit:4.13-beta-3'
androidTestImplementation 'androidx.test:runner:1.3.0-alpha02'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha02'
implementation 'com.google.android.material:material:1.1.0-beta01'
}
Расположение:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/navigation_container_id"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="?android:attr/actionBarSize">
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/navigation_element"
android:layout_width="wrap_content"
android:layout_height="56dp"
android:layout_gravity="start"
android:background="?android:attr/windowBackground"
app:itemTextColor="#000000"
app:labelVisibilityMode="unlabeled"
app:itemIconTint="@color/colorBlack"
app:menu="@menu/bottom_menu" />
</FrameLayout>
Определение класса, в котором возникла проблема с R, доступно здесь: https://github.com/material-components/material-components-android/blob/master/lib/java/com/google/android/material/bottomnavigation/BottomNavigationView.java
Спасибо
3 ответа
У меня возникла эта проблема, когда я обновил Gradle до последней версии. Когда вернулся на версию 3.1.3 ошибка просто исчезла
измените это в своем build.graddle (проекте)
classpath 'com.android.tools.build:gradle:3.1.3'
Ошибка должна быть устранена нажатием Alt+Enter и добавлением правильного импорта. Но я предполагаю, что эта проблема возникла из ниоткуда после того, как вы уже построили и запустили проект хотя бы один раз (как однажды случилось со мной). Это может быть связано с тем, что вы не можете ссылаться на элементы макета XML. В этом случае попробуйте:
Сборка -> Чистый проект
. Это решило мою проблему. Надеюсь, вам это тоже поможет :)
У меня такая же проблема. Просто обновил этот инструмент в файле build.graddle (проект)
classpath 'com.android.tools.build:gradle:4.1.0'
и это сработало!!