Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Invoke-customs are only supported starting with android 0 --min-api 26 [closed]

before i'm use build version gradle 26 but after change buildtoolsversion to 27 like as this image

I am using android studio 4.2.2 recently i update all my dependency and

      sourceCompatibility JavaVersion.VERSION_1_10
      targetCompatibility JavaVersion.VERSION_1_10

to

compileOptions {
           sourceCompatibility kotlin_version
           targetCompatibility kotlin_version
         }

after update i am getting this error please help

error : error build gradle screenshot

like image 330
Rona Idea Avatar asked Apr 18 '18 05:04

Rona Idea


3 Answers

After hours of struggling, I solved it by including the following within app/build.gradle:

android {
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

https://github.com/mapbox/mapbox-gl-native/issues/11378

like image 145
Obakeng Molebatsi Avatar answered Nov 08 '22 01:11

Obakeng Molebatsi


If compileOptions doesn't work, try this

Disable 'Instant Run'.

Android Studio -> File -> Settings -> Build, Execution, Deployment -> Instant Run -> Disable checkbox

like image 28
Roshni Kyada Avatar answered Nov 08 '22 01:11

Roshni Kyada


In my case the error was still there, because my system used upgraded Java. If you are using Java 10, modify the compileOptions:

compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_10
    targetCompatibility JavaVersion.VERSION_1_10

}
like image 30
Nata Sturza Avatar answered Nov 07 '22 23:11

Nata Sturza