当前位置: 首页 > 知识库问答 >
问题:

无法解析模块中的符号“r”

朱啸
2023-03-14

我终于要从Eclipse迁移到Android Studio,连一个小模块都连不上了。

这里是参考资料中唯一的文件--正如您可以通过屏幕截图看到的,这里没有错误

但在需要它的类中,r'没有解析。所以我很困惑--没有太多东西要查

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.mobeta.android.dslv"
    android:versionCode="4"
    android:versionName="0.6.1">
    <uses-sdk android:targetSdkVersion="7"
        android:minSdkVersion="7" />
</manifest>
apply plugin: 'com.android.library'

android {
    compileSdkVersion 25
    buildToolsVersion "24.0.2"

    defaultConfig {
        minSdkVersion 9
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.0.0'
    compile files('libs/android-support-v4.jar')
    testCompile 'junit:junit:4.12'
}

共有1个答案

金旺
2023-03-14

点击构建->重建项目,然后点击工具->Android->Sync Project with Gradle Files。

您可以在此查阅

 类似资料:
  • 返回错误: 无法解析符号模块1 有什么建议可以解决这个错误吗?

  • 所有类似问题的答案都是关于手动编辑分级文件的。但是我已经使用Android Studio导入AAR文件,并检查了build.gradle文件,它们看起来都是正确的。 我的问题是: 我已经导入了ShowCaseViewV5.0.0AAR,但是当我试图导入tutorial.java文件中的类(您可以看到红色的)时,Android Studio无法识别这些类。Android Studio唯一识别的导入是

  • 代码运行,但无法获得函数、类等的建议。 谢谢

  • 我目前正在构建一个ASP.NET5(ASP.NET Core1.0)MVC应用程序。我使用的是Visual Studio 2015和ReSharper Ultimate 10.0.2。 我目前有一个2层解决方案,由(web应用程序)和层组成。对层有一个引用。 当ReSharper挂起时,层中的类能够从层调用对象,如下所示: null 任何帮助都很感激。

  • 我收到这个编译器错误:无法解析符号“R”。我知道这个问题可能看起来很熟悉,但与此问题相关的许多其他问题说,尽管有错误,但代码可以编译,而我的代码不能,或者可以通过清理项目和/或重新启动Android Studio(我使用0.8.6)来解决问题,而在我的情况下,这不起作用。导入类解决了编译器错误,但在我启动活动时导致我的应用程序崩溃。包含错误的. java代码是: 我还了解到,这可能是由布局错误引起