Skip to content

Commit

Permalink
๐Ÿš€[ Release v.2.7.1] Merge into Develop (litecoin-foundation#104)
Browse files Browse the repository at this point in the history
* ๐Ÿš€[ Release v.2.7.0] Merge into Main (litecoin-foundation#30)

* Added ัƒะบั€ะฐั—ะฝััŒะบะธะน language

- add uk xml file
-  removed the nl, sv, da files
- Escaped apostrphes in UK strings file
- Updated language choices

* ๐Ÿ’ฃ๐Ÿž[Hotbug fix] sharedprefs fb fix (litecoin-foundation#19)

* Added notes

* Bugfix - add missing pendingIntent flag for android 13

* Use firebase bom

* subproject commit

* version bump

* Disabled FB send, Added Get Tasks

* Patch to hard code fees

- Static fees
- Removed the dep
- Turn crashlytics back on/off/on

Co-authored-by: Victor Sima <vic.sima@gmail.com>

* ๐Ÿš€[ Release v.2.6.0] Merge into Develop  (litecoin-foundation#13)

* version bump

* Hotfix/crashes v2.6.0 (litecoin-foundation#17)

* Added notes

* Bugfix - add missing pendingIntent flag for android 13

* Use firebase bom

Co-authored-by: kcw-grunt <mrkerrywashington@icloud.com>

Co-authored-by: Victor Sima <vic.sima@gmail.com>

* ๐Ÿš€[Release] v2.6.1 (litecoin-foundation#21)

* version code bump

* ๐Ÿš€[ Release v.2.6.0] Merge into Main  (litecoin-foundation#12)

* Added ัƒะบั€ะฐั—ะฝััŒะบะธะน language

- add uk xml file
-  removed the nl, sv, da files
- Escaped apostrphes in UK strings file
- Updated language choices

* ๐Ÿฅณ[Feature] Unstoppable ext update (litecoin-foundation#11)

* WIP: DNC

Dropped in the UD code prior to testing

* Added study link

* Fix unstoppable domains dependency

* Updated the UD ext text

WIP::::Need to refactor once UK and deletion on SV, NL, DA

* added UK lang

Co-authored-by: Victor Sima <vic.sima@gmail.com>

* version bump

* Hotfix/crashes v2.6.0 (litecoin-foundation#17)

* Added notes

* Bugfix - add missing pendingIntent flag for android 13

* Use firebase bom

Co-authored-by: kcw-grunt <mrkerrywashington@icloud.com>

Co-authored-by: Victor Sima <vic.sima@gmail.com>

Co-authored-by: Victor Sima <vic.sima@gmail.com>

* Feature/add bitrefill (litecoin-foundation#28)

* added bitrefill

- added kotlin fix

* Added localizations

- added logo

* Added Bitrefill Link

* hides fiat scollview from Bitrefill

* Adjusted the padding at the buy tab item view

* fixe test in Bitrefill detail

* fied logo and layout

* bump version and version code

* Feature/update branding (litecoin-foundation#29)

* added new logo

- reset the layout

* version code

* replaced coin logo

* bump versioncode

* fixed dep version

* added Bitrefill web listener

Co-authored-by: Victor Sima <vic.sima@gmail.com>

* Create FUNDING.yml

For GH Sponsor

* ๐Ÿ’ฃ๐Ÿž[Hotbug fix] sharedprefs fb fix (litecoin-foundation#19)

* Added notes

* Bugfix - add missing pendingIntent flag for android 13

* Use firebase bom

* subproject commit

* version bump

* Disabled FB send, Added Get Tasks

* Patch to hard code fees

- Static fees
- Removed the dep
- Turn crashlytics back on/off/on

Co-authored-by: Victor Sima <vic.sima@gmail.com>

* Feature/add bitrefill (litecoin-foundation#28)

* added bitrefill

- added kotlin fix

* Added localizations

- added logo

* Added Bitrefill Link

* hides fiat scollview from Bitrefill

* Adjusted the padding at the buy tab item view

* fixe test in Bitrefill detail

* fied logo and layout

* bump version and version code

* Feature/update branding (litecoin-foundation#29)

* added new logo

- reset the layout

* version code

* ๐Ÿš€[ Release v.2.7.0] Merge into Develop (litecoin-foundation#32)

* replaced coin logo

* bump versioncode

* fixed dep version

* added Bitrefill web listener

* [Techdebt/] pdate match firebase events 33 (litecoin-foundation#48)

* Added the equivalenmt events

- updated web link

* WIP : Should compile

* Fixed constants

* Udpaded all Analytics constants

* Added basic tests

- This is WIP
- Need to debug the Tests

* version bump

* fiexd compile bug

* version bump

* renmoved staging

* moved backup rates

* code bump

* Updated test configs

* Move api resources to central location

- version code bump

Co-authored-by: Victor Sima <vic.sima@gmail.com>
  • Loading branch information
kcw-grunt and vsima committed Apr 8, 2023
1 parent e458123 commit 22014a8
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,20 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle sa
// WebViewCompat.addWebMessageListener(webView, "bitrefillPostObj", rules, bitrefillListener);
// }

// App (in Java)
WebMessageListener bitrefillListener = new WebMessageListener() {
@Override
public void onPostMessage(WebView view, WebMessageCompat message, Uri sourceOrigin,
boolean isMainFrame, JavaScriptReplyProxy replyProxy) {
// do something about view, message, sourceOrigin and isMainFrame.
replyProxy.postMessage("Got it!");
}
};

if (WebViewFeature.isFeatureSupported(WebViewFeature.WEB_MESSAGE_LISTENER)) {
WebViewCompat.addWebMessageListener(webView, "bitrefillPostObj", rules, bitrefillListener);
}

String currency = getArguments().getString(CURRENCY_KEY);
Partner partner = (Partner) getArguments().getSerializable(PARTNER_KEY);

Expand Down

0 comments on commit 22014a8

Please sign in to comment.