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
Ensure that all existing tests pass and that you add new tests for any new functionality you introduce.
27
+
28
+
## Standard of Practice
29
+
30
+
This project follows the internal standards of practice maintained by the Ping Identity SDK team. Please review and adhere to these guidelines before submitting any code:
In general, try to match the style of the existing code in the project.
36
+
37
+
## Submitting a Pull Request
38
+
39
+
1. Create a new branch for your feature or bug fix:
40
+
```sh
41
+
git checkout -b your-feature-branch
42
+
```
43
+
2. Make your changes and commit them with a clear and concise message.
44
+
3. Ensure all tests pass.
45
+
4. Push your branch to your fork:
46
+
```sh
47
+
git push origin your-feature-branch
48
+
```
49
+
5. Open a **Pull Request** to the `develop` branch of the original repository.
50
+
6. In your Pull Request, please follow the template provided. This includes:
51
+
***Linking to a JIRA ticket**if applicable.
52
+
* Providing a **clear description and justification** of the changes you have made.
53
+
54
+
Your pull request will be reviewed by the project maintainers. You may be asked to make changes before your PR is merged.
55
+
56
+
## License
57
+
58
+
By contributing to the Ping Identity Android SDK, you agree that your contributions will be licensed under the [MIT License](LICENSE) that covers the project.
0 commit comments