Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c959e728 authored by Marvin W.'s avatar Marvin W. 🐿️
Browse files

Add Map API callbacks

parent c9d08fbe
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
package com.google.android.gms.maps.internal;

interface IOnMapLoadedCallback {
    void onMapLoaded();
}
+5 −0
Original line number Diff line number Diff line
package com.google.android.gms.maps.internal;

import com.google.android.gms.dynamic.IObjectWrapper;
import android.graphics.Bitmap;

interface ISnapshotReadyCallback {
    void onBitmapReady(in Bitmap bitmap);
    void onBitmapWrappedReady(IObjectWrapper wrapper);
}