0

该插件google_mobile_ads要求您的应用迁移到 Android 嵌入 v2。按照https://flutter.dev/go/android-project-migration上的步骤重新运行此命令。

所以我尝试按照这些步骤操作,但在我的项目中任何地方都找不到“MainActivity.java”,也无法继续

我的项目树

迁移错误

https://flutter.dev/go/android-project-migration 这是它建议遵循的链接

4

1 回答 1

0

只需在您的项目中打开这些文件并复制>>粘贴这行代码,它就会起作用.......确保删除此文件中的所有代码行并将其替换为新的代码行。

1:MainActivity.java


package co.appbrewery.flash_chat;

import io.flutter.embedding.android.FlutterActivity;

public class MainActivity extends FlutterActivity {
  
}

2:样式.xml


<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
    <item name="android:windowBackground">@drawable/launch_background</item>
</style>
</resources>

3:AndroidManifest.xml


<manifest xmlns:android="http://schemas.android.com/apk/res/android"   
          package="co.appbrewery.flash_chat">  
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
     calls FlutterMain.startInitialization(this); in its onCreate method.
     In most cases you can leave this as-is, but you if you want to provide
     additional functionality it is fine to subclass or reimplement
     FlutterApplication and put your custom class here. -->
<application android:label="flash_chat" android:icon="@mipmap/ic_launcher">
    <activity android:name=".MainActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize">
        <!-- This keeps the window background of the activity showing
              until Flutter renders its first frame. It can be removed if
              there is no splash screen (such as the default splash screen
              defined in @style/LaunchTheme). -->
        <meta-data android:name="io.flutter.embedding.android.SplashScreenDrawable" android:resource="@drawable/launch_background" />
        <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>

于 2021-06-08T22:56:08.950 回答