私は私のアプリでをAnalyticsを実装するtutorial provided by Googleを使用していますが、アプリはjava.lang.ClassCastException
アンドロイド - 「java.lang.ClassCastExceptionが」
でクラッシュし、私はおそらく間違っていた何かでクラッシュするアプリケーションは、これはどのようなGoogleのです提供:
// Obtain the shared Tracker instance.
AnalyticsApplication application = (AnalyticsApplication) getApplication();
mTracker = application.getDefaultTracker();
この
は私が断片// This is where I get the error
AnalyticsApplication application = (AnalyticsApplication) getContext().getApplicationContext();
mTracker = application.getDefaultTracker();
を使用していますので、私は行った変更であります UPDATE:エラーは、この行で行わ:
AnalyticsApplication application = (AnalyticsApplication) getContext().getApplicationContext();
これは
FATAL EXCEPTION: main
Process: com.incorp.labs.appname, PID: 14095
java.lang.ClassCastException: android.app.Application cannot be cast to com.incorp.labs.appname.Helper.AnalyticsTracker
at com.incorp.labs.appname.OneFragment.onCreateView(OneFragment.java:126)
私LogCatでUPDATE 2:これは
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.incorp.labs.appname">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="com.android.vending.BILLING" />
<application
android:allowBackup="true"
android:icon="@mipmap/newlogops"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/MyMaterialTheme">
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name=".Splash"
android:screenOrientation="portrait" />
<activity
android:name=".MainActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".OneFragment"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".TwoFragment"
android:screenOrientation="portrait" />
<activity
android:name=".Feedback"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".FourFragment"
android:screenOrientation="portrait" />
<activity
android:name=".SplashTimer"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
<service android:name=".FirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<activity android:name=".AboutActivity"></activity>
</application>
マニフェストファイルであります
1)https://stackoverflow.com/questions/31312255/error-on-my-fragment-android-app-application-cannot- be-cast-to 2)https://stackoverflow.com/questions/24950341/android-google-analytics-integration-error –
ドキュメントによると、これは、コードがオブジェクトをサブクラスにキャストしようとしたときにだけスローされますそのうちの1つはインスタンスではありません。 AnalyticsApplicationとAnalyticsTracker – Lokesh
@Lokeshクラス名を変更しましたが、それは問題ではないでしょうか? –