8

即时运行和谷歌地图似乎存在问题。重新运行应用程序以查看更改时,如果应用程序正在使用 Google 地图,则会发生崩溃。这是堆栈跟踪的一部分:

java.lang.RuntimeException: 
android.content.res.Resources$NotFoundException: File res/drawable/common_google_signin_btn_text_light_focused.xml from drawable resource ID 
           at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2416)
           ........
Caused by: android.content.res.Resources$NotFoundException: File res/drawable/common_google_signin_btn_text_light_focused.xml from drawable resource ID 
          at android.content.res.Resources.loadDrawableForCookie(Resources.java:2640)
          .....
Caused by: android.content.res.Resources$NotFoundException: File res/drawable-xxhdpi-v4/maps_btn_myl_pressed.png from drawable resource ID

崩溃的原因是ResourcesNotFoundException,这似乎是由上述堆栈跟踪中列出的文件引起的。

有没有人遇到过这个问题,如果有,解决方法是什么?

4

1 回答 1

0

gradle在文件中试试这个:

android {  
    defaultConfig {  
         vectorDrawables.useSupportLibrary = true  
        }  
}

并使用最新的buildToolsVersion '28.0.3'

于 2018-10-24T14:40:27.390 回答