-
Notifications
You must be signed in to change notification settings - Fork 536
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
Final API23 (Android 6) Support Release #2699
Open
asif-finimble
wants to merge
36
commits into
master
Choose a base branch
from
2636_api_23_crashfix
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 8 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
a8fc438
Enable desugar
asif-finimble 70d52f0
Fixed API23 crashes and compatibility using modded web3j-3.3.1-android
asif-finimble cfe5863
Update core web3j for ENS feature
JamesSmartCell 00118c1
fix formatting
JamesSmartCell e09aac9
Update final version message and library
JamesSmartCell 136a009
update API23 notice
JamesSmartCell 6d33440
Fix Inject for websites in same domain
JamesSmartCell b22f8c5
bump gradle
JamesSmartCell f6ad872
Update to current master for re-release
JamesSmartCell d1109d2
Add RPC validation fix, swap providers and bump gradle
JamesSmartCell ff528b7
test release
JamesSmartCell 256b2d2
Remove play library to push release through
JamesSmartCell 1762e06
Remove anayltics
JamesSmartCell c728fff
Update gradle
JamesSmartCell f4ce0b4
Fix for Android deeplink issues
JamesSmartCell ec3aa09
Fix most of the crashes (#2956)
seabornlee 70d0d4d
fix NPEs
JamesSmartCell 341ff5e
Fix for video not looping (#2941)
JamesSmartCell 072a99b
Add IPFS connection point (#2920)
JamesSmartCell d515e86
Remove PHI network (#2952)
justindg 39f2dc9
Bump gradle to 3.60.
JamesSmartCell d982e4d
Fix crashbug and update gradle for release update.
JamesSmartCell b9df7e9
Add tertiary key for Infura to test usage
JamesSmartCell 267fb3e
Fix swap tests
JamesSmartCell 6d68fe3
Add caching for ENS resolve.
JamesSmartCell 2537d6a
Restrict calls on update ticker
JamesSmartCell c3b8656
Fix for empty ticker returns
JamesSmartCell 409624e
Bump gradle build number
JamesSmartCell e396fdf
Ensure all usages of primary URL include the required secret and repl…
JamesSmartCell 0036736
Updates
JamesSmartCell 7042ad3
Ensure all usages of primary URL include the required secret and repl…
JamesSmartCell bd08254
update
JamesSmartCell cda91d3
Cherry pick fixes
JamesSmartCell 6068cf5
Further update fixes to reduce overhead with balance updates
JamesSmartCell 83063c8
Fix various ERC721 handling bugs
JamesSmartCell dcbc9ae
Bump gradle
JamesSmartCell 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 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 | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -85,8 +85,8 @@ android { | |||||||
} | ||||||||
} | ||||||||
defaultConfig { | ||||||||
versionCode 202 | ||||||||
versionName "3.58.3" | ||||||||
versionCode 203 | ||||||||
versionName "3.59" | ||||||||
|
||||||||
applicationId "io.stormbird.wallet" | ||||||||
minSdkVersion 23 | ||||||||
|
@@ -184,6 +184,8 @@ android { | |||||||
abortOnError false | ||||||||
} | ||||||||
compileOptions { | ||||||||
// Flag to enable support for the new language APIs | ||||||||
coreLibraryDesugaringEnabled true | ||||||||
targetCompatibility JavaVersion.VERSION_1_8 | ||||||||
sourceCompatibility JavaVersion.VERSION_1_8 | ||||||||
} | ||||||||
|
@@ -273,8 +275,9 @@ dependencies { | |||||||
implementation 'com.github.apl-devs:appintro:v4.2.2' | ||||||||
implementation 'com.github.romandanylyk:PageIndicatorView:v1.0.0' | ||||||||
|
||||||||
//coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.5' | ||||||||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5' | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
by Android Lint 🤖 |
||||||||
|
||||||||
implementation 'io.reactivex:rxjava:1.2.4' | ||||||||
// ReactiveX | ||||||||
implementation 'io.reactivex.rxjava2:rxjava:2.2.21' | ||||||||
implementation "io.reactivex.rxjava2:rxandroid:2.1.1" | ||||||||
|
Binary file not shown.
This file contains 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GradleDependency
by Android Lint 🤖