You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`$ react-native link react-native-androidprogressbar`
23
+
`$ react-native link @react-native-community/progress-bar-android`
24
24
25
25
### Manual installation
26
26
27
27
28
28
#### iOS
29
29
30
30
1. In XCode, in the project navigator, right click `Libraries` ➜ `Add Files to [your project's name]`
31
-
2. Go to `node_modules` ➜ `react-native-androidprogressbar` and add `RNCAndroidprogressbar.xcodeproj`
31
+
2. Go to `node_modules` ➜ `@react-native-community/progress-bar-android` and add `RNCAndroidprogressbar.xcodeproj`
32
32
3. In XCode, in the project navigator, select your project. Add `libRNCAndroidprogressbar.a` to your project's `Build Phases` ➜ `Link Binary With Libraries`
33
33
4. Run your project (`Cmd+R`)<
34
34
@@ -39,18 +39,18 @@ npm run build:android
39
39
- Add `new RNCAndroidprogressbarPackage()` to the list returned by the `getPackages()` method
40
40
2. Append the following lines to `android/settings.gradle`:
41
41
```
42
-
include ':react-native-androidprogressbar'
43
-
project(':react-native-androidprogressbar').projectDir = new File(rootProject.projectDir, '../../node_modules/react-native-androidprogressbar/android')
42
+
include ':@react-native-community_progress-bar-android'
43
+
project(':@react-native-community_progress-bar-android').projectDir = new File(rootProject.projectDir, '../../node_modules/@react-native-community/progress-bar-android/android')
44
44
```
45
45
3. Insert the following lines inside the dependencies block in `android/app/build.gradle`:
0 commit comments