Search
 
SCRIPT & CODE EXAMPLE
 

TYPESCRIPT

the android gradle plugin supports only kotlin gradle plugin version 1.3.10 and higher

I faced this problem too and I fixed it by doing the following:

In project level build.gradle, I have ext.kotlin_version = '1.3.10'

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

ext {
    roomVersion = '1.0.0'
    archLifecycleVersion = '1.1.0'
}
Comment

The Android Gradle plugin supports only Kotlin Gradle plugin version 1.3.40 and higher. flutter compressvideo

in your file pubspec.yaml add lines,
The real problem is that pub.dev contains a previous version of this library (3.1.0). How to update:

#video_compress: ^3.1.0 //coment this line and add ->
  video_compress:
    git:
      url: https://github.com/jonataslaw/VideoCompress.git
      ref: master
Comment

PREVIOUS NEXT
Code Example
Typescript :: typescript object literals 
Typescript :: __REDUX_DEVTOOLS_EXTENSION_COMPOSE__ 
Typescript :: nest js http exceptions 
Typescript :: use pipe in ts file angulr 
Typescript :: Pass parameter to NestJs Guard 
Typescript :: indexof typescript 
Typescript :: typescript interface 
Typescript :: typescript generic of multiple type 
Typescript :: download blob typescript 
Typescript :: typeorm configuration typescript 
Typescript :: how to list elements of an array C# 
Typescript :: world-times-newspaper-magazine-style-ghost-blog-theme 
Typescript :: check null typescript 
Typescript :: typescript typeof interface property 
Typescript :: list elements not in indices 
Typescript :: string to int tsx 
Typescript :: reorder inline-block elements css 
Typescript :: typescript d ts meaning 
Typescript :: how to show account related contacts on click of a button using lightnig components 
Typescript :: localhost magento 2 installation redirects to the live server 
Typescript :: the benefits of deploying a network using a WLC 
Typescript :: check if package exists inside the device adb 
Typescript :: typescript find non matching objects in two arrays 
Typescript :: how to loop through a specific number of elements in a list python 
Typescript :: They Take Their Medication Then The Device Owner Lets Them Press The Button | The Problem We Are Solving Is Kids Not Taking Their Medication Which Turns To Great Health Benefits In The Young Generation 
Typescript :: when to test analysis 
Typescript :: What will be the result of the cp /etc/hosts . command? 
Typescript :: count custom posts type basis of author 
Typescript :: how to find nuber of tweets per day using python 
Typescript :: quizlet In converting an entrepreneurial business script into an enterprise value chain, the financing process of the value chain is usually made up of two different scenes 
ADD CONTENT
Topic
Content
Source link
Name
6+9 =