Skip to content

Commit

Permalink
update GH actions flutter-version to 3.10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
josuigoa committed Sep 11, 2023
1 parent ac3b325 commit 6bda1ba
Show file tree
Hide file tree
Showing 4 changed files with 102 additions and 110 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Expand Up @@ -20,7 +20,7 @@ jobs:
# Setup the flutter environment.
- uses: subosito/flutter-action@v1
with:
flutter-version: '3.7.6'
flutter-version: '3.10.5'

# Get flutter dependencies.
- run: flutter pub get
Expand Down
62 changes: 31 additions & 31 deletions android/build.gradle
@@ -1,31 +1,31 @@
buildscript {
ext.kotlin_version = '1.5.31'
repositories {
google()
jcenter()
}

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

allprojects {
repositories {
google()
jcenter()
}
}

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

task clean(type: Delete) {
delete rootProject.buildDir
}
buildscript {
ext.kotlin_version = '1.6.10'
repositories {
google()
jcenter()
}

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

allprojects {
repositories {
google()
jcenter()
}
}

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

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

0 comments on commit 6bda1ba

Please sign in to comment.