包没有在xxx运行:yy React Native

时间:2018-01-23 21:19:50

标签: javascript android reactjs react-native firebase-cloud-messaging

我在安装react-native-fcm后使用react native构建一个独立的Android应用程序我总是收到此错误消息:

我的项目gradle如下:

    // Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
  repositories {
    jcenter()
    google()
  }
  dependencies {
    classpath 'com.android.tools.build:gradle:3.0.1'
    classpath 'com.google.gms:google-services:3.1.2'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
  }
}

allprojects {
  repositories {
    mavenLocal()
    jcenter()
    maven {
      // Point to local maven repository
      url "$rootDir/../.expo-source/android/maven"
    }
    maven { url "https://jitpack.io" }
    maven { url "https://maven.google.com" }
  }
}

task clean(type: Delete) {
  delete rootProject.buildDir
}

虽然我的app / build.gradle看起来像:

apply plugin: 'com.android.application'

android {
  compileSdkVersion 26
  buildToolsVersion '26.0.2'

  defaultConfig {
    applicationId "fi.x.y"
    minSdkVersion 19
    targetSdkVersion 26
    versionCode 2
    versionName "1.0.2"
    multiDexEnabled true
    ndk {
      abiFilters 'armeabi-v7a', 'x86'
    }
    manifestPlaceholders = [
      'appAuthRedirectScheme': 'fi.x.y'
    ]
  }
  buildTypes {
    release {
      minifyEnabled false
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
  }
  dexOptions {
    javaMaxHeapSize "8g"
  }
  lintOptions {
    abortOnError false
  }
}

task exponentPrebuildStep(type: Exec) {
  workingDir '../../'

  if (System.getProperty('os.name').toLowerCase().contains('windows')) {
    commandLine 'cmd', '/c', '.\\.expo-source\\android\\detach-scripts\\prepare-detached-build.bat'
  } else {
    commandLine './.expo-source/android/detach-scripts/prepare-detached-build.sh'
  }
}
preBuild.dependsOn exponentPrebuildStep

repositories{
  flatDir{
    dirs "../../node_modules/react-native-background-geolocation/android/libs"
  }
  mavenLocal()
  maven { url 'https://maven.fabric.io/public' }
}

dependencies {
    compile(project(':react-native-firebase')) {
        transitive = false
    }
    compile project(':react-native-vector-icons')
  compile fileTree(dir: 'libs', include: ['*.jar'])
  testCompile 'junit:junit:4.12'
  compile 'com.android.support:multidex:1.0.2'

  compile 'com.google.android.gms:play-services:11.8.0'
  compile 'com.google.android.gms:play-services-location:11.8.0'
  compile 'com.google.android.gms:play-services-places:11.8.0'
  compile 'com.google.android.gms:play-services-maps:11.8.0'
  compile 'com.google.android.gms:play-services-ads:11.8.0'

  compile('host.exp.exponent:expoview:22.0.0@aar') {
    exclude group: 'com.facebook.android', module: 'facebook-android-sdk'
    exclude group: 'com.facebook.android', module: 'audience-network-sdk'
    exclude group: 'io.nlopez.smartlocation', module: 'library'
    transitive = true
  }

  compile ('com.facebook.android:facebook-android-sdk:4.+')
  compile('com.facebook.android:audience-network-sdk:4.+') {
    exclude module: 'play-services-ads'
  }
  compile('io.nlopez.smartlocation:library:3.2.11') {
    transitive = false
  }
  compile(project(':react-native-background-geolocation')) {
    exclude group: 'com.google.android.gms', module: 'play-services-location'
  }
  compile(name: 'tslocationmanager', ext: 'aar') {
    exclude group: 'com.google.android.gms'
  }
  compile project(':react-native-fcm')
  compile 'com.google.firebase:firebase-core:11.8.0' //this decides your firebase SDK version

}

apply plugin: 'com.google.gms.google-services'

主要应用:

// Needed for `react-native link`
  public List<ReactPackage> getPackages() {
    return Arrays.<ReactPackage>asList(
        // Add your own packages here!
        // TODO: add cool native modules
            new RNBackgroundGeolocation(),
            // Needed for `react-native link`
        // new MainReactPackage(),
            new RNFirebasePackage(),
            new VectorIconsPackage(),
            new RNFirebaseMessagingPackage(),
            new FIRMessagingPackage()

    );
  }

我正在关注此链接以安装反应原生android的推送通知:https://github.com/evollu/react-native-fcm

我没有看到任何日志进入控制台日志,该项目正在成功构建说但是当启动应用程序时,带有错误消息的白色屏幕包裹未在xxx运行:yy。

之前我没有遇到过这个问题,我也不得不将所有的google服务包更改为11.8.0,因为我安装了fcm库时发生了冲突!

知道它会导致什么原因导致我无法打开我的应用程序!

2 个答案:

答案 0 :(得分:0)

之前我遇到过这个问题,试试这个:

  1. 确保您的笔记本电脑和手机位于同一Wi-Fi网络上。
  2. 在您的设备上打开您的React Native应用。你会看到一个红色的屏幕 有错误打开应用程序内的开发人员菜单。(您正在谈论的那个)

  3. 转到开发设置→调试服务器主机以获取设备。 (摇动设备)

  4. 输入您机器的IP地址和本地开发的端口     服务器(例如10.0.1.1:8081)。返回Developer菜单     选择Reload JS。

  5. 我使用ipconfig查找我的IP并使用了上述方法。

    我还建议您使用平台工具,确保正确安装adb。

    我实际上是通过创建一个新的反应原生项目并发现这解决了错误。

    注意:您可能会收到另一个错误,告诉您无法删除x文件路径。我在我的练习项目中尝试过它并且有效。 *请自担风险。

    Debugging - React Native

答案 1 :(得分:-1)

嗨,我也面临这个问题。我正在使用CRNA和纱线。 在出现此问题之前,我使用纱线启动来启动包装机。它显示的URL是exp://192.168.1.15:19001。 然后我的wifi熄灭了。因此,为了使用USB电缆运行我的应用程序,我运行了以下命令:exp start --localhost --android。这使我能够使用USB电缆运行我的CRNA应用程序,它显示的URL是:exp:// localhost:19000

但是,当我的wifi重新出现并且我尝试使用yarn start启动打包程序时,此错误消息开始显示。现在,我无法通过wifi运行我的应用程序。 请帮忙,我找不到解决方案。

编辑 好的,所以我通过运行exp start --lan解决了我的问题。从这里的文档。这带回了我的IP地址url(exp://192.168.1.15:19001)