Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
josuigoa committed Sep 11, 2023
2 parents e05b07f + 6bda1ba commit b8fb49d
Show file tree
Hide file tree
Showing 4 changed files with 103 additions and 111 deletions.
4 changes: 2 additions & 2 deletions .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 All @@ -29,7 +29,7 @@ jobs:
- run: flutter build apk

# Rename the apk
- run: mv build/app/outputs/apk/release/app-release.apk ideckia-release.apk
- run: mv build/app/outputs/flutter-apk/app-release.apk ideckia-release.apk

- name: Release
uses: "marvinpinto/action-automatic-releases@latest"
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 b8fb49d

Please sign in to comment.