Skip to content

Commit

Permalink
v1.1.5+8
Browse files Browse the repository at this point in the history
  • Loading branch information
mariofix committed Jul 11, 2023
1 parent 6957c7a commit 06dc6f3
Show file tree
Hide file tree
Showing 6 changed files with 609 additions and 368 deletions.
6 changes: 3 additions & 3 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
"resizeMode": "contain"
},
"icon": "./assets/icon.png",
"version": "1.1.4",
"version": "1.1.5",
"android": {
"package": "com.mariofix.feriaslibres",
"versionCode": 7,
"versionCode": 8,
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png",
"backgroundColor": "#FFFFFF"
Expand Down Expand Up @@ -51,4 +51,4 @@
]
}
}
}
}
2 changes: 1 addition & 1 deletion components/ListaComunas.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { StyleSheet, View, FlatList, Text } from "react-native";
export default function ListaComunas() {
const [comunas, setComunas] = useState();
const headers = {
"User-Agent": "ferias-libres/1.1.4 components/ListaComunas",
"User-Agent": "ferias-libres/1.1.5 components/ListaComunas",
};

useEffect(() => {
Expand Down
2 changes: 1 addition & 1 deletion components/ListaFerias.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function ListaFerias() {
const [listaFerias, setListaFerias] = useState();
const [modalVisible, setModalVisible] = useState(false);
const headers = {
"User-Agent": "ferias-libres/1.1.4 components/ListaFerias",
"User-Agent": "ferias-libres/1.1.5 components/ListaFerias",
};
const { comuna } = useLocalSearchParams();

Expand Down
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import * as Sentry from "sentry-expo";
Sentry.init({
dsn: "https://9034763832904332b4f56b8520f70977@o4505459108347904.ingest.sentry.io/4505459135545344",
enableInExpoDevelopment: true,
debug: true,
debug: false,
tracesSampleRate: 1.0,
});

import "expo-router/entry";
Loading

0 comments on commit 06dc6f3

Please sign in to comment.