アプリケーションを起動すると、強制終了となります。アクティビティをandroid.appにキャストすることはできません。アプリケーション
これはLogCatです:
java.lang.RuntimeException: Unable to instantiate application com.blocktrekacademy.officialblocktrek.Authentication: java.lang.ClassCastException: com.blocktrekacademy.officialblocktrek.Authentication cannot be cast to android.app.Application
[は UPDATED]:これは私ののAndroidManifest.xmlです:
...
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".Authentication"
android:label="@string/title_activity_authentication"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
これは私のAuthentication.java
ですpackage com.blocktrekacademy.officialblocktrek;
import ...
public class Authentication extends AppCompatActivity {
...
「com.blocktrekacademy.officialblocktrek.Authentication」の宣言はどのように見えますか? –
'com.blocktrekacademy.officialblocktrek.Authentication'は' Application'を拡張しますか? –
AppCompatActivityを拡張します – Axis