Added icon

This commit is contained in:
michael
2026-01-22 14:09:29 -08:00
parent d05c02f556
commit 874a25d7e4
5 changed files with 176 additions and 13 deletions

152
.gitignore vendored
View File

@@ -1,41 +1,175 @@
# Dependencies # Dependencies
node_modules/ node_modules/
.pnp/
.pnp.js
# Expo # Expo / React Native
.expo/ .expo/
dist/ dist/
web-build/ web-build/
*.jsbundle
*.hbc
# Native directories (generated by expo prebuild) # Native directories (generated by expo prebuild)
android/ android/
ios/ ios/
# Env files # ===================
# SECRETS & CREDENTIALS
# ===================
# Environment files (may contain API keys, secrets)
.env .env
.env.*
.env.local .env.local
.env.*.local .env.*.local
!.env.example
# Editor # EAS / Expo secrets
.idea/ credentials.json
secrets.json
*.p8
*.p12
*.mobileprovision
# Android signing
*.keystore
*.jks
keystore.properties
local.properties
google-services.json
# iOS signing & certificates
*.cer
*.certSigningRequest
*.provisionprofile
AuthKey_*.p8
push-cert.pem
ios-push-*.pem
# API keys & tokens
**/secrets/
**/credentials/
*.secret
*.secrets
api-key*
apikey*
*_api_key*
*.pem
*.key
!*.key.example
# Firebase / Google Cloud
firebase-adminsdk*.json
serviceAccountKey*.json
*-firebase-adminsdk-*.json
# AWS
.aws/
aws-exports.js
# ===================
# EDITOR & IDE
# ===================
# VSCode
.vscode/ .vscode/
*.code-workspace
# JetBrains (WebStorm, IntelliJ)
.idea/
*.iml
# Vim
*.swp *.swp
*.swo *.swo
*~ *~
.*.swp
# Emacs
*~
\#*\#
.#*
# Sublime Text
*.sublime-project
*.sublime-workspace
# ===================
# OS FILES
# ===================
# OS
.DS_Store .DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db Thumbs.db
desktop.ini
# Debug # ===================
# LOGS & DEBUG
# ===================
logs/
*.log
npm-debug.log* npm-debug.log*
yarn-debug.log* yarn-debug.log*
yarn-error.log* yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# ===================
# BUILD & CACHE
# ===================
# TypeScript # TypeScript
*.tsbuildinfo *.tsbuildinfo
tsconfig.tsbuildinfo
# Build outputs
build/
out/
.next/
.nuxt/
# Cache
.cache/
.parcel-cache/
.turbo/
# Metro bundler
.metro-health-check*
# ===================
# TESTING
# ===================
# Testing
coverage/ coverage/
.nyc_output/
*.lcov
# Build # ===================
*.jsbundle # MISC
# ===================
# Local database files
*.sqlite
*.sqlite3
*.db
# Backup files
*.bak
*.backup
*.old
# Temporary files
tmp/
temp/
*.tmp
# Package manager locks (uncomment if you want to ignore)
# package-lock.json
# yarn.lock
# pnpm-lock.yaml

View File

@@ -1,7 +1,7 @@
{ {
"expo": { "expo": {
"name": "DT NFC Identifier", "name": "DT NFC Transponder Identifier",
"slug": "dt-nfc-identifier", "slug": "dt-nfc-transponder-identifier",
"version": "1.0.0", "version": "1.0.0",
"orientation": "portrait", "orientation": "portrait",
"icon": "./assets/icon.png", "icon": "./assets/icon.png",
@@ -19,10 +19,13 @@
}, },
"android": { "android": {
"adaptiveIcon": { "adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#000000" "backgroundColor": "#000000"
}, },
"package": "com.dangerousthings.nfcidentifier", "package": "com.dangerousthings.nfcidentifier",
"permissions": ["android.permission.NFC"] "permissions": [
"android.permission.NFC"
]
}, },
"plugins": [ "plugins": [
[ [
@@ -37,6 +40,11 @@
"systemCodes": [] "systemCodes": []
} }
] ]
] ],
"extra": {
"eas": {
"projectId": "7a861d96-e2ff-4bfd-92ec-f9e792d739e6"
}
}
} }
} }

BIN
assets/adaptive-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

BIN
assets/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

21
eas.json Normal file
View File

@@ -0,0 +1,21 @@
{
"cli": {
"version": ">= 16.28.0",
"appVersionSource": "remote"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"distribution": "internal"
},
"production": {
"autoIncrement": true
}
},
"submit": {
"production": {}
}
}