بنقرة واحدة
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)