diff --git a/.github/workflows/build-android.yml b/.github/workflows/build-android.yml index 981b0ec..3aae12e 100644 --- a/.github/workflows/build-android.yml +++ b/.github/workflows/build-android.yml @@ -20,9 +20,6 @@ jobs: channel: 'stable' - name: Run build apk run: | - chmod +x release.sh - ./release.sh 0.3.0 - git diff flutter pub get cd example flutter build apk diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a7fea28..2295d97 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,5 +21,6 @@ jobs: - name: Upload Test Report uses: codecov/codecov-action@v3 with: + token: ${{ secrets.CODECOV_TOKEN }} name: report files: coverage/lcov.info \ No newline at end of file diff --git a/README.md b/README.md index 7c6d51e..838cb37 100644 --- a/README.md +++ b/README.md @@ -157,7 +157,8 @@ You can also manually record screen view events whether automatic screen view tr ```dart analytics.recordScreenView( screenName: 'Main', - screenUniqueId: '123adf' + screenUniqueId: '123adf', + attributes: { ... } ); ```