当前位置: 首页 > 知识库问答 >
问题:

没有这样的属性:class:org . grad le . API . tasks . output file的ABI

贝礼骞
2023-03-14

我对React Native的开发是全新的。我开发了一个小项目,并希望有一个释放APK。但是我会在发布版本上堆栈。有人能帮我吗?谢谢你。

错误是

没有这样的属性:org . grad le . API . tasks . output file org . grad le . API . projectconfigurationexception:配置项目时出现问题':app '原因:groovy . lang . missingpropertyexception:没有这样的属性:org . grad le . API . tasks . output file

build.gradle(应用程序)

apply plugin: "com.android.application"


project.ext.react = [
    resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
]

apply from: "../../node_modules/react-native/react.gradle"


def enableSeparateBuildPerCPUArchitecture = false

/**
 * Run Proguard to shrink the Java bytecode in release builds.
 */
def enableProguardInReleaseBuilds = false

android {
    compileSdkVersion rootProject.ext.compileSdkVersion

    defaultConfig {
        applicationId "com.ninjakod.vehiclevalue"
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        versionCode 1
        versionName "1.0"
        ndk {
            abiFilters "armeabi-v7a", "x86"
        }
    }
    splits {
        abi {
            reset()
            enable enableSeparateBuildPerCPUArchitecture
            universalApk false  // If true, also generate a universal APK
            include "armeabi-v7a", "x86"
        }
    }
    signingConfigs {
        release {
            if (project.hasProperty('MYAPP_RELEASE_STORE_FILE')) {
                storeFile file(MYAPP_RELEASE_STORE_FILE)
                storePassword MYAPP_RELEASE_STORE_PASSWORD
                keyAlias MYAPP_RELEASE_KEY_ALIAS
                keyPassword MYAPP_RELEASE_KEY_PASSWORD
            }
        }
    }
    buildTypes {
        release {
            minifyEnabled enableProguardInReleaseBuilds
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
            signingConfig signingConfigs.release
        }
    }
    // applicationVariants are e.g. debug, release
    applicationVariants.all { variant ->
        variant.outputs.each { output ->
            // For each separate APK per architecture, set a unique version code as described here:
            // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
            def versionCodes = ["armeabi-v7a":1, "x86":2]
            def abi = output.getFilter(OutputFile.ABI)
            if (abi != null) {  // null for the universal-debug, universal-release variants
                output.versionCodeOverride =
                        versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
            }
        }
    }
    buildToolsVersion '27.0.3'
}

dependencies {
    compile project(':react-native-admob')
    implementation project(':react-native-admob')
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
    implementation "com.facebook.react:react-native:+"  // From node_modules
}

// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
    from configurations.compile
    into 'libs'
}

build.gradle(SampleMobileApp)

buildscript {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.0-alpha11'

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

allprojects {
    repositories {
        mavenLocal()
        jcenter()
        maven {
            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
            url "$rootDir/../node_modules/react-native/android"
        }
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
    }
}

ext {
    buildToolsVersion = "26.0.3"
    minSdkVersion = 16
    compileSdkVersion = 26
    targetSdkVersion = 26
    supportLibVersion = "26.1.0"
}

共有2个答案

阎建中
2023-03-14

在 build.gradle(:app) 中替换此行

def abi = output.getFilter(OutputFile.ABI)

与:

def abi = output.getFilter(com.android.build.OutputFile.ABI)
陶朝明
2023-03-14

好吧,我找到了解决方案。正在添加

import com.android.build.OutputFile

到构建。gradle(应用程序)解决了这个问题

 类似资料:
  • 我有一个Groovy测试类 在该类中有以下测试用例: 以及如下所示: 现在,当我运行这个测试用例时,我在调用时收到以下错误消息: 棒极了。lang.MissingPropertyException:类:ecs没有此类属性:msg1。MsgDispatcherTest 你知道我错过了什么吗?

  • 我有一个带有Spring Security核心和多租户单db插件的grails 2.1.0应用程序,运行良好。此应用程序的要求之一是将并发登录限制在一个。为此,我尝试在Bootstrap中使用SpringSecurityUtils来注册过滤器。

  • 在Apache jmeter项目中,我只需要在两个线程组之间共享几个变量。我发现变量不能在线程组之间共享,我必须使用属性。我在第一个线程组的JSR223预处理器中编写了下面的脚本来设置属性值。它运行没有任何异常。 然后,我从第二个线程组中的JSR223预处理器读取属性值,如下所示。 它将通过jmeter日志中的以下异常。 2019-11-02 18:54:19,353错误O.A.J.M.JSR22

  • docx4j从2.8.0更新到3.1.0后,我对以下代码有问题: 这些代码在2.8.0版本中运行良好,但是在3.1.0版本中,当调用行wml.save(targetFile)时,我得到了一个异常。我不能进入这段代码,因为我在进入之前立即得到以下异常: 我正在使用版本 1.7.7 的 slf4j-api(对于 docx4j 3.1.0,标准依赖项是 slf4j-api 的 1.7.5),而 slf4

  • 我已经创建了多分支管道(声明式),并将jenkinsfile放在bitbucket repo中。配置为触发内置管道的挂钩。当开发人员提交代码管道时,它抛出以下错误。 [Bitbucket]生成结果通知groovy。lang.MissingPropertyException:对于org上的class:WorkflowScript,没有这样的属性:any。科德豪斯。棒极了。运行时。脚本字节码适配器。在