Android: ошибка: аннотации не поддерживаются в -source 1.3 - PullRequest
0 голосов
/ 16 июня 2019

Я попытался добавить несколько модулей, и когда я перестраивал проект, я получил эту ошибку:

error: annotations are not supported in -source 1.3
(use -source 5 or higher to enable annotations) 

Я удалил модули, но ошибка остается.пытался очистить и восстановить, не помогло.

Я понял, что это как-то связано с Java Maven, но я не понимал, как ее решить.Может быть, кто-то здесь может помочь?

это мой Gradle:

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

}
dependencies {
    classpath 'com.android.tools.build:gradle:3.4.1'
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    classpath 'com.google.gms:google-services:4.2.0'
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
 }

allprojects {
repositories {
    google()
    jcenter()
    maven {
        url "https://maven.java.net/content/groups/public/"
    }

    maven { url 'https://jitpack.io' }

    maven { url "https://maven.google.com" }


  }
}

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






apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'
apply plugin: 'com.google.gms.google-services'


android {
   compileSdkVersion 28
   defaultConfig {
      applicationId "com.eldareini.kotlin.meet4match"
      minSdkVersion 21
      targetSdkVersion 28
      versionCode 1
      versionName "1.0"
      testInstrumentationRunner 
  "android.support.test.runner.AndroidJUnitRunner"

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

packagingOptions {
    pickFirst 'META-INF/LICENSE.txt' // picks the JavaMail license file
}
compileOptions {
    sourceCompatibility = kotlin_version
    targetCompatibility = kotlin_version
}
   buildToolsVersion = '28.0.3'
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.sun.mail:android-mail:1.6.0'
implementation 'com.sun.mail:android-activation:1.6.0'
implementation 'com.github.mac229.FragmentUtils:fragmentutils-kt:1.0.1'
implementation 'com.github.mac229.FragmentUtils:fragmentutils:1.0.1'
implementation 'com.sun.mail:android-mail:1.6.0'
implementation 'com.sun.mail:android-activation:1.6.0'
implementation 'org.webrtc:google-webrtc:1.0.+'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

1 Ответ

0 голосов
/ 17 июня 2019

Вы используете версию библиотеки Kotlin, чтобы указать исходную / целевую совместимость вашей сборки.

Проблема здесь:

compileOptions {
    sourceCompatibility = kotlin_version
    targetCompatibility = kotlin_version
}

kotlin_version равно 1.3

Попробуйте следующее:

compileOptions {
    sourceCompatibility = '1.8'
    targetCompatibility = '1.8'
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...