mirror of
https://github.com/SrIzan10/featheroom.git
synced 2026-06-06 00:56:49 +00:00
chore: eas build test 1
This commit is contained in:
57
app.config.ts
Normal file
57
app.config.ts
Normal file
@@ -0,0 +1,57 @@
|
||||
export default {
|
||||
name: 'featheroom',
|
||||
slug: 'featheroom',
|
||||
version: '1.0.0',
|
||||
orientation: 'portrait',
|
||||
icon: './assets/images/icon.png',
|
||||
scheme: 'myapp',
|
||||
userInterfaceStyle: 'automatic',
|
||||
splash: {
|
||||
image: './assets/images/splash.png',
|
||||
resizeMode: 'contain',
|
||||
backgroundColor: '#ffffff',
|
||||
},
|
||||
assetBundlePatterns: ['**/*'],
|
||||
ios: {
|
||||
supportsTablet: true,
|
||||
infoPlist: {
|
||||
ExpoLocalization_supportsRTL: true,
|
||||
},
|
||||
bundleIdentifier: 'dev.srizan.featheroom',
|
||||
googleServicesFile:
|
||||
process.env.GOOGLE_SERVICES_IOS ?? './lib/GoogleService-Info.plist',
|
||||
},
|
||||
android: {
|
||||
adaptiveIcon: {
|
||||
foregroundImage: './assets/images/adaptive-icon.png',
|
||||
backgroundColor: '#ffffff',
|
||||
},
|
||||
package: 'dev.srizan.featheroom',
|
||||
googleServicesFile:
|
||||
process.env.GOOGLE_SERVICES_ANDROID ?? './lib/google-services.json',
|
||||
},
|
||||
web: {
|
||||
bundler: 'metro',
|
||||
output: 'static',
|
||||
favicon: './assets/images/favicon.png',
|
||||
},
|
||||
plugins: [
|
||||
'expo-router',
|
||||
'expo-secure-store',
|
||||
'expo-font',
|
||||
'expo-localization',
|
||||
],
|
||||
experiments: {
|
||||
typedRoutes: true,
|
||||
},
|
||||
extra: {
|
||||
supportsRTL: true,
|
||||
router: {
|
||||
origin: false,
|
||||
},
|
||||
eas: {
|
||||
projectId: '9f2ea3eb-cf10-41ea-9593-6b558928b21d',
|
||||
},
|
||||
},
|
||||
owner: 'srizan10',
|
||||
}
|
||||
51
app.json
51
app.json
@@ -1,51 +0,0 @@
|
||||
{
|
||||
"expo": {
|
||||
"name": "featheroom",
|
||||
"slug": "featheroom",
|
||||
"version": "1.0.0",
|
||||
"orientation": "portrait",
|
||||
"icon": "./assets/images/icon.png",
|
||||
"scheme": "myapp",
|
||||
"userInterfaceStyle": "automatic",
|
||||
"splash": {
|
||||
"image": "./assets/images/splash.png",
|
||||
"resizeMode": "contain",
|
||||
"backgroundColor": "#ffffff"
|
||||
},
|
||||
"assetBundlePatterns": [
|
||||
"**/*"
|
||||
],
|
||||
"ios": {
|
||||
"supportsTablet": true,
|
||||
"infoPlist": {
|
||||
"ExpoLocalization_supportsRTL": true
|
||||
},
|
||||
"bundleIdentifier": "dev.srizan.featheroom"
|
||||
},
|
||||
"android": {
|
||||
"adaptiveIcon": {
|
||||
"foregroundImage": "./assets/images/adaptive-icon.png",
|
||||
"backgroundColor": "#ffffff"
|
||||
},
|
||||
"package": "dev.srizan.featheroom",
|
||||
"googleServicesFile": "./lib/google-services.json"
|
||||
},
|
||||
"web": {
|
||||
"bundler": "metro",
|
||||
"output": "static",
|
||||
"favicon": "./assets/images/favicon.png"
|
||||
},
|
||||
"plugins": [
|
||||
"expo-router",
|
||||
"expo-secure-store",
|
||||
"expo-font",
|
||||
"expo-localization"
|
||||
],
|
||||
"experiments": {
|
||||
"typedRoutes": true
|
||||
},
|
||||
"extra": {
|
||||
"supportsRTL": true
|
||||
}
|
||||
}
|
||||
}
|
||||
21
eas.json
Normal file
21
eas.json
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"cli": {
|
||||
"version": ">= 13.4.2",
|
||||
"appVersionSource": "remote"
|
||||
},
|
||||
"build": {
|
||||
"development": {
|
||||
"developmentClient": true,
|
||||
"distribution": "internal"
|
||||
},
|
||||
"preview": {
|
||||
"distribution": "internal"
|
||||
},
|
||||
"production": {
|
||||
"autoIncrement": true
|
||||
}
|
||||
},
|
||||
"submit": {
|
||||
"production": {}
|
||||
}
|
||||
}
|
||||
@@ -58,6 +58,7 @@
|
||||
"@babel/core": "^7.20.0",
|
||||
"@types/react": "~18.2.45",
|
||||
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
||||
"eas-cli": "^13.4.2",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-config-expo": "^7.1.2",
|
||||
"eslint-config-universe": "^12.0.0",
|
||||
|
||||
Reference in New Issue
Block a user