谷歌地图SDK上小时开始弹出错误[重复]。

问题描述 投票:12回答:1
:com.google.android.gms.dynamite_mapsdynamite@[email protected] (040306-0) line 9
com.google.maps.api.android.lib6.gmm6.vector.ct.<init>

这个错误开始发生在随机设备上。有人有同样的问题吗?

我没有发布任何东西,没有改变任何关于应用程序的东西。

我的地图片段XML。

<fragment
android:id="@+id/map_stops" 
android:name="com.google.android.gms.maps.SupportMapFragment" android:layout_width="match_parent" 
android:layout_height="match_parent" tools:context="com.comprovei.entregas.fragments.TabTripsMapFragment" />

XML: The fragment code:

public class TabTripsMapFragment extends Fragment implements OnMapReadyCallback {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

        View view = inflater.inflate(R.layout.tab_fragment_stops_map, null, false);

        ChildFragmentManager()
                .findFragmentById(R.id.map_stops);
        mapFragment.getMapAsync(this);

        return view;
    }

    @Override
    public void onMapReady(final GoogleMap googleMap) {

        ...

    }

}

编辑*: 我正试图在Twitter上跟进这个问题。https:/twitter.comgooglemapsstatus1253419390046834691。

编辑:最后回应这里。 https:/issuetracker.google.comissues154855417#comment509

android google-maps
1个回答
26
投票

除了谷歌地图应用本身,所有应用都在崩溃。

地图优先的应用程序现在完全没用了。

有什么我们可以做的。我们应该只是等待。

这是被跟踪的谷歌在这里。https:/issuetracker.google.comissues154855417。


8
投票

谷歌地图已经意识到这个问题,并正在进行修复 (联系):

Google confirms outage


6
投票

更新:现在已经修复了,清除应用程序的数据存储,然后打开应用程序。

目前API部分瘫痪,影响了很多应用,尤其是使用其SDK的快递服务,导致全世界的移动应用都崩溃了,连Uber这样的应用也崩溃了。

© www.soinside.com 2019 - 2024. All rights reserved.