ワンクリックで
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)