Skip to content

Commit

Permalink
more bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed May 6, 2024
1 parent 3e2c8e9 commit cf0229d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
6 changes: 5 additions & 1 deletion packages/location/example/android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id "com.android.application"
id "dev.flutter.flutter-gradle-plugin"
id "org.jetbrains.kotlin.android"
id "dev.flutter.flutter-gradle-plugin"
}

def localProperties = new Properties()
Expand Down Expand Up @@ -39,6 +39,10 @@ android {
targetCompatibility = JavaVersion.VERSION_1_8
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8
}

buildTypes {
release {
// TODO: Add your own signing config for the release build.
Expand Down
11 changes: 3 additions & 8 deletions packages/location/example/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
allprojects {
repositories {
google()
mavenCentral()
}
}

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

tasks.register("clean", Delete) {
delete rootProject.buildDir
delete(rootProject.buildDir)
}

0 comments on commit cf0229d

Please sign in to comment.