change app icon

parent f8f966b3
android/app/src/main/res/mipmap-hdpi/ic_launcher.png

2.98 KB | W: 0px | H: 0px

android/app/src/main/res/mipmap-hdpi/ic_launcher.png

17 KB | W: 0px | H: 0px

  • 2-up
  • Swipe
  • Onion skin
android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png

4.91 KB | W: 0px | H: 0px

android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png

3.79 KB | W: 0px | H: 0px

  • 2-up
  • Swipe
  • Onion skin
android/app/src/main/res/mipmap-mdpi/ic_launcher.png

2.05 KB | W: 0px | H: 0px

android/app/src/main/res/mipmap-mdpi/ic_launcher.png

10.3 KB | W: 0px | H: 0px

  • 2-up
  • Swipe
  • Onion skin
android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png

2.79 KB | W: 0px | H: 0px

android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png

2.02 KB | W: 0px | H: 0px

  • 2-up
  • Swipe
  • Onion skin
android/app/src/main/res/mipmap-xhdpi/ic_launcher.png

4.46 KB | W: 0px | H: 0px

android/app/src/main/res/mipmap-xhdpi/ic_launcher.png

23.5 KB | W: 0px | H: 0px

  • 2-up
  • Swipe
  • Onion skin
android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png

6.93 KB | W: 0px | H: 0px

android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png

5.07 KB | W: 0px | H: 0px

  • 2-up
  • Swipe
  • Onion skin
android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png

6.31 KB | W: 0px | H: 0px

android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png

43.4 KB | W: 0px | H: 0px

  • 2-up
  • Swipe
  • Onion skin
android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png

10.4 KB | W: 0px | H: 0px

android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png

9.54 KB | W: 0px | H: 0px

  • 2-up
  • Swipe
  • Onion skin
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png

9.03 KB | W: 0px | H: 0px

android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png

38.6 KB | W: 0px | H: 0px

  • 2-up
  • Swipe
  • Onion skin
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png

15.2 KB | W: 0px | H: 0px

android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png

12.1 KB | W: 0px | H: 0px

  • 2-up
  • Swipe
  • Onion skin
export default {
apiEndpoint: 'https://meu.anawork.com/api/',
//apiEndpoint: 'https://gateway.dev.meu-solutions.com/techport/api/',
imageEndPoint: 'https://techmart.meu-solutions.com',
siteURL: 'https://saigon-business.erp.meu-solutions.com',
ONE_SIGNAL_KEY: '6f4f8bd1-9b43-4067-8175-c0052140e891',
axiosTimeout: 10000,
};
......@@ -8,9 +8,7 @@ import {ToastMessage} from '../utils/MessageUtil';
import api from './axios';
const createAPI = () => {
// const APIInstant = require('axios').default.create()
const APIInstant = require('axios').default.create();
//console.log('createAPI', api.getBaseURL());
APIInstant.defaults.baseURL = api.getBaseURL();
APIInstant.defaults.timeout = 40000;
APIInstant.defaults.headers = {'Content-Type': 'application/json'};
......
import {create, isCancel} from 'apisauce';
import {create} from 'apisauce';
import {Platform} from 'react-native';
import SInfo from 'react-native-sensitive-info';
const rax = require('retry-axios');
import config from '../config';
const api = create({
baseURL: '',
baseURL: config.apiEndpoint,
timeout: Platform.OS === 'ios' ? 6000 : 2500,
});
SInfo.getItem('token', {
sharedPreferencesName: 'token',
keychainService: 'myToken',
}).then(value => {
api.setHeader('Authorization', `Bearer ${value}`);
});
SInfo.getItem('domain', {
sharedPreferencesName: 'domain',
keychainService: 'myDomain',
}).then(value => {
api.setBaseURL(value);
});
export default api;
......@@ -44,7 +44,7 @@ const IntroductionContainer = props => {
}
};
const navigateToDomain = () => {
RootNavigation.navigate(APP_NAVIGATE_SCREEN.SERVER)
RootNavigation.navigate(APP_NAVIGATE_SCREEN.LOGIN)
}
const introProps = {
indexSwiper,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment