Skip to content

Commit

Permalink
Merge pull request #28 from n1kko777/release/1.2.0
Browse files Browse the repository at this point in the history
1.2.0
  • Loading branch information
n1kko777 authored Oct 12, 2023
2 parents 8eb704d + d9bebba commit 685b02c
Show file tree
Hide file tree
Showing 12 changed files with 21,769 additions and 16,274 deletions.
35 changes: 26 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,35 @@
node_modules/**/*
.expo/*
npm-debug.*
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files

# dependencies
node_modules/

# Expo
.expo/
dist/
web-build/

# Native
*.orig.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision
*.orig.*
web-build/
web-report/

# Metro
.metro-health-check*

# debug
npm-debug.*
yarn-debug.*
yarn-error.*

# macOS
.DS_Store
.history
.vscode
*.pem

# local env files
.env*.local

.idea
# typescript
*.tsbuildinfo
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
legacy-peer-deps=true
18 changes: 8 additions & 10 deletions App.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
import React from "react";
import { Provider } from "react-redux";
import store from "./src/store";
import React from 'react';
import { Provider } from 'react-redux';
import { AppContainer } from './src/components/AppContainer';
import useDisableBack from './src/hook/useDisableBack';
import store from './src/store';

import { AppContainer } from "./src/components/AppContainer";
import useDisableBack from "./src/hook/useDisableBack";

const App = () => {
export default function App() {
useDisableBack();

return (
<Provider store={store}>
<AppContainer />
</Provider>
);
};

export default App;
}
27 changes: 21 additions & 6 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
"slug": "moneycontrol-rn-app",
"description": "Corporate Money Control – мобильное приложение для автоматизации профессиональной деятельности, существенно облегчает и автоматизирует экономические, технические, аналитические процессы, повышая скорость и снижая время и средства на проведение различного рода операций.",
"privacy": "public",
"platforms": ["ios", "android"],
"version": "1.1.2",
"platforms": [
"ios",
"android"
],
"version": "1.2.0",
"userInterfaceStyle": "automatic",
"orientation": "portrait",
"icon": "./assets/logo.png",
"splash": {
Expand All @@ -14,23 +18,34 @@
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
"fallbackToCacheTimeout": 0,
"url": "https://u.expo.dev/52b6d6e2-c121-43f0-b4fa-78b055e07f59"
},
"assetBundlePatterns": ["**/*"],
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "ru.mncntrl.n1kko777",
"buildNumber": "1.1.2"
"buildNumber": "1.2.0"
},
"android": {
"package": "ru.mncntrl.n1kko777",
"versionCode": 112,
"versionCode": 120,
"permissions": [
"CAMERA",
"READ_EXTERNAL_STORAGE",
"VIBRATE",
"WRITE_EXTERNAL_STORAGE"
]
},
"extra": {
"eas": {
"projectId": "52b6d6e2-c121-43f0-b4fa-78b055e07f59"
}
},
"runtimeVersion": {
"policy": "appVersion"
}
}
}
6 changes: 6 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = function (api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
};
};
18 changes: 18 additions & 0 deletions eas.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"cli": {
"version": ">= 5.4.0"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"distribution": "internal"
},
"production": {}
},
"submit": {
"production": {}
}
}
Loading

0 comments on commit 685b02c

Please sign in to comment.