firebase java.lang.RuntimeException:无法在Flutter中示例化活动

dz6r00yl  于 2022-12-14  发布在  Java
关注(0)|答案(8)|浏览(209)

Flutter新创建的应用程序在使用Fire Base时出现错误。
我应该如何解决这个问题,因为它是问flutter应用程序的主要活动不能铸造到android应用程序的活动。

04-05 21:16:07.570 27391-27391/? E/AndroidRuntime: FATAL EXCEPTION: main
    Process: com.example.firestoreflutterchat, PID: 27391
    java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.example.firestoreflutterchat/com.example.firestoreflutterchat.MainActivity}: java.lang.ClassCastException: com.example.firestoreflutterchat.MainActivity cannot be cast to android.app.Activity
        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2124)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2257)
        at android.app.ActivityThread.access$800(ActivityThread.java:139)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1210)
        at android.os.Handler.dispatchMessage(Handler.java:102)
        at android.os.Looper.loop(Looper.java:136)
        at android.app.ActivityThread.main(ActivityThread.java:5097)
        at java.lang.reflect.Method.invokeNative(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:515)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
        at dalvik.system.NativeStart.main(Native Method)
     Caused by: java.lang.ClassCastException: com.example.firestoreflutterchat.MainActivity cannot be cast to android.app.Activity
        at android.app.Instrumentation.newActivity(Instrumentation.java:1084)
        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2115)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2257) 
        at android.app.ActivityThread.access$800(ActivityThread.java:139) 
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1210) 
        at android.os.Handler.dispatchMessage(Handler.java:102) 
        at android.os.Looper.loop(Looper.java:136) 
        at android.app.ActivityThread.main(ActivityThread.java:5097) 
        at java.lang.reflect.Method.invokeNative(Native Method) 
        at java.lang.reflect.Method.invoke(Method.java:515) 
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785) 
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601) 
        at dalvik.system.NativeStart.main(Native Method) 

这是主dart文件,此处不做任何更改。

import 'package:flutter/material.dart';
import 'package:cloud_firestore/cloud_firestore.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(

        primarySwatch: Colors.blue,

        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);


  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {

      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {

    return Scaffold(
      appBar: AppBar(

        title: Text(widget.title),
      ),
      body: Center(

        child: Column(

          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'You have pushed the button this many times:',
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.headline4,
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ), 
    );
  }
}

这是安卓src主要活动Kotlin:

package com.example.firestoreflutterchat

import android.content.Context
//import androidx.multidex.MultiDex
import io.flutter.app.FlutterApplication
import io.flutter.embedding.android.FlutterActivity

class MainActivity : FlutterApplication() {

    }

我只打开了一个新的flutter项目,并按照fire base的步骤将依赖项和google-services.json文件添加到项目中。
它后来在错误中给出了firebase,所以我添加了multidex。
在flutter应用程序的主dart文件和android模块主活动中,未进行任何变更。
是不是我做错了什么,我是新来的,所以我不明白。

yvfmudvl

yvfmudvl1#

为了解决这个错误,我必须更新Flutter应用程序的Kotlin文件夹中MainActivity文件中的包名。从控制台的输出中,我知道默认名称仍然存在于我的应用程序中的某个地方,这导致了一个错误。更新MainActivity文件中的包名解决了这个问题。

zlwx9yxi

zlwx9yxi2#

当你改变包名时发生错误。它不与Kotlin同步
操作步骤:

  • 转到android〉应用程序〉源〉主〉Kotlin〉主活动
  • 将软件包名称更改为相应的软件包名称。
brccelvz

brccelvz3#

因为您的MainActivityFlutterApplication的子项,而不是FlutterActivity的子项。

import io.flutter.embedding.android.FlutterActivity

class MainActivity: FlutterActivity() {
}
iqjalb3h

iqjalb3h4#

<application android:allowBackup="false" android:name="${applicationName}">

在AndroidManisfest.xml中,使用属性android:name和上面的代码一样,更新标记应用程序。

ycggw6v2

ycggw6v25#

在我的情况下,命令flutter cleanflutter pub get为我工作
试试看。

ylamdve6

ylamdve66#

其中一个问题是错误的V2嵌入。不需要改变你的包名。在<activity〉属性中的manifest.xml中尝试

android:name="io.flutter.embedding.android.FlutterActivity"

<application>属性中

android:name="${applicationName}"
agyaoht7

agyaoht77#

使用MainActivity.kt enter image description here中的包名称更新包含MainActivity.kt的文件夹

gzjq41n4

gzjq41n48#

谢谢大家谁贡献了一个答案。我遇到了这个错误后,覆盖文件内的云功能,后来发现我有两个特定的文件夹,我需要删除额外的,因为它是那里Flutter试图运行(错误)......注意Aadn的回答,我还想修复三个AndroidManifest文件中的细节(一个在android/app/src/debug中,另一个在android/app/src/main中,另一个在android/app/src/profile中)......在执行此操作时,我注意到MainActivity.kt文件必须引用一个文件夹--MainActivity.kt中提到的包必须与此文件夹匹配,要查看文件夹,请注意project_name/android/app/src/main/Kotlin...该文件夹中包含MainActivity.kt文件必须提及的软件包,AndroidManifest.xml文件也应该提及该软件包...对我来说,删除额外的文件夹,然后确保正确的包名称将被调用,解决了这个问题...我为冗长道歉,但我希望它有助于您理解和前进:)

相关问题