异常 android.support.multidex.MultiDexApplication 无法转换类

2023-11-23

我有一个问题,我的应用程序生成此异常,但我不明白。 我已经在 build.gradle 中实现了 multiDexEnabled

  Caused by: java.lang.ClassCastException: android.support.multidex.MultiDexApplication cannot be cast to com.example.AnalyticsApplication

我的Java类

public class Splash extends Activity {

 private Tracker mTracker;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);

  setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
  requestWindowFeature(Window.FEATURE_NO_TITLE);
  setContentView(R.layout.activity_splash);

  //Analitycs
  AnalyticsApplication application = (AnalyticsApplication) getApplication();
  mTracker = application.getDefaultTracker();
  mTracker.setScreenName("Splash");
  mTracker.send(new HitBuilders.ScreenViewBuilder().build());

}

文件摇篮

 defaultConfig {
    multiDexEnabled true
}

清单.xml

<uses-permissionandroid:name="android.permission.INTERNET"/>
<uses-permissionandroid:name="android.permission.ACCESS_NETWORK_STATE"/>

<application
android:name="android.support.multidex.MultiDexApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activityandroid:name=".Splash">
<intent-filter>
<actionandroid:name="android.intent.action.MAIN"/>
<categoryandroid:name="android.intent.category.LAUNCHER"/>
</intent-filter></activity>
</application>

我认为你应该延长AnalyticsApplication类到你自己的类中,如下所示:

public class YourApplicationName extends AnalyticsApplication {

     @Override
     protected void onCreate(Bundle savedInstanceState) {
          super.onCreate(savedInstanceState);

          setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
          requestWindowFeature(Window.FEATURE_NO_TITLE);
          setContentView(R.layout.activity_splash);

          //Analitycs
          AnalyticsApplication application = (AnalyticsApplication) getApplication();
          mTracker = application.getDefaultTracker();
          mTracker.setScreenName("Splash");
          mTracker.send(new HitBuilders.ScreenViewBuilder().build());
     }

     // Here you will enable Multidex
     @Override
     protected void attachBaseContext(Context base) {
          super.attachBaseContext(base);
          MultiDex.install(getBaseContext());
     }

}

在此之后,您必须更改您的AndroidManifest.xml文件到此:

<application
     android:name="path.to.YourApplicationName"
     ...

请检查此链接以获取更多信息:http://developer.android.com/reference/android/support/multidex/MultiDex.html

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

异常 android.support.multidex.MultiDexApplication 无法转换类 的相关文章

随机推荐