android - gradle 构建时无法应用插件 [id 'com.chaquo.python']

标签 android chaquopy

我正在尝试使用 chaquopy 在我的 Android 应用程序中使用 python。我找到了在android中集成chaquopy的教程here 。 我更新了应用程序和项目级别的 gradle 文件,评估项目“:app”时出现问题。

Failed to apply plugin [id 'com.chaquo.python'] No such property: dslScope for class: com.android.build.gradle.internal.api.DefaultAndroidSourceDirectorySet.

这是我的 build.gradle 应用程序级别的代码

apply plugin: 'com.android.application'
apply plugin: 'com.chaquo.python'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.3"

defaultConfig {
    sourceSets {
        python {
            srcDirs = ["src/main/python"]
        }
    }

    python {
        buildPython "usr/bin/python3"
        buildPython "python3"
    }

    ndk {
        abiFilters "armeabi-v7a", "x86"
    }

    applicationId "com.softvision.nowyouseeus"
    minSdkVersion 19
    targetSdkVersion 29
    versionCode 1
    versionName "1.0"

    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
    }
}
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}
}

dependencies {

implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'com.google.mlkit:face-detection:16.0.0'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'

}

bild.gradle项目级别

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
    google()
    jcenter()
    maven {url "https://chaquo.com/maven"}
}
dependencies {
    classpath "com.android.tools.build:gradle:4.1.0"
    classpath 'com.chaquo.python:gradle:6.3.0'

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

allprojects {
    repositories {
        google()
        jcenter()
    }
}

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

最佳答案

Chaquopy 6.3.0 与 Android Gradle 插件版本 4.1.0 不兼容,您应该已收到相关警告。

参见here对于兼容的组合。您可能应该升级到当前的 Chaquopy 版本 9.0.0。

关于android - gradle 构建时无法应用插件 [id 'com.chaquo.python'],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65169273/

相关文章:

android - Kotlin 字段覆盖和 GSON 反序列化 Unable to create converter class 异常

android - android中.apk文件过大的问题?

android - 在哪里放置文件的 Chaquopy 包/模块

python - NLTK和下载的Chaquopy问题

java - 使用 Chaquopy 在 Android 中自写 python 代码

python - 在 Chaquopy 中转换数组和张量

android - 如何访问安卓的通话记录?

Android:在应用程序中连接时,应用程序无法在 wifi 网络上 ping 设备

java - 在Android中录制.wav文件