Commit e33f5a51 by rejasupotaro Committed by Kentaro Takiguchi

Update README.md

parent fa83b2fa
Showing with 18 additions and 2 deletions
...@@ -55,6 +55,22 @@ accompanying demo application. To get started: ...@@ -55,6 +55,22 @@ accompanying demo application. To get started:
## Using Gradle ## ## Using Gradle ##
ExoPlayer can also be built using Gradle. For a complete list of tasks, run: ExoPlayer can also be built using Gradle. You can include it as a dependent project and build from source. e.g.
./gradlew tasks ```
// setting.gradle
include ':app', ':..:ExoPlayer:library'
// app/build.gradle
dependencies {
compile project(':..:ExoPlayer:library')
}
```
If you want to use ExoPlayer as a jar, run:
```
./gradlew jarRelease
```
and copy library.jar to the libs-folder of your new project.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment