无法在Android App中集成React-Native

时间:2019-03-01 09:45:45

标签: android react-native-android

我有一个使用Webkit呈现网页的android应用。我有 Editor.html 文件(以html,javascript和css编写)。它使用android webkit界面在JavaScript和本机代码之间进行通信。

现在,我想在我的应用程序中使用React-Native在本机代码和Js代码之间进行通信。

要在我的应用程序中集成React-Native,我正在使用以下博客: Medium Blog for Integrating React Native

当我在build.gradle中的代码下方添加时。

代码:

maven {
    url "<PATH TO YOUR ROOT DIRECTORY>/AwesomeApp/node_modules/react-native/android"
}

我遇到以下错误。

错误:

No resource found that matches the given name (at 'layout_height' with value '@dimen/abc_action_bar_progress_bar_size').

Message{kind=ERROR, text=No resource found that matches the given name (at 'layout_height' with value 
'@dimen/abc_action_bar_progress_bar_size')., sources=[/Users/././android/app/src/main/res/layout/activity_add__audio.xml:18:32-71], original message=, tool name=Optional.of(AAPT)}

由于此错误,布局文件无法访问尺寸文件中指定的某些值。

android / build.gradle:

buildscript {
    repositories {
        jcenter()
        maven {
            url 'https://oss.sonatype.org/content/repositories/snapshots'
        }
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.0'
        classpath 'com.google.gms:google-services:3.2.1'
    }
}
allprojects {
    repositories {
        maven {
            url 'https://maven.google.com'
        }
        maven {
            url "/Users/../node_modules/react-native/android"
        }
        jcenter()
        maven {
            url 'https://oss.sonatype.org/content/repositories/snapshots'
        }
        maven { url "https://jitpack.io" }
        mavenCentral()
    }
}


targetSdkVersion: 26

有人可以帮我吗?

1 个答案:

答案 0 :(得分:0)

它找不到的维度资源:dimen/abc_action_bar_progress_bar_size提示缺少依赖项...因为它来自哪里:

// https://mvnrepository.com/artifact/com.android.support/appcompat-v7
implementation "com.android.support:appcompat-v7:28.0.0"

或这个:

// https://mvnrepository.com/artifact/androidx.appcompat/appcompat
implementation "androidx.appcompat:appcompat:1.0.2"