app.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "expo": {
  3. "name": "NCore | Ui Kit - Mobile Example",
  4. "slug": "ncore-ui-kit-mobile-example",
  5. "version": "1.0.0",
  6. "orientation": "portrait",
  7. "icon": "./assets/icon.png",
  8. "userInterfaceStyle": "dark",
  9. "splash": {
  10. "image": "./assets/splash-icon.png",
  11. "resizeMode": "contain",
  12. "backgroundColor": "#222222"
  13. },
  14. "ios": {
  15. "supportsTablet": true,
  16. "bundleIdentifier": "ncoreuikitmobile.example"
  17. },
  18. "android": {
  19. "adaptiveIcon": {
  20. "backgroundColor": "#222222",
  21. "foregroundImage": "./assets/icon.png"
  22. },
  23. "package": "ncoreuikitmobile.example",
  24. "softwareKeyboardLayoutMode": "resize"
  25. },
  26. "web": {
  27. "favicon": "./assets/favicon.png"
  28. },
  29. "plugins": [
  30. [
  31. "expo-font",
  32. {
  33. "fonts": [
  34. "./src/assets/fonts/Geist-Black.ttf",
  35. "./src/assets/fonts/Geist-Bold.ttf",
  36. "./src/assets/fonts/Geist-ExtraBold.ttf",
  37. "./src/assets/fonts/Geist-ExtraLight.ttf",
  38. "./src/assets/fonts/Geist-Light.ttf",
  39. "./src/assets/fonts/Geist-Medium.ttf",
  40. "./src/assets/fonts/Geist-Regular.ttf",
  41. "./src/assets/fonts/Geist-SemiBold.ttf",
  42. "./src/assets/fonts/Geist-Thin.ttf"
  43. ]
  44. }
  45. ]
  46. ]
  47. }
  48. }