Skip to content

Commit

Permalink
Revert "Update example app's build.gradle"
Browse files Browse the repository at this point in the history
This reverts commit e98cbd0.
  • Loading branch information
temeddix committed Jun 8, 2024
1 parent e98cbd0 commit 2e55fa9
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions flutter_ffi_plugin/example/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,29 @@
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 2e55fa9

Please sign in to comment.