Skip to content

Commit b79f275

Browse files
authored
Update Readme (#53)
* Added 'usesCleartextTraffic' to AndroidManifeast
1 parent 9558181 commit b79f275

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

README.md

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# React Native Typescript Boilerplate
1+
# React Native Template - TypeScript
22

33
![Travis](https://api.travis-ci.com/AmitM30/react-native-typescript-boilerplate.svg?branch=master) [![Code Climate](https://codeclimate.com/github/AmitM30/react-native-typescript-boilerplate/badges/gpa.svg)](https://codeclimate.com/github/AmitM30/react-native-typescript-boilerplate) ![License](https://img.shields.io/github/license/AmitM30/react-native-typescript-boilerplate.svg) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](./CONTRIBUTING.md)
44

55
#### An opinionated [React Native](https://facebook.github.io/react-native/docs/getting-started) Starter Kit with [React Native Navigation](https://github.com/wix/react-native-navigation) + [Redux](https://github.com/reactjs/redux) + [Airbnb TSLint](https://github.com/airbnb/javascript) to build iOS and Android apps using [TypeScript](https://github.com/Microsoft/TypeScript-React-Native-Starter)
66

7-
___
8-
97
The project has been setup based off [RN Getting Started](https://facebook.github.io/react-native/docs/getting-started) and instructions from [Microsoft's Github TypeScript React Native Starter](https://github.com/Microsoft/TypeScript-React-Native-Starter) repo.
108

9+
___
10+
1111
### Supports React Native 0.63.3, React Native Navigation v7 and Flipper
1212

13-
| | RNN | RN | React | Comments |
13+
| Updates | RNN | RN | React | Comments |
1414
|---|---|---|---|---|
1515
| 07 Oct '20 | 7.1.0 | 0.63.3 | 16.13.1 | Support for Flipper
1616
| 27 Apr '20 | 3.7.0 | 0.61.5 | 16.9.0 | Support for RN > 0.60, Android X
@@ -28,7 +28,6 @@ Jumpstart building robust apps using React Native and TypeScript with most commo
2828
- [Redux](https://redux.js.org/introduction/getting-started)
2929
- [Redux-Thunk](https://github.com/reduxjs/redux-thunk) middleware
3030
- Widgets / Elements
31-
3231
Build your own design system with these building blocks.
3332
- **elements**: `<BUTTON_DEFAULT>` or `<CText>`. They are custom elements that have default properties like font, size and so on.
3433
- **widgets**: Any component providing a complete functionality. E.g. carousels component, banner component, etc.
@@ -66,23 +65,23 @@ Jumpstart building robust apps using React Native and TypeScript with most commo
6665
├── ios iOS Native Code
6766
├── shared
6867
│ ├── redux Applications Logic
69-
│ │ ├── constants
70-
│ │ ├── actions
71-
│ │ ├── api
72-
│ │ ├── reducers
73-
│ │ ├── store
74-
│ │ └── thunk
68+
│ │ ├── constants
69+
│ │ ├── actions
70+
│ │ ├── api
71+
│ │ ├── reducers
72+
│ │ ├── store
73+
│ │ └── thunk
7574
│ └── utilities
7675
├── src
7776
│ ├── config Global Configuration
7877
│ ├── constants Screens, Localization
7978
│ ├── navigators Router, Navigation
8079
│ ├── view UI compoments
81-
│ │ ├── elements Custom elements
82-
│ │ ├── assets
83-
│ │ ├── screens
84-
│ │ ├── styles Typography
85-
│ │ └── widgets Custom components
80+
│ │ ├── elements Custom elements
81+
│ │ ├── assets
82+
│ │ ├── screens
83+
│ │ ├── styles Typography
84+
│ │ └── widgets Custom components
8685
│ └── utilities
8786
├── __tests__ Unit Tests
8887
│ ├── presentation

android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
android:icon="@mipmap/ic_launcher"
1111
android:roundIcon="@mipmap/ic_launcher_round"
1212
android:allowBackup="false"
13-
android:theme="@style/AppTheme">
13+
android:theme="@style/AppTheme"
14+
android:usesCleartextTraffic="true">
1415
<activity
1516
android:name=".MainActivity"
1617
android:label="@string/app_name"

src/view/assets/images/sample/1.png

-85.9 KB
Loading

src/view/assets/images/sample/2.png

-38.8 KB
Loading

src/view/assets/images/sample/3.png

-36.8 KB
Loading

0 commit comments

Comments
 (0)