Skip to content

Commit

Permalink
fix: trying to fix build apk
Browse files Browse the repository at this point in the history
  • Loading branch information
AnggaPutraa committed Dec 12, 2022
1 parent 16b6fc0 commit c793962
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Development

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the develop branch
# Triggers the workflow on push or pull request events but only for the Development branch
push:
branches: [development]
pull_request:
Expand Down
18 changes: 9 additions & 9 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,24 +54,24 @@ android {
}

signingConfigs {
release {
release {
storeFile file("../../release-keystore.jks")
storePassword = "$System.env.KEY_PASSWORD"
keyAlias = "release"
keyPassword = "$System.env.KEY_PASSWORD"
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
}

flutter {
source '../..'
}

dependencies {
// implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}

0 comments on commit c793962

Please sign in to comment.