Skip to content

Commit

Permalink
#262 - (version/0.13.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
victorbalssa authored Mar 10, 2024
1 parent 8e1ca67 commit 8244cc5
Show file tree
Hide file tree
Showing 52 changed files with 2,408 additions and 3,382 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
"react/style-prop-object": "off",
"@typescript-eslint/no-empty-function": "off",
"no-use-before-define": "off",
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/no-use-before-define": [
"error"
],
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
![size](https://img.shields.io/github/repo-size/victorbalssa/abacus?style=for-the-badge)
![licence](https://img.shields.io/github/license/victorbalssa/abacus?style=for-the-badge)
![stars](https://img.shields.io/github/stars/victorbalssa/abacus?style=for-the-badge)
[![sdk](https://img.shields.io/badge/SDK-50.0.7-purple?style=for-the-badge&label=EXPO%20SDK)](https://www.npmjs.com/package/expo)
[![sdk](https://img.shields.io/badge/EXPO-SDK-purple?style=for-the-badge&label=EXPO%20SDK)](https://www.npmjs.com/package/expo)
[![pr](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=for-the-badge)](http://makeapullrequest.com)
[![sponsor](https://img.shields.io/github/sponsors/victorbalssa?style=for-the-badge&color=ff69b4)](https://github.com/sponsors/victorbalssa)

Expand Down Expand Up @@ -64,7 +64,7 @@ No external API calls nor Analytics API, not even sentry / crashlytics.

### 📡 Technologies

- __Expo SDK 50__ Framework and a Platform for universal React applications. [docs.expo.io](https://docs.expo.io/)
- __Expo SDK__ Framework and a Platform for universal React applications. [docs.expo.io](https://docs.expo.io/)
- __Routing and navigation__ React Navigation
V6. [https://reactnavigation.org/docs](https://reactnavigation.org/docs/getting-started)
- __Tests__ on simulator/emulator before each EAS build with [@wix/Detox](https://github.com/wix/Detox)
Expand Down
87 changes: 87 additions & 0 deletions app.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
const IS_DEV = process.env.APP_VARIANT === 'development';

export default {
name: IS_DEV ? 'Abacus.dev' : 'Abacus',
description: 'Abacus: Firefly III mobile application.',
slug: 'abacus',
privacy: 'public',
platforms: [
'ios',
'android',
],
version: '0.13.2',
orientation: 'portrait',
updates: {
enabled: true,
checkAutomatically: 'ON_ERROR_RECOVERY',
url: 'https://u.expo.dev/292ed6dc-804c-4444-95f5-fa5d76d9913b',
},
ios: {
icon: './src/images/icon-abacus.png',
splash: {
image: './src/images/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
dark: {
backgroundColor: '#121215',
},
},
supportsTablet: true,
infoPlist: {
NSFaceIDUsageDescription: 'Abacus use Authentication with TouchId or FaceID',
NSLocalNetworkUsageDescription: 'Abacus use Local Network to access Firefly III on your local network',
NSAppTransportSecurity: {
NSAllowsArbitraryLoads: true,
},
},
config: {
usesNonExemptEncryption: false,
},
bundleIdentifier: IS_DEV ? 'abacus.fireflyiii.ios.app.dev' : 'abacus.ios.app',
buildNumber: '0.13.2',
},
android: {
icon: './src/images/icon-abacus.png',
adaptiveIcon: {
foregroundImage: './src/images/icon-abacus-foreground.png',
backgroundImage: './src/images/icon-abacus-background.png',
},
splash: {
image: './src/images/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
dark: {
backgroundColor: '#121215',
},
},
playStoreUrl: 'https://play.google.com/store/apps/details?id=abacus.fireflyiii.android.app',
package: IS_DEV ? 'abacus.fireflyiii.android.app.dev' : 'abacus.fireflyiii.android.app',
versionCode: 21,
},
scheme: 'abacusfiiiapp',
githubUrl: 'https://github.com/victorbalssa/abacus',
runtimeVersion: {
policy: 'sdkVersion',
},
extra: {
eas: {
projectId: '292ed6dc-804c-4444-95f5-fa5d76d9913b',
},
},
plugins: [
'expo-localization',
'./plugins/withAndroidStyles',
'./plugins/withAndroidManifest',
[
'expo-font',
{
fonts: [
'./src/fonts/Montserrat-Bold.ttf',
'./src/fonts/Montserrat-Regular.ttf',
'./src/fonts/Montserrat-Light.ttf',
],
},
],
],
userInterfaceStyle: 'automatic',
};
77 changes: 0 additions & 77 deletions app.json

This file was deleted.

Loading

0 comments on commit 8244cc5

Please sign in to comment.