This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Base Rules for Cursor | |
## Fundamental Principles | |
- Write clean, simple, readable code | |
- Implement features in the simplest possible way | |
- Keep files small and focused (<200 lines) | |
- Test after every meaningful change | |
- Focus on core functionality before optimization | |
- Use clear, consistent naming | |
- Think thoroughly before coding. Write 2-3 reasoning paragraphs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "Afghanistan", | |
"dial_code": "+93", | |
"emoji": "🇦🇫", | |
"code": "AF" | |
}, | |
{ | |
"name": "Aland Islands", | |
"dial_code": "+358", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.company.app.service | |
import android.app.Notification | |
import android.app.NotificationChannel | |
import android.app.NotificationManager | |
import android.app.Service | |
import android.content.Context | |
import android.content.Intent | |
import android.graphics.BitmapFactory | |
import android.graphics.Color |