LucasSGama / Prime-imoveis

Sprint do 1º semestre de 2024
0 stars 0 forks source link

Configurando builder do apk #3

Open LucasSGama opened 1 month ago

LucasSGama commented 1 month ago

{ "cli": { "version": ">= 10.1.1" }, "build": { "development": { "developmentClient": true, "distribution": "internal", "android": { "buildType": "apk" } }, "preview": { "distribution": "internal", "android": { "buildType": "apk", "env": { "API_URL": "https://staging.api.primeimoveis.com" } } }, "production": { "android": { "buildType": "app-bundle", "env": { "API_URL": "https://api.primeimoveis.com" } } } }, "submit": { "production": {} } }

Códigos para teste: eas build -p android --profile development eas build -p android --profile preview eas build -p android --profile production

LucasSGama commented 1 month ago

{ "cli": { "version": ">= 10.1.1" }, "build": { "development": { "developmentClient": true, "distribution": "internal", "android": { "buildType": "apk", "env": { "API_URL": "https://dev.api.primeimoveis.com" } } }, "preview": { "distribution": "internal", "android": { "buildType": "apk", "env": { "API_URL": "https://staging.api.primeimoveis.com" } } }, "production": { "android": { "buildType": "app-bundle", "env": { "API_URL": "https://api.primeimoveis.com" } } } }, "submit": { "production": {} } }