Skip to content

Commit

Permalink
Update AGP to 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Laimiux committed Aug 5, 2021
1 parent 7372b6a commit 44e7869
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath 'com.android.tools.build:gradle:7.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "com.vanniktech:gradle-android-junit-jacoco-plugin:0.16.0"
classpath "com.github.ben-manes:gradle-versions-plugin:0.36.0"
Expand Down
3 changes: 2 additions & 1 deletion formula-android-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ task javadoc(type: Javadoc) {
failOnError false
source = android.sourceSets.main.java.sourceFiles
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
classpath += configurations.compile
classpath += configurations.api
classpath += configurations.implementation
}

task javadocJar(type: Jar, dependsOn: javadoc) {
Expand Down
3 changes: 2 additions & 1 deletion formula-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ task javadoc(type: Javadoc) {
failOnError false
source = android.sourceSets.main.java.sourceFiles
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
classpath += configurations.compile
classpath += configurations.api
classpath += configurations.implementation
}

task javadocJar(type: Jar, dependsOn: javadoc) {
Expand Down

0 comments on commit 44e7869

Please sign in to comment.