|
| 1 | +name: 🐛 Removal Problem Report |
| 2 | +description: Report issues encountered when removing a specific package |
| 3 | +title: "[REMOVAL ISSUE]: " |
| 4 | +labels: ["bug", "removal-issue"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + ## Report Package Removal Issues |
| 10 | + |
| 11 | + Use this template to report problems that occurred after removing a specific bloatware package. |
| 12 | +
|
| 13 | + - type: dropdown |
| 14 | + id: brand |
| 15 | + attributes: |
| 16 | + label: Device Brand |
| 17 | + description: What brand is your device? |
| 18 | + options: |
| 19 | + - Samsung |
| 20 | + - Xiaomi |
| 21 | + - Oppo |
| 22 | + - Vivo |
| 23 | + - Realme |
| 24 | + - OnePlus |
| 25 | + - Huawei |
| 26 | + - Honor |
| 27 | + - Motorola |
| 28 | + - Nothing |
| 29 | + - Tecno |
| 30 | + - Infinix |
| 31 | + - Lenovo |
| 32 | + - Google |
| 33 | + - Asus |
| 34 | + - Other |
| 35 | + validations: |
| 36 | + required: true |
| 37 | + |
| 38 | + - type: input |
| 39 | + id: device_model |
| 40 | + attributes: |
| 41 | + label: Device Model |
| 42 | + description: Specific device model |
| 43 | + placeholder: "Samsung Galaxy S21 Ultra" |
| 44 | + validations: |
| 45 | + required: true |
| 46 | + |
| 47 | + - type: input |
| 48 | + id: android_version |
| 49 | + attributes: |
| 50 | + label: Android Version |
| 51 | + description: Android version and custom UI (if applicable) |
| 52 | + placeholder: "Android 13 / One UI 5.1" |
| 53 | + validations: |
| 54 | + required: true |
| 55 | + |
| 56 | + - type: input |
| 57 | + id: package_name |
| 58 | + attributes: |
| 59 | + label: Package Name |
| 60 | + description: Which package caused the issue? |
| 61 | + placeholder: "com.example.package" |
| 62 | + validations: |
| 63 | + required: true |
| 64 | + |
| 65 | + - type: dropdown |
| 66 | + id: severity |
| 67 | + attributes: |
| 68 | + label: Issue Severity |
| 69 | + description: How severe is the problem? |
| 70 | + options: |
| 71 | + - 🔴 Critical - Device won't boot or major functionality lost |
| 72 | + - 🟠 High - Important features broken but device usable |
| 73 | + - 🟡 Medium - Minor features affected |
| 74 | + - 🟢 Low - Cosmetic or very minor issues |
| 75 | + validations: |
| 76 | + required: true |
| 77 | + |
| 78 | + - type: textarea |
| 79 | + id: issue_description |
| 80 | + attributes: |
| 81 | + label: Issue Description |
| 82 | + description: Describe what went wrong after removing the package |
| 83 | + placeholder: | |
| 84 | + After removing this package: |
| 85 | + - Feature X stopped working |
| 86 | + - App Y crashes on launch |
| 87 | + - System shows error message: "..." |
| 88 | + - Device behavior changed: ... |
| 89 | + validations: |
| 90 | + required: true |
| 91 | + |
| 92 | + - type: textarea |
| 93 | + id: removal_method |
| 94 | + attributes: |
| 95 | + label: Removal Method |
| 96 | + description: How did you remove the package? |
| 97 | + placeholder: | |
| 98 | + Method used: |
| 99 | + - [ ] Using this tool (main.py) |
| 100 | + - [ ] ADB command: pm uninstall --user 0 |
| 101 | + - [ ] ADB command: pm uninstall -k --user 0 |
| 102 | + - [ ] Other ADB command (specify) |
| 103 | + - [ ] Third-party app (specify) |
| 104 | + validations: |
| 105 | + required: true |
| 106 | + |
| 107 | + - type: textarea |
| 108 | + id: reproduction_steps |
| 109 | + attributes: |
| 110 | + label: Steps to Reproduce |
| 111 | + description: How can others reproduce this issue? |
| 112 | + placeholder: | |
| 113 | + 1. Remove package using: adb shell pm uninstall --user 0 com.example.package |
| 114 | + 2. Reboot device |
| 115 | + 3. Open Settings app |
| 116 | + 4. Navigate to Feature X |
| 117 | + 5. Observe error message |
| 118 | + validations: |
| 119 | + required: true |
| 120 | + |
| 121 | + - type: textarea |
| 122 | + id: expected_behavior |
| 123 | + attributes: |
| 124 | + label: Expected Behavior |
| 125 | + description: What did you expect to happen? |
| 126 | + placeholder: "Package should be removed safely without affecting other features..." |
| 127 | + validations: |
| 128 | + required: true |
| 129 | + |
| 130 | + - type: textarea |
| 131 | + id: actual_behavior |
| 132 | + attributes: |
| 133 | + label: Actual Behavior |
| 134 | + description: What actually happened? |
| 135 | + placeholder: "System crashes when trying to access feature X..." |
| 136 | + validations: |
| 137 | + required: true |
| 138 | + |
| 139 | + - type: dropdown |
| 140 | + id: recovery_attempted |
| 141 | + attributes: |
| 142 | + label: Recovery Attempted |
| 143 | + description: Did you try to fix the issue? |
| 144 | + options: |
| 145 | + - "Yes - Successfully recovered" |
| 146 | + - "Yes - Partially recovered" |
| 147 | + - "Yes - Unable to recover" |
| 148 | + - "No - Not yet attempted" |
| 149 | + validations: |
| 150 | + required: true |
| 151 | + |
| 152 | + - type: textarea |
| 153 | + id: recovery_method |
| 154 | + attributes: |
| 155 | + label: Recovery Method (if attempted) |
| 156 | + description: What did you try to fix the issue? |
| 157 | + placeholder: | |
| 158 | + - Reinstalled package: adb shell cmd package install-existing com.example.package |
| 159 | + - Factory reset: Yes/No |
| 160 | + - Other method: ... |
| 161 | + |
| 162 | + Result: ... |
| 163 | + validations: |
| 164 | + required: false |
| 165 | + |
| 166 | + - type: textarea |
| 167 | + id: logs |
| 168 | + attributes: |
| 169 | + label: Error Logs (Optional) |
| 170 | + description: Provide any relevant error logs or logcat output |
| 171 | + placeholder: | |
| 172 | + ``` |
| 173 | + Paste logcat or error messages here |
| 174 | + ``` |
| 175 | + render: shell |
| 176 | + validations: |
| 177 | + required: false |
| 178 | + |
| 179 | + - type: textarea |
| 180 | + id: related_packages |
| 181 | + attributes: |
| 182 | + label: Related Packages |
| 183 | + description: Were other packages removed at the same time? |
| 184 | + placeholder: | |
| 185 | + - com.example.package1 |
| 186 | + - com.example.package2 |
| 187 | + validations: |
| 188 | + required: false |
| 189 | + |
| 190 | + - type: checkboxes |
| 191 | + id: checklist |
| 192 | + attributes: |
| 193 | + label: Checklist |
| 194 | + options: |
| 195 | + - label: I have searched for existing issues about this package |
| 196 | + required: true |
| 197 | + - label: This issue is reproducible (happened multiple times) |
| 198 | + required: false |
| 199 | + - label: I have tried to recover/restore the package |
| 200 | + required: false |
| 201 | + - label: I can provide additional testing if needed |
| 202 | + required: false |
| 203 | + |
| 204 | + - type: textarea |
| 205 | + id: additional |
| 206 | + attributes: |
| 207 | + label: Additional Context |
| 208 | + description: Any other relevant information (screenshots, videos, links) |
| 209 | + validations: |
| 210 | + required: false |
0 commit comments