I've been making a texting app for fun, but when I started trying to remove the action title bar, the app suddenly started crashing when opened. I've looked everywhere but can't find a solution and I have no idea what the problem is. Any help would be appreciated.
Here's a link the .rar file of my app:
edit: Here's what the manifest file looks like
    <?xml version="1.0" encoding="utf-8"?>
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
    <activity
        android:name=".ReceiveText"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".SendText"
        android:label="@string/title_activity_send__text" >
    </activity>
    <activity
        android:name=".ChatBubble"
        android:label="@string/title_activity_chat_bubble" >
    </activity>
</application>
				
                        
put this two permission in manifest file
Your manifest will look like below.