chore: eas build test 1

This commit is contained in:
2024-12-01 19:42:35 +01:00
parent 470743e942
commit 4c9cd63842
5 changed files with 79 additions and 51 deletions

57
app.config.ts Normal file
View 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',
}

View File

@@ -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
}
}
}

BIN
bun.lockb

Binary file not shown.

21
eas.json Normal file
View 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": {}
}
}

View File

@@ -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",