Link to home
Start Free TrialLog in
Avatar of Nurudin Mohd Shah
Nurudin Mohd Shah

asked on

Apps crash when to the next Intent

Hello. Im begginer in android studio. When im trying to click the findtask its should intent the activity to the finding task activity, when im click it, it keep on crash on my emulator on android studio. please help me.


here is my manifest


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="my.wedee.com.fireappstesting">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />


    <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="my.wedee.com.fireappstesting.MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name="my.wedee.com.fireappstesting.RegisterActivity" />
        <activity android:name="my.wedee.com.fireappstesting.LoginActivity" />
        <activity android:name="my.wedee.com.fireappstesting.SetupActivity" />
        <activity
            android:name="com.theartofdev.edmodo.cropper.CropImageActivity"
            android:theme="@style/Base.Theme.AppCompat" /> <!-- optional (needed if default theme has no action bar) -->
        <activity android:name="my.wedee.com.fireappstesting.TaskActivity" />
        <activity android:name=".FindingTheTaskActivity"></activity>
    </application>

</manifest>

Open in new window

Avatar of Batuhan Cetin
Batuhan Cetin
Flag of Türkiye image

Hello,

We may help if you can share the code that actually shows your onClick event and the error message you get when your app crashes. We cannot make any comments based on that manifest only.
This question needs an answer!
Become an EE member today
7 DAY FREE TRIAL
Members can start a 7-Day Free trial then enjoy unlimited access to the platform.
View membership options
or
Learn why we charge membership fees
We get it - no one likes a content blocker. Take one extra minute and find out why we block content.