Skip to content

Commit

Permalink
git: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
MSOB7YY committed Jul 1, 2024
1 parent 446ac7f commit 52bcc88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- uses: actions/setup-java@v1
with:
java-version: '17'
java-version: "17"

- name: setup credentials for namidaco
run: git config --global url.https://${{ secrets.PAT_ORG }}@github.com/namidaco/.insteadOf https://github.com/namidaco/
Expand All @@ -50,7 +50,7 @@ jobs:
flutter pub upgrade
- name: Modify applicationId
run: sed -i 's/applicationId "com.msob7y.namida"/applicationId "com.msob7y.namida.snapshot"/g' android/app/build.gradle
run: find ./ -type f -exec sed -i -e 's/com.msob7y.namida/com.msob7y.namida.snapshot/g' {} \;

- name: Extract version from pubspec.yaml
id: extract_version
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if (flutterVersionName == null) {
// }

android {
namespace 'com.msob7y.namida'
namespace "com.msob7y.namida"
compileSdkVersion 34
ndkVersion "26.3.11579264"
splits {
Expand Down

0 comments on commit 52bcc88

Please sign in to comment.