更改后出现的严重错误和错误

时间:2019-01-03 06:49:04

标签: android-studio android-gradle google-play-services

最近,我试图将firebase集成到我在android studio中的第一个项目中,而那些曾经在我的项目中工作的东西突然集成了。

我遇到的错误是在PlaceFragment(用于搜索place)中,在那里所做的更改开始使我无法编译。

请帮助我...我迷路了。

我的build.gradle文件是:

buildscript {
    repositories {
        maven {
            url 'https://maven.google.com'
        }
        maven { url 'https://maven.fabric.io/public' }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'

    }
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

repositories {
    maven { url 'https://maven.fabric.io/public' }
}



android {
    compileSdkVersion 26
    buildToolsVersion '26.0.0'

    defaultConfig {
        multiDexEnabled true
        applicationId "snowf.app.celiguide"
        minSdkVersion 16
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }

    dexOptions
            {
                incremental false
                javaMaxHeapSize "4048M"
                preDexLibraries = false
            }
    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.crashlytics.sdk.android:crashlytics:2.9.4@aar') {
        transitive = true;
    }
    compile 'io.nlopez.smartlocation:library:3.2.9'
    compile 'com.afollestad.material-dialogs:core:0.9.2.3'
    compile 'com.theartofdev.edmodo:android-image-cropper:2.3.+'
    compile 'com.github.jrvansuita:PickImage:2.1.9'
    compile 'me.dm7.barcodescanner:zxing:1.9.8'
    //noinspection GradleCompatible
    compile 'com.android.support:multidex:1.0.0'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    annotationProcessor 'com.jakewharton:butterknife:7.0.1'
    compile 'com.jakewharton:butterknife:7.0.1'
    compile 'com.squareup.retrofit2:retrofit:2.1.0'
    compile 'com.google.code.gson:gson:2.6.1'
    compile 'com.squareup.retrofit2:converter-gson:2.1.0'
    compile 'cn.pedant.sweetalert:library:1.3'
    compile 'de.hdodenhof:circleimageview:2.1.0'
    compile 'com.mcxiaoke.volley:library:1.0.19'
    compile 'com.github.bumptech.glide:glide:3.8.0'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.kaopiz:kprogresshud:1.1.0'
    //  compile 'com.google.firebase:firebase-messaging:10.0.1'
    annotationProcessor 'io.realm:realm-android:0.87.4'
    compile 'io.realm:realm-android:0.87.4'
    compile 'me.relex:circleindicator:1.2.2@aar'
    compile 'com.andkulikov:transitionseverywhere:1.7.9'
    compile 'com.android.support:appcompat-v7:26.0.0-alpha1'
    compile 'com.android.support:design:26.0.0-alpha1'
    compile 'com.android.support:cardview-v7:26.0.0-alpha1'
    compile 'com.google.android.gms:play-services-maps:10.0.1'
    compile 'com.google.android.gms:play-services:10.2.1'
    compile 'com.orhanobut:dialogplus:1.11@aar'
    compile 'com.github.jaredrummler:Material-Spinner:1.0.8'
    testCompile 'junit:junit:4.12'
}

我得到的错误是“错误:找不到符号类ID”。

谢谢。

罗马

2 个答案:

答案 0 :(得分:0)

基于此thread,该错误表示 您的Java源代码有问题,或者您的编译方式有问题。也是从这个page

  

Cannot find symbol错误的一般原因如下:

     
      
  • 拼写错误。
  •   
  • 错误的情况。晕与晕不同。
  •   
  • 不正确使用可接受的标识符值(字母,数字,下划线,美元符号),my-class与myclass不同。
  •   
  • 没有变量声明或变量在您引用它的范围之外。
  •   

答案 1 :(得分:0)

解决了!原因是gradle中Google Play实施中的版本不同。当我设置相同的版本号时,该问题消失了