因此,我经历了许多stackoverflow答案,并尝试将其应用到我的代码中,但仍然找不到此错误的解决方法。此外,仅当我尝试仅运行应用程序时,才会发生此错误。我可以毫无问题地构建项目。
所以这是我遇到的错误。
std::reference_wrapper
此外,我也得到警告
error: cannot access zzbgl class file for com.google.android.gms.internal.zzbgl not found
到目前为止,我尝试更改版本和注释,还添加和删除依赖项,但仍然无法找到解决方案。希望有人可以在这里帮助我。
这是我的Gradle APP级别文件
D:\FinalProject\app\src\main\java\com\example\www\mytaxiapp\Welcome.java:
uses or overrides a deprecated API.
Recompile with -Xlint:deprecation for details.
我的Welcome.class文件导入
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.www.mytaxiapp"
minSdkVersion 16
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.github.glomadrian:MaterialAnimatedSwitch:1.1@aar'
implementation 'com.firebase:geofire-android:2.1.2'
implementation 'com.github.d-max:spots-dialog:0.7@aar'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0-rc02'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.google.android.gms:play-services-maps:12.0.1'
implementation 'com.google.android.gms:play-services:12.0.1'
implementation 'com.google.android.gms:play-services-location:12.0.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.android.support:design:27.1.0'
//Add Library
implementation 'uk.co.chrisjenx:calligraphy:2.3.0'
implementation 'com.rengwuxian.materialedittext:library:2.1.4'
implementation 'com.android.support:design:26.+'
implementation 'com.android.support:cardview-v7:26.+'
implementation 'com.google.firebase:firebase-database:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.1'
}
apply plugin: 'com.google.gms.google-services'
答案 0 :(得分:0)
Google GMS有很大的依赖性。您可以尝试启用multidex(将以下行添加到defaultConfig:
defaultConfig {
...
multiDexEnabled true
...
}
如果您定位的是较低版本的Android,则可能需要包含support-Multidex作为依赖项:
implementation 'com.android.support:multidex:1.0.3'
在这种情况下,您应在覆盖attachBaseContext的同时添加一个Application-class:
@Override
protected void attachBaseContext(Context base) {
MultiDex.install(this);
super.attachBaseContext(base);
}
请不要忘记清晰的项目和gradle-sync。
希望有帮助。
答案 1 :(得分:0)
更新位置服务为我完成了工作;)
implementation 'com.google.android.gms:play-services-location:15.0.1'