ошибка: аннотации не поддерживаются в -source 1.3 (используйте -source 5 или выше, чтобы включить аннотации) - PullRequest
4 голосов
/ 11 октября 2019

Я новичок в Android и создаю свой первый тестовый проект в Android Studio, но получаю эту ошибку

Компилятор Java

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

Как мне это исправить?

This is the Error

А это моя подруга

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    ext.kotlin_version = '1.3.50'
    repositories {
        google()
        jcenter()
        
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
        // 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
}

1 Ответ

3 голосов
/ 14 октября 2019

У меня тоже была та же проблема, проблема заключалась в том, что мои sourceCompatibility и targetCompatibility в compileOptions указывали на kotlin_version, устанавливая для них правильные версии Java в файле уровня проекта build.gradle.

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "x.y.z"
        minSdkVersion 22
        targetSdkVersion 28
        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
    }
    buildToolsVersion = '28.0.3'
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...