Fix Google Maps, add API Key

This commit is contained in:
luvletter2333 2022-08-18 01:56:57 +08:00
parent bd9483a80f
commit 7d2d1d12aa
No known key found for this signature in database
GPG Key ID: A26A8880836E1978
2 changed files with 7 additions and 2 deletions

View File

@ -8,12 +8,17 @@
<application>
<service android:name=".GcmPushListenerService">
<service android:name=".GcmPushListenerService"
android:exported="true">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<!-- NekoX Google Maps API Key -->
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="AIzaSyAjS-41simO1sLTIEX4YYrCjINOyFEHSo4" />
<uses-library android:name="com.google.android.maps" android:required="false"/>
<meta-data
android:name="firebase_analytics_collection_deactivated"
android:value="true" />

View File

@ -484,7 +484,7 @@ public class AndroidUtilities {
}
public static boolean isMapsInstalled(BaseFragment baseFragment) {
return false;
return true;
}
private static class LinkSpec {