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
NewPipe Extractor is a library for extracting things from streaming sites. It is a core component of [NewPipe](https://github.com/TeamNewPipe/NewPipe), but could be used independently.
6
6
@@ -11,7 +11,7 @@ NewPipe Extractor is available at JitPack's Maven repo.
11
11
If you're using Gradle, you could add NewPipe Extractor as a dependency with the following steps:
12
12
13
13
1. Add `maven { url 'https://jitpack.io' }` to the `repositories` in your `build.gradle`.
14
-
2. Add `implementation 'com.github.TeamNewPipe:NewPipeExtractor:INSERT_VERSION_HERE'` to the `dependencies` in your `build.gradle`. Replace `INSERT_VERSION_HERE` with the [latest release](https://github.com/TeamNewPipe/NewPipeExtractor/releases/latest).
14
+
2. Add `implementation 'com.github.teamnewpipe:NewPipeExtractor:INSERT_VERSION_HERE'` to the `dependencies` in your `build.gradle`. Replace `INSERT_VERSION_HERE` with the [latest release](https://github.com/TeamNewPipe/NewPipeExtractor/releases/latest).
15
15
3. If you are using tools to minimize your project, make sure to keep the files below, by e.g. adding the following lines to your proguard file:
16
16
```
17
17
## Rules for NewPipeExtractor
@@ -30,7 +30,7 @@ To test changes quickly you can build the library locally. A good approach would
30
30
```groovy
31
31
includeBuild('../NewPipeExtractor') {
32
32
dependencySubstitution {
33
-
substitute module('com.github.TeamNewPipe:NewPipeExtractor') with project(':extractor')
33
+
substitute module('com.github.teamnewpipe:NewPipeExtractor') with project(':extractor')
34
34
}
35
35
}
36
36
```
@@ -40,7 +40,7 @@ Another approach would be to use the local Maven repository, here's a gist of ho
40
40
1. Add `mavenLocal()` in your project `repositories` list (usually as the first entry to give priority above the others).
41
41
2. It's _recommended_ that you change the `version` of this library (e.g. `LOCAL_SNAPSHOT`).
42
42
3. Run gradle's `ìnstall` task to deploy this library to your local repository (using the wrapper, present in the root of this project: `./gradlew install`)
43
-
4. Change the dependency version used in your project to match the one you chose in step 2 (`implementation 'com.github.TeamNewPipe:NewPipeExtractor:LOCAL_SNAPSHOT'`)
43
+
4. Change the dependency version used in your project to match the one you chose in step 2 (`implementation 'com.github.teamnewpipe:NewPipeExtractor:LOCAL_SNAPSHOT'`)
44
44
45
45
> Tip for Android Studio users: After you make changes and run the `install` task, use the menu option `File → "Sync with File System"` to refresh the library in your project.
0 commit comments