원클릭으로
m3e-haptic-standards
Guidelines for premium tactile "Felt" experience in Varisankya
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guidelines for premium tactile "Felt" experience in Varisankya
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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)