diff --git a/app.json b/app.json index d6f13ca..dd8a12c 100644 --- a/app.json +++ b/app.json @@ -4,7 +4,7 @@ "slug": "application", "version": "1.0.0", "orientation": "portrait", - "icon": "./assets/images/icon.png", + "icon": "./assets/images/guessmate_logo.png", "scheme": "myapp", "userInterfaceStyle": "automatic", "newArchEnabled": true, @@ -13,21 +13,21 @@ }, "android": { "adaptiveIcon": { - "foregroundImage": "./assets/images/adaptive-icon.png", + "foregroundImage": "./assets/images/guessmate_logo.png", "backgroundColor": "#ffffff" - } + }, + "package": "com.rahmlad.guessmate" }, "web": { "bundler": "metro", - "output": "static", - "favicon": "./assets/images/favicon.png" + "output": "static" }, "plugins": [ "expo-router", [ "expo-splash-screen", { - "image": "./assets/images/splash-icon.png", + "image": "./assets/images/guessmate_logo.png", "imageWidth": 200, "resizeMode": "contain", "backgroundColor": "#ffffff" @@ -36,6 +36,14 @@ ], "experiments": { "typedRoutes": true + }, + "extra": { + "router": { + "origin": false + }, + "eas": { + "projectId": "73a2043e-343b-4171-93f3-4cbb596921c3" + } } } } diff --git a/eas.json b/eas.json new file mode 100644 index 0000000..b6629c3 --- /dev/null +++ b/eas.json @@ -0,0 +1,29 @@ +{ + "build": { + "development": { + "environment": "development" + }, + "preview": { + "android": { + "buildType": "apk" + }, + "environment": "preview" + }, + "preview2": { + "android": { + "gradleCommand": ":app:assembleRelease" + }, + "environment": "preview" + }, + "preview3": { + "developmentClient": true, + "environment": "preview" + }, + "production": { + "environment": "production" + }, + "my-profile": { + "environment": "production" + } + } +} diff --git a/package.json b/package.json index 12647be..9d79f59 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,8 @@ "ios": "expo start --ios", "web": "expo start --web", "test": "jest --watchAll", - "lint": "expo lint" + "lint": "expo lint", + "build-apk": "eas build -p android --profile preview" }, "jest": { "preset": "jest-expo"