Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. // Simple React Native specific changes
  2.  
  3. export default {
  4. // font scaling override - RN default is on
  5. allowTextFontScaling: false,
  6. get sendBirdAppKey () {
  7. if (__DEV__) {
  8. return '67535669-C0E1-44A7-84A7-92F2F616A656'
  9. } else {
  10. return '67535669-C0E1-44A7-84A7-92F2F616A656'
  11. }
  12. },
  13. get baseUrl () {
  14. if (__DEV__) {
  15. // return 'https://engine.sohib.co.id'
  16. return 'http://180.250.247.46:10130'
  17. } else {
  18. return 'http://180.250.247.46:10130'
  19. // return 'https://engine.sohib.co.id'
  20. }
  21. },
  22. get baseUrlAsset () {
  23. if (__DEV__) {
  24. return 'http://180.250.247.46:10130'
  25. // return 'https://engine.sohib.co.id'
  26. } else {
  27. return 'http://180.250.247.46:10130'
  28. // return 'https://engine.sohib.co.id'
  29. }
  30. },
  31. get baseOpenCartUrl() {
  32. if (__DEV__) {
  33. return 'http://180.250.247.46:10130/oc/index.php?route='
  34. } else {
  35. return 'http://192.168.100.51:8083/index.php?route='
  36. }
  37. },
  38. get ocApiKey() {
  39. if (__DEV__) {
  40. return 's0FyKwXzBPuKf00NDApJ1EKcwCIDgnBl'
  41. } else {
  42. return 's0FyKwXzBPuKf00NDApJ1EKcwCIDgnBl'
  43. }
  44. }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement