|
| 1 | +name: Bug report |
| 2 | +description: Create a report to help us improve Amplify UI Android |
| 3 | + |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: | |
| 8 | + Thank you for taking the time to fill out this bug report! Try to include as much information as you can. |
| 9 | + |
| 10 | + - type: checkboxes |
| 11 | + attributes: |
| 12 | + label: | |
| 13 | + Before creating a new issue, please confirm: |
| 14 | + options: |
| 15 | + - label: I have [searched for duplicate or closed issues](https://github.com/aws-amplify/amplify-ui-android/issues?q=is%3Aissue+). |
| 16 | + required: true |
| 17 | + - label: I have read the guide for [submitting bug reports](https://github.com/aws-amplify/amplify-ui-android/blob/main/CONTRIBUTING.md#reporting-bugsfeature-requests). |
| 18 | + required: true |
| 19 | + |
| 20 | + - type: markdown |
| 21 | + attributes: |
| 22 | + value: | |
| 23 | + ## Environment |
| 24 | + - type: dropdown |
| 25 | + attributes: |
| 26 | + label: Language and Async Model |
| 27 | + description: What programming language is being used? |
| 28 | + multiple: true |
| 29 | + options: |
| 30 | + - Kotlin |
| 31 | + - Java |
| 32 | + - RxJava |
| 33 | + - Not applicable |
| 34 | + validations: |
| 35 | + required: true |
| 36 | + - type: dropdown |
| 37 | + attributes: |
| 38 | + label: Which UI component? |
| 39 | + description: Select one of our UI components below. |
| 40 | + multiple: true |
| 41 | + options: |
| 42 | + - Liveness |
| 43 | + - Other |
| 44 | + validations: |
| 45 | + required: true |
| 46 | + - type: textarea |
| 47 | + attributes: |
| 48 | + label: Gradle script dependencies |
| 49 | + description: | |
| 50 | + Please provide the version of Amplify UI Android being used from your `build.gradle (Module: app)` file. |
| 51 | + value: | |
| 52 | + ```groovy |
| 53 | + // Put output below this line |
| 54 | +
|
| 55 | + ``` |
| 56 | + validations: |
| 57 | + required: true |
| 58 | + - type: textarea |
| 59 | + attributes: |
| 60 | + label: Environment information |
| 61 | + description: | |
| 62 | + Please run the following command inside your project and copy/paste the output below: |
| 63 | + ``` |
| 64 | + ./gradlew --version |
| 65 | + ``` |
| 66 | + value: | |
| 67 | + ``` |
| 68 | + # Put output below this line |
| 69 | +
|
| 70 | +
|
| 71 | + ``` |
| 72 | + validations: |
| 73 | + required: true |
| 74 | + - type: markdown |
| 75 | + attributes: |
| 76 | + value: | |
| 77 | + ## Details |
| 78 | + - type: input |
| 79 | + attributes: |
| 80 | + label: Please include any relevant guides or documentation you're referencing |
| 81 | + - type: textarea |
| 82 | + attributes: |
| 83 | + label: Describe the bug |
| 84 | + description: A clear and concise description of what the bug is. |
| 85 | + validations: |
| 86 | + required: true |
| 87 | + - type: textarea |
| 88 | + attributes: |
| 89 | + label: Reproduction steps (if applicable) |
| 90 | + description: | |
| 91 | + How do you trigger this bug? Please walk us through it step by step. Screenshots can be attached in textarea below. |
| 92 | + placeholder: | |
| 93 | + 1. Install '...' |
| 94 | + 2. Configure '...' |
| 95 | + 3. Go to '...' |
| 96 | + 4. See error |
| 97 | + - type: textarea |
| 98 | + attributes: |
| 99 | + label: Code Snippet |
| 100 | + description: | |
| 101 | + Please provide a code snippet or a link to sample code of the issue you are experiencing to help us reproduce the issue. |
| 102 | +
|
| 103 | + **Be sure to remove any sensitive data.** |
| 104 | + value: | |
| 105 | + ```java |
| 106 | + // Put your code below this line. |
| 107 | +
|
| 108 | + ``` |
| 109 | + - type: textarea |
| 110 | + attributes: |
| 111 | + label: Log output |
| 112 | + description: | |
| 113 | + For example, error messages or stack traces. |
| 114 | +
|
| 115 | + **Be sure to remove any sensitive data.** |
| 116 | + value: | |
| 117 | + ``` |
| 118 | + // Put your logs below this line |
| 119 | +
|
| 120 | +
|
| 121 | + ``` |
| 122 | + - type: markdown |
| 123 | + attributes: |
| 124 | + value: | |
| 125 | + ## Configuration |
| 126 | + - type: textarea |
| 127 | + attributes: |
| 128 | + label: amplifyconfiguration.json |
| 129 | + description: If applicable, please provide your `amplifyconfiguration.json` file with sensitive information removed. |
| 130 | + placeholder: | |
| 131 | + ```json |
| 132 | + { |
| 133 | + "UserAgent": "aws-amplify-cli/2.0", |
| 134 | + "Version": "1.0", |
| 135 | + "api": { |
| 136 | + "plugins": { |
| 137 | + "awsAPIPlugin": { |
| 138 | + "amplifyDatasource": { |
| 139 | + "endpointType": "GraphQL", |
| 140 | + "endpoint": "https://xxxxxxxxxxxxxxxxxxxxxxxxxx.appsync-api.us-east-2.amazonaws.com/graphql", |
| 141 | + "region": "us-east-2", |
| 142 | + "authorizationType": "API_KEY", |
| 143 | + "apiKey": "xxx-xxxxxxxxxxxxxxxxxxxxxxxxxx" |
| 144 | + } |
| 145 | + } |
| 146 | + } |
| 147 | + } |
| 148 | + } |
| 149 | + ``` |
| 150 | + - type: textarea |
| 151 | + attributes: |
| 152 | + label: Additional information and screenshots |
| 153 | + description: | |
| 154 | + If you have any additional information, workarounds, etc. for us, use the field below. |
| 155 | + Please note, you can attach screenshots or screen recordings here, by |
| 156 | + dragging and dropping files in the field below. |
0 commit comments