本文介紹了谷歌地圖試圖創(chuàng)建未注冊(cè)類型的平臺(tái)視圖的處理方法,對(duì)大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我有應(yīng)用程序我正在處理它在我升級(jí)1.12之前的Android項(xiàng)目之前工作正常,而不是它給我一個(gè)錯(cuò)誤google maps Trying to create a platform view of unregistered type
和地圖在iOS中運(yùn)行良好,使用的Google API密鑰與我在Android中使用的相同
我已執(zhí)行了多個(gè)flutter clean
并卸載了應(yīng)用程序并使用了不同的仿真器,錯(cuò)誤相同
androidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="come.example.appid">
<uses-permission android:name="android.permission.INTERNET"/>
<!-- Speech To Text configration -->
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<!-- Geolocator Configration Start -->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<!-- Geolocator Configration end -->
<!-- Local Notification -->
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<!-- Local Notification -->
<application
tools:replace="android:label"
android:label="appname"
android:icon="@mipmap/launcher_icon">
<!-- Google Maps -->
<meta-data android:name="com.google.android.geo.API_KEY"
android:value="APIKeyyyyyyyyyyyy-xxxxxxxx"/>
<!-- Google Maps -->
<meta-data
android:name="com.google.firebase.messaging.default_notification_channel_id"
android:value="@string/default_notification_channel_id"/>
<!-- Facebook Configration Start -->
<!-- <meta-data android:name="com.facebook.sdk.ApplicationId"
android:value="@string/facebook_app_id"/> -->
<activity android:name="com.facebook.FacebookActivity"
android:configChanges=
"keyboard|keyboardHidden|screenLayout|screenSize|orientation"
android:label="@string/app_name" />
<activity
android:name="com.facebook.CustomTabActivity"
android:exported="true">
<!-- FCM Configration start -->
<intent-filter>
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<!-- FCM Configration end -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="@string/fb_login_protocol_scheme" />
</intent-filter>
</activity>
<!-- Facebook Configration end -->
<!-- Local Notification -->
<receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver" />
<receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"></action>
</intent-filter>
</receiver>
<activity
android:name="io.flutter.embedding.android.FlutterActivity"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specify that the launch screen should continue being displayed -->
<!-- until Flutter renders its first frame. -->
<meta-data
android:name="io.flutter.embedding.android.SplashScreenDrawable"
android:resource="@drawable/launch_background" />
<!-- Theme to apply as soon as Flutter begins rendering frames -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
</manifest>
錯(cuò)誤
E/Ffltter(8262):[錯(cuò)誤:Ffltter/lib/ui/ui_dart_state.cc(157)]
未處理的異常:平臺(tái)異常(Error,
異常:嘗試創(chuàng)建的平臺(tái)視圖
未注冊(cè)類型:plugins.fltter.io/GOOGLE_MAPPS E/Ffltter(8262):
在…
Io.flutter.plugin.platform.PlatformViewsController$1.createPlatformView(PlatformViewsController.java:91)
E/撲翼(8262):在
Io.flutter.embedding.engine.systemchannels.PlatformViewsChannel$1.create(PlatformViewsChannel.java:96)
E/撲翼(8262):在
Io.flutter.embedding.engine.systemchannels.PlatformViewsChannel$1.onMethodCall(PlatformViewsChannel.java:60)
E/撲翼(8262):在
Io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(MethodChannel.java:231)
電子/顫動(dòng)(8262):
推薦答案
我在安卓系統(tǒng)上也遇到了同樣的錯(cuò)誤,但我的代碼在執(zhí)行以下步驟后可以正常工作:
-
清除應(yīng)用數(shù)據(jù)(&A)卸載當(dāng)前應(yīng)用。
干凈運(yùn)行撲翼構(gòu)建(&A)。
再次運(yùn)行您的應(yīng)用程序
這篇關(guān)于谷歌地圖試圖創(chuàng)建未注冊(cè)類型的平臺(tái)視圖的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,