| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- # Ignore data and key store files
- *.dat
- *.jks
- # Ignore output JSON file
- app/release/output.json
- # Ignore IDE and build system directories
- .idea/
- .gradle/
- *.iml
- # Ignore local properties and DS_Store files
- /local.properties
- .DS_Store
- # Ignore build directories and captures
- /build
- /captures
- app/build
- build
- local.properties
- # Ignore APK and AAR files
- *.apk
- # *.aar
- # Ignore signing properties
- signing.properties
- # Ignore shared object files
- #*.so
- # Ignore Google services JSON
- app/google-services.json
- # Additional common Android/Java ignores
- *.log
- *.tmp
- *.bak
- *.swp
- *.orig
- *.class
- *.jar
- *.war
- *.ear
- # Ignore executable files
- *.exe
- *.dll
- *.obj
- *.o
- *.pyc
- *.pyo
- # Ignore files from other IDEs
- .vscode/
- .classpath
- .project
- .settings/
- *.sublime-workspace
- *.sublime-project
- # Ignore OS-specific files
- Thumbs.db
- .DS_Store
|