Skip to content

Commit

Permalink
bugfix splash screen
Browse files Browse the repository at this point in the history
  • Loading branch information
mascDriver committed Mar 24, 2023
1 parent 198112a commit 0dd3f50
Show file tree
Hide file tree
Showing 7 changed files with 5,179 additions and 2,678 deletions.
9 changes: 4 additions & 5 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"slug": "portal-aluno",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/ico-uffs.png",
"icon": "./assets/ico.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./src/assets/logo.png",
"image": "./assets/splash/drawable-hdpi/logo.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
Expand All @@ -23,7 +23,7 @@
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/ico-uffs.png",
"foregroundImage": "./assets/ico.png",
"backgroundColor": "#FFFFFF"
},
"package": "com.mascdriver.portalaluno"
Expand All @@ -33,8 +33,7 @@
},
"extra": {
"eas": {
"projectId": "d59c0b44-37cc-4caf-aae3-02a98e20ecc8",
"API_URL": "https://api-portal-aluno.mascdriver.com.br/"
"projectId": "d59c0b44-37cc-4caf-aae3-02a98e20ecc8"
}
}
}
Expand Down
Binary file modified assets/ico-uffs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/ico.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/splash/drawable-hdpi/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7,815 changes: 5,158 additions & 2,657 deletions package-lock.json

Large diffs are not rendered by default.

32 changes: 17 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,37 @@
{
"name": "portal-aluno",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web"
},
"dependencies": {
"@expo/html-elements": "^0.4.1",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-navigation/bottom-tabs": "^6.4.0",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.0",
"expo": "~46.0.9",
"expo-checkbox": "~2.2.0",
"expo-constants": "~13.2.4",
"expo-status-bar": "~1.4.0",
"react": "18.0.0",
"react-native": "0.69.6",
"expo": "~48.0.9",
"expo-checkbox": "~2.3.1",
"expo-splash-screen": "~0.18.1",
"expo-status-bar": "~1.4.4",
"expo-system-ui": "~2.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.4",
"react-native-animatable": "^1.3.3",
"react-native-base64": "^0.2.1",
"react-native-dotenv": "^3.4.8",
"react-native-navigation-bar-color": "^2.0.1",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-toast-message": "^2.1.6"
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-toast-message": "^2.1.6",
"react-native-web": "~0.18.11"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/core": "^7.20.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.4"
},
"private": true
Expand Down
1 change: 0 additions & 1 deletion src/services/Aluno/Post.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { Constants } from "expo-constants"
import { API_URL } from "../constants"

export const postLogin = async (encoded) => {
Expand Down

0 comments on commit 0dd3f50

Please sign in to comment.