Не удалось выполнить задачу ‘:rtmp_publisher:compileReleaseKotlin’

#java #flutter #kotlin #gradle

Вопрос:

При компиляции проекта(сборка apk) он возвращает ошибку:

 e: C:Users1FlutterSDKflutter.pub-cachehostedpub.dartlang.orgrtmp_publisher-0.3.7androidsrcmainkotlincomapprtmp_publisherCamera.kt: (634, 49): Unresolved reference: startStream

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':rtmp_publisher:compileReleaseKotlin'.
> Compilation error. See log for more details

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org
 

Версия Котлина актуальна

Файл Gradle androidbuild.gradle:

 buildscript {
    ext.kotlin_version = '1.5.10'
    repositories {
        google()
        jcenter()
    }

    dependencies {

        implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
        classpath 'com.android.tools.build:gradle:4.2.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"

    }
}

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

rootProject.buildDir = '../build'
subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"
}

subprojects {
    project.evaluationDependsOn(':app')
}

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

 

Файл Gradle androidприложениесборка.gradle:

 def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
    localPropertiesFile.withReader('UTF-8') { reader ->
        localProperties.load(reader)
    }
}

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
    throw new FileNotFoundException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
    flutterVersionCode = '1'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
    flutterVersionName = '1.0'
}

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
    keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}

android {
    compileSdkVersion 30 // was 28

    // added for rtmp
    packagingOptions {
        exclude 'project.clj'
    }

    sourceSets {
        main.java.srcDirs  = 'src/main/kotlin'
    }

    lintOptions {
        disable 'InvalidPackage'
    }

    defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId "youinroll.com"
        minSdkVersion 23
        targetSdkVersion 30
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
        versionCode 3

    }

    signingConfigs {
        release {
            keyAlias keystoreProperties['keyAlias']
            keyPassword keystoreProperties['keyPassword']
            storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
            storePassword keystoreProperties['storePassword']
        }
    }
    buildTypes {
        release {
            signingConfig signingConfigs.release
            shrinkResources false
            minifyEnabled false
        }
    }

    allprojects {
        repositories {
            google()
            mavenCentral()
            maven{url "https://storage.googleapis.com/download.flutter.io"}
        }
    }

}
flutter {
    source '../..'
}
dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
 

Приложение транслировало с помощью камеры телефона, проблема в этом.
По-видимому, проблема связана с java и kotlin.
Выполнено обновление и удаление flutter/gradle.

Ответ №1:

Я столкнулся с той же самой проблемой после обновления проекта и настроек gradle.

Мне удалось исправить это, сократив версию kotlin до

 ext.kotlin_version = '1.3.50'
 

Это вызвало проблему с компиляцией кода, для этого я удалил эту строку из файла build.gradle

 implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"