Method 'void com.paypal.pyplcheckout.di.DaggerSdkComponent$Factory.<init>()' is inaccessible to class 'com.paypal.pyplcheckout.di.DaggerSdkComponent' (declaration of 'com.paypal.pyplcheckout.di.DaggerSdkComponent' appears in /data/app/com.marineonline.app-NDFpNmA3WJVGGLKMNiiphA==/base.apk!classes4.dex) #15
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
# from https://docs.github.com/en/actions/managing-issues-and-pull-requests/commenting-on-an-issue-when-a-label-is-added | |
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# GitHub recommends pinning actions to a commit SHA. | |
# To get a newer version, you will need to update the SHA. | |
# You can also reference a tag or branch, but the action may change without warning. | |
name: Auto response to raised live issues | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
add-comment: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Add automated comment | |
uses: peter-evans/create-or-update-comment@v3 | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Thank you for reaching out to the Native Checkout SDK team. This integration path is now inactive for new merchants. | |
If you are an existing merchant, please contact us [here](https://www.paypal.com/us/business/contact-sales) for further assistance. | |
New merchants can integrate the Native Checkout experience via the Braintree Android SDK or PayPal Android SDK. | |
For more information please see their respective developer documentation linked below. | |
* [Braintree Android SDK](https://developer.paypal.com/braintree/docs/guides/overview) | |
* [PayPal Android SDK](https://developer.paypal.com/beta/advanced-mobile/integrate-android/) |