I am developing a mobile application using google maps with ionic capacitor. I created key in google maps API. I activated the Maps JavaScript API and Maps SDK for Android APIs. I added a billing method. I can see the map on the browser with the key I created, but I am getting an error in the android application. Therefore, the map is not displayed. Added api key in AndroidManifest.xml.
Permissions I added to AndroidManifest.xml:
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
The error is as follows. W/DynamiteModule: Local module descriptor class for com.google.android.gms.googlecertificates not found.
Unable to retrieve flag snapshot for com.google.android.libraries.consentverifier#com.xxx.xxx, using defaults.java.io.FileNotFoundException: /data/user/0/com.xxx.xxx/files/phenotype/shared/com.google.android.libraries.consentverifier#com.xxx.xxx.pb: open failed: ENOENT (No such file or directory)
Thank you for your help...