Skip to content
Snippets Groups Projects
Commit 168d9b81 authored by Kamal Bramwell's avatar Kamal Bramwell
Browse files

Removed MainActivity from :feature:home

parent 262bf9d9
No related branches found
No related tags found
No related merge requests found
package io.elixxir.feature.home
import androidx.appcompat.app.AppCompatActivity
class MainActivity : AppCompatActivity() {
companion object {
const val INTENT_NOTIFICATION_CLICK = "nav_bundle"
const val INTENT_PRIVATE_CHAT = "private_message"
const val INTENT_GROUP_CHAT = "group_message"
const val INTENT_REQUEST = "request"
const val INTENT_INVITATION = "invitation"
}
}
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android" <navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/nav_home" android:id="@+id/nav_home">
app:startDestination="@id/mainActivity">
<activity
android:id="@+id/mainActivity"
android:name="io.elixxir.feature.home.MainActivity"
android:label="MainActivity" />
</navigation> </navigation>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment