From 8eedb63f7b2271eae004f7b6eb003eda5784c88d Mon Sep 17 00:00:00 2001 From: Harsh Bhikadia Date: Thu, 13 May 2021 10:36:38 +0530 Subject: [PATCH 1/2] doc(readme): typo fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e242153..d734dfc 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ To read more about "Starting Activities and Getting Results" pattern, encourage Additionaly, in the case of activity started with `startActivityWithResult`, the `Intent` object will also have package name (`intent.fromPackageName`) and app signautres (`intent.fromSignatures`) of the calling activity. This could be used to validate the calling app, so that sensitive information is not given to unintendent apps. #### Tools to test it You can test this with either [`adb`](https://developer.android.com/studio/command-line/adb) or [Intent Test](https://play.google.com/store/apps/details?id=com.applauncher.applauncher) app form Playstore. -##### abd +##### adb To invoke (start) our `FlutterAcitivity` with `RECEIVE_INTENT_EXAMPLE_ACTION` intent action name as mentioned in example `` [above](#add-intent-filter-to-AndroidMainfest.xml): ```sh adb shell 'am start -W -a RECEIVE_INTENT_EXAMPLE_ACTION -c android.intent.category.DEFAULT' From 6f572b38cdef173b2b9728c4430867a467cca077 Mon Sep 17 00:00:00 2001 From: Harsh Bhikadia Date: Thu, 13 May 2021 10:37:56 +0530 Subject: [PATCH 2/2] ci(analysis): upgraded analyzer action to v3 --- .github/workflows/analysis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index e5d5fd0..06dc36c 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -6,10 +6,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 # required - - uses: axel-op/dart-package-analyzer@stable + - uses: axel-op/dart-package-analyzer@v3 with: # Required: githubToken: ${{ secrets.GITHUB_TOKEN }} # Optional: #relativePath: packages/mypackage/ - #minAnnotationLevel: info \ No newline at end of file