top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Error type 3 Error: Activity class {} does not exist in React Native?

0 votes
1,148 views

Hi,

Facing the below error while relaunching the app in android device.

Error type 3
Error: Activity class {com.demo/demoActivity} does not exist.

Can anyone guide me how to resolve this?

posted Jan 3, 2019 by anonymous

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
0 votes

Can you help me how to implement Drawer in React Native with using Native Base?

I have tried with the sample code as per the documentation but it's not working. Also, I'm using react navigation as well.

Code:

import React, { Component } from 'react';
import { Drawer } from 'native-base';
import SideBar from './yourPathToSideBar';
export default class DrawerExample extends Component {
  render() {
    closeDrawer = () => {
      this.drawer._root.close()
    };
    openDrawer = () => {
      this.drawer._root.open()
    };
    return (
      <Drawer
        ref={(ref) => { this.drawer = ref; }}
        content={<SideBar navigator={this.navigator} />}
        onClose={() => this.closeDrawer()} >
      // Main View
      </Drawer>
    );
  }
}
0 votes

After added React Navigation getting an issue like below

undefined is not an object (evaluating 'RNGestureHandlerModule.State')

Can anyone help to resolve this?

0 votes

Can anyone suggest the library for Push Notification?

...