Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/197.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android gradle生成时未能应用插件[id';com.chaquo.python';]_Android_Chaquopy - Fatal编程技术网

Android gradle生成时未能应用插件[id';com.chaquo.python';]

Android gradle生成时未能应用插件[id';com.chaquo.python';],android,chaquopy,Android,Chaquopy,我试图在我的android应用程序中使用python,方法是使用chaquopy。我找到了在android中集成chaquopy的教程。 我更新了应用程序和项目级别的gradle文件评估项目时出现问题:“应用程序” 未能应用插件[id'com.chaquo.python'] 没有此类属性:类的dslScope:com.android.build.gradle.internal.api.DefaultAndroidSourceDirectorySet 这是我的build.gradle应用程序级别代

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

未能应用插件[id'com.chaquo.python'] 没有此类属性:类的dslScope: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'
}

毕尔德格拉德尔项目级

// 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不兼容,您应该收到一条警告

有关兼容的组合,请参阅。您可能应该升级到当前的Chaquopy版本9.0.0