-
Notifications
You must be signed in to change notification settings - Fork 153
Release 3.6.1 #224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+300
−210
Merged
Release 3.6.1 #224
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
459bced
Enable read block for iOS MIFARE Classic
rushank-shah 46380e0
Updated Readme.
rushank-shah ec54bef
Enable write block for iOS MIFARE Classic
rushank-shah 6bf8b46
Updated readme
rushank-shah c313e54
Code Refactor
rushank-shah 1284d67
Merge pull request #205 from rushank-shah/develop
jiegec 6ca4f7d
Fix: Ensure NFC Handler thread is alive for Android SDK 35
Akshyappinventiv a8c117b
fix: add error handling for failed NFC Handler.post
Akshyappinventiv 16e5532
Merge pull request #219 from Akshya107/fix/nfc-handler-dead-thread
Harry-Chen c88a240
ci: bump action version
Harry-Chen 5ec3f6f
build: bump to Gradle 9.0.0, AGP 8.13.0, Kotlin 2.2.10
Harry-Chen bd14f82
build: increase max Java heap to avoid OOM when building debug variant
Harry-Chen c0fe665
web: refactor with dart:js_interop (fix #223)
Harry-Chen 33235cc
ci: bump versions of actions
Harry-Chen e38f6e1
chore: run dart fmt
Harry-Chen cee698e
example: bump dependencies
Harry-Chen 0e13120
doc: fix typo in README (fix: #221)
Harry-Chen 506e84e
android: prevent NPE due to wrong typing of NFC API (fix: #220)
Harry-Chen 83e07fe
doc: add comments on samsung bug (see: #190, #200)
Harry-Chen 6c44757
android: lower minSdkVersion to 24 (see: #212)
Harry-Chen e7fd467
build: bump to gradle 9.2.1, AGP 8.13.0, Kotlin 2.2.21
Harry-Chen cd11633
example: add a missing newline
Harry-Chen 4e58f7c
example: update web example to use latest bootstrap js
Harry-Chen 0cf9892
feat: return empty tag stream on non-Android device
Harry-Chen dd7519d
Bump to v3.6.1
Harry-Chen 9130224
ci: run dart doc and pana before building APK
Harry-Chen f9bd7f4
ci: split test and build example app
Harry-Chen 94059a8
ci: remove hardcoded flutter version in publish.yaml
Harry-Chen 3e5d62c
fix: apply suggestions from code review
Harry-Chen fd9be81
ios: address more review comments, add more detailed error message
Harry-Chen 3c92517
android: refine nfc handler logic to prevent thread leaking
Harry-Chen 0646493
ci: resolve more review comments
Harry-Chen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| name: Test | ||
|
|
||
| on: | ||
| push: | ||
| branches: [master, develop] | ||
| pull_request: | ||
| branches: [master, develop] | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
| if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} | ||
| strategy: | ||
| matrix: | ||
| channel: [stable, beta] | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| - uses: subosito/flutter-action@v2 | ||
| with: | ||
| channel: ${{ matrix.channel }} | ||
| cache: true | ||
| - run: dart pub get | ||
| - run: dart format --output=none --set-exit-if-changed lib/ | ||
| - run: dart analyze | ||
| # - run: dart test | ||
| - run: dart doc | ||
| - name: Upload generated dartdoc | ||
| uses: actions/upload-artifact@v5 | ||
| with: | ||
| name: docs-${{ matrix.channel }} | ||
| path: doc/ | ||
| - name: Evaluate score with pana | ||
| run: | | ||
| dart pub global activate pana | ||
| dart pub global run pana . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| org.gradle.jvmargs=-Xmx1536M | ||
| org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError | ||
| android.enableJetifier=true | ||
| AGPVersion=8.7.3 | ||
| KotlinVersion=2.1.0 | ||
| AGPVersion=8.13.0 | ||
| KotlinVersion=2.2.21 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,5 @@ | ||
| #Fri Sep 08 22:01:14 CST 2023 | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,10 @@ | ||
| org.gradle.jvmargs=-Xmx1536M | ||
| org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError | ||
|
|
||
| android.useAndroidX=true | ||
| android.enableJetifier=true | ||
| android.defaults.buildfeatures.buildconfig=true | ||
| android.nonTransitiveRClass=false | ||
| android.nonFinalResIds=false | ||
|
|
||
| AGPVersion=8.7.3 | ||
| KotlinVersion=2.1.0 | ||
| AGPVersion=8.13.0 | ||
| KotlinVersion=2.2.21 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.