Skip to content

Commit

Permalink
Update example app's build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
temeddix committed Jun 8, 2024
1 parent 6cfabd5 commit e98cbd0
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions flutter_ffi_plugin/example/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,29 +1,16 @@
buildscript {
ext.kotlin_version = '1.7.10'
repositories {
google()
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:7.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

allprojects {
repositories {
google()
mavenCentral()
}
}

rootProject.buildDir = '../build'
rootProject.buildDir = "../build"
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
project.evaluationDependsOn(":app")
}

tasks.register("clean", Delete) {
Expand Down

0 comments on commit e98cbd0

Please sign in to comment.