react-native-navigation icon indicating copy to clipboard operation
react-native-navigation copied to clipboard

Execution failed for task ':app:compileDebugJavaWithJavac'.

Open 1adybug opened this issue 3 years ago • 2 comments

🐛 Bug Report

yarn android failed

To Reproduce

(Write your steps here:)

  1. npx react-native init rnnstudy --template react-native-template-typescript
  2. yarn add react-native-navigation
  3. npx rnn-link
  4. change index.js
import { Navigation } from "react-native-navigation";
import App from "./App";
Navigation.registerComponent('com.myApp.WelcomeScreen', () => App);
Navigation.events().registerAppLaunchedListener(() => {
    Navigation.setRoot({
        root: {
            stack: {
                children: [
                    {
                        component: {
                            name: 'com.myApp.WelcomeScreen'
                        }
                    }
                ]
            }
        }
    });
});
  1. yarn android

Actual Behavior

Execution failed for task ':app:compileDebugJavaWithJavac'.

O2DUmR.png

Your Environment

  • React Native Navigation version: ^7.27.1
  • React Native version: 0.68.2
  • Platform(s) (iOS, Android, or both?): Android

1adybug avatar May 15 '22 08:05 1adybug

same bug "react-native-navigation": "^7.27.1"

huseyiniriss avatar May 23 '22 01:05 huseyiniriss

same bug with version 7.28.0

razsar avatar May 24 '22 14:05 razsar

any help ?

tukaAlalami avatar Nov 08 '22 00:11 tukaAlalami