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 convert string to character array 
Typescript :: array containing objects with matching elements 
Typescript :: verify if object is of a certain type type in typescript 
Typescript :: array in typescript 
Typescript :: react google charts x labels multiline 
Typescript :: custom link react 
Typescript :: Custom validation for phone-number using class-validator package 
Typescript :: whats ruby used for 
Typescript :: can ts object be strongly typed? 
Typescript :: push in typescript 
Typescript :: update behaviorsubject value without emitting 
Typescript :: latest unity version that supports 32 bit 
Typescript :: typescript reduce filter examples 
Typescript :: angular find and remove from string 
Typescript :: typescript type specific strings 
Typescript :: display entry count for specific column using value_counts spyder. 
Typescript :: abstract data structure types 
Typescript :: Unshift type Typescript 
Typescript :: typescript syntax 
Typescript :: Error: Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops. 
Typescript :: subscribe in angular 10 
Typescript :: paths typescript 
Typescript :: servlets meaning 
Typescript :: typescript document.getelementbyid object is possibly null 
Typescript :: string to int tsx 
Typescript :: sum all elements using each_with_object ruby 
Typescript :: mat dialog position absolute 
Typescript :: cpt ui plugin hidden single post type from search results in website 
Typescript :: when should you stop testing 
Typescript :: sum the digits in c 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =