无法在Android应用中集成反应本



我有一个使用WebKit呈现网页的Android应用程序。我有 editor.html file(用HTML,JavaScript和CSS编写)。它使用Android Webkit接口在JavaScript和本机代码之间进行通信。

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

要在我的应用中集成反应,我正在使用此博客:中型博客,用于整合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

任何人可以帮助我吗?

它找不到的维数资源: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"

相关内容

  • 没有找到相关文章

最新更新