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`
26
26
27
27
### Manual installation
28
28
29
29
30
30
#### iOS
31
31
32
32
1. In XCode, in the project navigator, right click `Libraries` ➜ `Add Files to [your project's name]`
33
-
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`
34
34
3. In XCode, in the project navigator, select your project. Add `libRNCAndroidprogressbar.a` to your project's `Build Phases` ➜ `Link Binary With Libraries`
35
35
4. Run your project (`Cmd+R`)<
36
36
@@ -41,18 +41,18 @@ npm run build:android
41
41
- Add `new RNCAndroidprogressbarPackage()` to the list returned by the `getPackages()` method
42
42
2. Append the following lines to `android/settings.gradle`:
43
43
```
44
-
include ':react-native-androidprogressbar'
45
-
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')
46
46
```
47
47
3. Insert the following lines inside the dependencies block in `android/app/build.gradle`:
0 commit comments