Существует проблема в файле Gradle (сообщение об ошибке ниже)? - PullRequest
0 голосов
/ 04 мая 2018

Сообщение об ошибке -

Не удалось найти метод jackOptions () для аргументов [build_8yvoh28709tkfmgonv9e1pntf $ _run_closure1 $ _closure3 $ _closure6 @ 7e2c902d] в DefaultConfig_Decorated {имя = основное, измерение = ноль, minSdkVersion = DefaultApiVersion {mApiLevel = 19, mCodename = 'null'}, targetSdkVersion = DefaultApiVersion {mApiLevel = 25, mCodename = 'null'}, renderscriptTargetApi = null, renderscriptSupportModeEnabled = null, renderscriptSupportModeBlasEnabled = нуль, renderscriptNdkModeEnabled = null, versionCode = 1, versionName = 1.0, applicationId = com.vpaliy.loginconcept, testApplicationId = null, testInstrumentationRunner = android.support.test.runner.AndroidJUnitRunner, testInstrumentationRunnerArguments = {}, testHandleProfiling = null, testFunctionalTest = null, signatureConfig = null, resConfig = null, mBuildConfigFields = {}, mResValues ​​= {}, mProguardFiles = [], mConsumerProguardFiles = [], mManifestPlaceholder = {}, mWearAppUnbundled = null} типа com.android.build.gradle.internal.dsl.DefaultConfig.

Вот это build.gradle (module.app)

apply plugin: 'com.android.application'

    android {

    compileSdkVersion 25
    buildToolsVersion "25.0.3"
    defaultConfig {
        applicationId "com.vpaliy.loginconcept"
        minSdkVersion 19
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner 
        "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
        jackOptions {
            enabled true
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'),         
            'proguard-rules.pro'
        }
    }
}


dependencies {
    compile 'com.jakewharton:butterknife:8.5.1'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
    compile 'com.andkulikov:transitionseverywhere:1.7.4'
    compile 'com.android.support:design:25.3.1'
    compile 'com.github.bumptech.glide:glide:3.7.0'
    compile 'com.android.support:recyclerview-v7:25.3.1'                                                                                                                                 

    compile'net.yslibrary
      .keyboardvisibilityevent:keyboardvisibilityevent:2.1.0'
    compile 'com.github.bumptech.glide:glide:3.7.0'
    compile 'com.github.Q42:AndroidScrollingImageView:1.2'
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
}

Ответы [ 2 ]

0 голосов
/ 04 мая 2018

Следуйте указанным шагам- 1.// Уберите этот блок.

    jackOptions {
        enabled true

2 .// добавить этот блок в файл gradle.properties.

     android.enableDesugar=true
0 голосов
/ 04 мая 2018

Начиная с Android Studio 3.1, JackOptions устарели. На основании документации :

Если ваш проект зависит от Джека, вы должны перейти на поддержку Java 8, встроенную в стандартную цепочку инструментов Android Studio.

Чтобы отключить Джек и переключиться на набор инструментов по умолчанию, просто удалите блок jackOptions из build.gradle вашего модуля

Вы можете обратиться к объявлению здесь

...