Firebase项目已删除,但在Android Studio中仍显示已连接

时间:2019-01-31 05:43:46

标签: android firebase android-studio android-gradle

我在Android Studio 3.1.3中有一个项目,该项目已与Firebase连接以进行云消息传递。由于某些问题,我从Firebase帐户中删除了该项目,并撤消了Android Studio中的整个过程,例如删除了google json文件,删除了Firebase Gradle文件中的相关依赖项。现在,当我尝试使用Android Studio中的助手使用另一个帐户将项目重新连接到Firebase时,它表明项目已连接,并提示仅同步。我如何将我的项目与新帐户连接。

我的应用程序模块gradle

apply plugin: 'com.android.application'  
apply plugin: 'kotlin-android' .  
apply plugin: 'kotlin-android-extensions'  
apply plugin: 'kotlin-kapt'

ext {
support_version = '26.1.0'
} .  
android {   
compileSdkVersion 26  
buildToolsVersion '27.0.3' .  
defaultConfig {  
    applicationId “in.co.test”  
    minSdkVersion 23  
    targetSdkVersion 26  
    versionCode 4  
    versionName "2.4"   
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"  
    multiDexEnabled true
}  
buildTypes  
{  
    release {
        minifyEnabled true  
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'  
    }  
} 
packagingOptions {  
    exclude 'META-INF/LICENSE.txt' 
    exclude 'META-INF/NOTICE.txt'  
    exclude 'META-INF/LICENSE'  
    exclude 'META-INF/NOTICE'  
}

dataBinding {
    enabled = true
} 
compileOptions {
    targetCompatibility 1.8
    sourceCompatibility 1.8
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')  
implementation "com.android.support:support-v4:$support_version"  
implementation "com.android.support:appcompat-v7:$support_version"  
implementation "com.android.support.constraint:constraint-layout:1.0.2"  
implementation "com.android.support:design:$support_version"  
implementation "com.android.support:support-v4:$support_version"  
implementation "com.andkulikov:transitionseverywhere:1.7.7"  
implementation 'com.github.bumptech.glide:okhttp-integration:4.3.1'  
implementation 'de.hdodenhof:circleimageview:2.2.0'   
annotationProcessor 'com.github.bumptech.glide:compiler:4.3.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"  
kapt 'com.github.bumptech.glide:compiler:4.3.1'  

}
repositories {
mavenCentral()
}

1 个答案:

答案 0 :(得分:1)

感谢@grant的答复。 最后我按照以下步骤解决了:-
1)删除了google-services.json
2)删除了依赖项:

从gradle -project

dependencies{
classpath 'com.google.gms:google-services:3.1.1'classpath 'com.google.gms:google-services:3.1.1'
} 

从gradle-module

dependencies{
implementation 'com.google.firebase:firebase-messaging:11.8.0'
}

删除清单文件中的任何服务类条目,创建扩展的FirebaseInstanceIdService。