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`
25
+
`$ react-native link @react-native-community/progress-bar-android`
24
26
25
27
### Manual installation
26
28
27
29
28
30
#### iOS
29
31
30
32
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`
33
+
2. Go to `node_modules` ➜ `@react-native-community/progress-bar-android` and add `RNCAndroidprogressbar.xcodeproj`
32
34
3. In XCode, in the project navigator, select your project. Add `libRNCAndroidprogressbar.a` to your project's `Build Phases` ➜ `Link Binary With Libraries`
33
35
4. Run your project (`Cmd+R`)<
34
36
@@ -39,20 +41,22 @@ npm run build:android
39
41
- Add `new RNCAndroidprogressbarPackage()` to the list returned by the `getPackages()` method
40
42
2. Append the following lines to `android/settings.gradle`:
41
43
```
42
-
include ':react-native-androidprogressbar'
43
-
project(':react-native-androidprogressbar').projectDir = new File(rootProject.projectDir, '../../node_modules/react-native-androidprogressbar/android')
44
+
include ':@react-native-community_progress-bar-android'
45
+
project(':@react-native-community_progress-bar-android').projectDir = new File(rootProject.projectDir, '../../node_modules/@react-native-community/progress-bar-android/android')
44
46
```
45
47
3. Insert the following lines inside the dependencies block in `android/app/build.gradle`:
0 commit comments