You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clearly state your question. Be as specific as possible to help us understand what you need assistance with. Provide some background on the situation or problem you're facing, explain what you are trying to achieve and where you encountered difficulties.
22
+
23
+
## Code Snippets (if applicable)
24
+
Provide any relevant code snippets that illustrate your question or the problem you're experiencing.
Include any other details that might help us understand your question better. This could include links to documentation, related GitHub issues, or any steps you've already tried.
Provide any other information that might be helpful in diagnosing the issue. This could include environment details, specific configurations, or related issues.
Provide a clear and concise description of the feature you are requesting. Explain what problem it solves or what improvement it brings to your development process.
22
+
23
+
## Purpose and Benefits
24
+
1. Describe the specific scenario or use case where this feature would be beneficial.
25
+
2. How will this feature enhance your experience or workflow?
26
+
3. Are you currently using any workarounds to achieve the desired functionality? If so, describe them.
27
+
28
+
## Proposed Solution
29
+
1. Describe the feature in detail, including how you envision it working.
30
+
2. Include any specific functionality, UI/UX elements, or configuration options you think are necessary.
31
+
32
+
## Alternative Solutions
33
+
1. Have you considered other solutions or features? If so, why do they not meet your needs?
34
+
2. Explain why the proposed feature is preferable over these alternatives.
35
+
36
+
## Additional Context
37
+
1. If applicable, link to any related GitHub issues or feature requests that might provide additional context.
38
+
2. Include any relevant links, documentation, or references that could help in understanding or implementing the feature.
39
+
40
+
## Priority
41
+
Specify how critical is this feature to your project?
# This workflow warns and then closes issues that have had no activity for a specified amount of time.
2
+
#
3
+
# You can adjust the behavior by modifying this file.
4
+
# For more information, see:
5
+
# https://github.com/actions/stale
6
+
name: Manage stale issues
7
+
8
+
on:
9
+
schedule:
10
+
- cron: '0 0 * * *'# Run every day at midnight
11
+
12
+
jobs:
13
+
close_stale_prs:
14
+
runs-on: ubuntu-latest
15
+
steps:
16
+
- name: Close stale issues
17
+
uses: actions/stale@v9
18
+
with:
19
+
any-of-labels: 'Needs more info'
20
+
stale-issue-message: 'This issue is now stale because it has been open for 14 days with no activity. Please provide the requested information or the issue will be closed automatically.'
21
+
close-issue-message: 'This issue is now closed because it has been stalled for 14 days with no activity.'
*[Additional documentation for payment methods][docs.github.paymentMethods]
58
60
59
61
## Migrate from v4
60
62
@@ -65,15 +67,15 @@ If you are upgrading from 4.x.x to a current release, check out our [migration g
65
67
If you use ProGuard or R8, you do not need to manually add any rules, as they are automatically embedded in the artifacts.
66
68
Please let us know if you find any issues.
67
69
68
-
## Development
70
+
## Development and testing
69
71
70
72
For development and testing purposes the project is accompanied by a test app. See [here](example-app/README.md) how to set it up and run it.
71
73
72
-
## Support
74
+
To test your integration you could use [Adyen Test Cards Android][adyenTestCardsAndroid]. This will allow you to easily prefill test payment method information.
73
75
74
-
If you have a feature request, or spotted a bug or a technical problem, [create an issue here][github.newIssue].
76
+
## Support
75
77
76
-
For other questions, [contact our support team][adyen.support].
78
+
If you have a feature request, or spotted a bug or a technical problem, [create an issue here][github.newIssue]. For other questions, contact our Support Team via [Customer Area][adyen.support] or via email: [email protected]
77
79
78
80
## Analytics and data tracking
79
81
@@ -105,19 +107,22 @@ This repository is available under the [MIT license](LICENSE).
0 commit comments