com um clique
m3e-haptic-standards
Guidelines for premium tactile "Felt" experience in Varisankya
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Guidelines for premium tactile "Felt" experience in Varisankya
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Guidelines for managing Varisankya releases across Beta and Production tracks.
How to safely record extra payments without advancing the Varisankya subscription next due date.
Instructions for extracting the Play Store upload keystore, Firebase JSON, and passwords from Bitwarden.
Standard operating procedure for concluding an AI agent session and ensuring workspace integrity.
Guidelines for compiling Varisankya from the CLI without Android Studio.
How to correctly handle custom dates for extra subscription payments using MaterialDatePicker.
| name | M3E Haptic Standards |
| description | Guidelines for premium tactile "Felt" experience in Varisankya |
To achieve the "Premium Felt" experience, haptics must be curated based on the interaction weight:
| Interaction | Haptic Role | Method |
|---|---|---|
| Scrolling | Mechanical Tick | PreferenceHelper.attachScrollHaptics(recyclerView) |
| Success/Save | Confirmation | PreferenceHelper.performSuccessHaptic(view) |
| Error/Reject | Reject | PreferenceHelper.performErrorHaptic(view) |
| Toggle/Click | Light Tick | PreferenceHelper.performClickHaptic(view) |
| Long Press | Contextual | HapticFeedbackConstants.LONG_PRESS |
Attach to ANY list containing core data:
PreferenceHelper.attachScrollHaptics(recyclerView)
NEVER call performHapticFeedback directly in Activities. Use PreferenceHelper to ensure the user's preference is respected:
saveButton.setOnClickListener {
PreferenceHelper.performSuccessHaptic(it)
// ... save logic ...
}
For AutoCompleteTextViews or Bottom Sheets, trigger a tick on every delta/selection:
PreferenceHelper.performHaptics(v, HapticFeedbackConstants.SEGMENT_TICK)