Chaquopy生成失败:应用程序:GeneratedBugPythonMicsAssets

Chaquopy生成失败:应用程序:GeneratedBugPythonMicsAssets,python,android,android-studio,chaquopy,Python,Android,Android Studio,Chaquopy,我正在创建一个kotlin前端/python后端android应用程序,并希望使用Chaquopy,但出现以下错误。我相信我正确地遵循了上的说明,但我不断地出现这个错误。多谢各位 :app:generateDebugPythonMiscAssets Could not resolve com.chaquo.python:target:3.8.1-7 你能告诉我如何解决这个问题吗 Gradles(应用程序): 格雷德尔(项目): Chaquopy不支持Android Gradle插件的预发布版本

我正在创建一个kotlin前端/python后端android应用程序,并希望使用Chaquopy,但出现以下错误。我相信我正确地遵循了上的说明,但我不断地出现这个错误。多谢各位

:app:generateDebugPythonMiscAssets
Could not resolve com.chaquo.python:target:3.8.1-7
你能告诉我如何解决这个问题吗

Gradles(应用程序):

格雷德尔(项目):


Chaquopy不支持Android Gradle插件的预发布版本,您应该收到一条警告

以下是解决问题的方法:

  • com.android.tools.build:gradle
    更改为(当前为3.6.3)
  • 编辑gradle-wrapper.properties以使用(当前为5.6.4)
当Chaquopy添加对Android Gradle插件新版本的支持时,它将在和中公布

plugins {
    id 'com.android.application'
    id 'kotlin-android'
    id 'kotlin-android-extensions'
    id 'com.chaquo.python'
}

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.3"

    defaultConfig {
        applicationId "com.example.inprogress"
        minSdkVersion 25
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        sourceSets {
            main {
                python {
                    srcDirs = ["replacement/dir"]
                    srcDir "additional/dir"
                }
            }
        }
        ndk {
            abiFilters "armeabi-v7a", "x86"
        }

    }

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

dependencies {

    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    implementation 'androidx.core:core-ktx:1.2.0'
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'androidx.recyclerview:recyclerview:1.1.0'
    implementation 'com.google.android.material:material:1.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    //noinspection GradleDependency
    implementation "com.squareup.okhttp3:okhttp:3.9.1"
    //noinspection GradleDependency
    implementation 'com.google.code.gson:gson:2.8.0'
}
buildscript {
    ext.kotlin_version = "1.3.61"
    repositories {
        google()
        jcenter()
        maven { url "https://chaquo.com/maven" }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:4.1.0-alpha04'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath "com.chaquo.python:gradle:7.0.3"

        // 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
}