Put additional Javadoc files under src

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=127811486
This commit is contained in:
olly 2016-07-19 02:51:43 -07:00 committed by Oliver Woodman
parent 0022487746
commit ba9a610ac2
7 changed files with 10 additions and 4 deletions

View File

@ -77,6 +77,12 @@ android.libraryVariants.all { variant ->
} }
exclude '**/BuildConfig.java' exclude '**/BuildConfig.java'
exclude '**/R.java' exclude '**/R.java'
doLast {
copy {
from "src/main/javadoc"
into "$buildDir/docs/javadoc"
}
}
} }
} }

View File

@ -54,7 +54,7 @@ import com.google.android.exoplayer2.source.MediaSource;
* <h3>Threading model</h3> * <h3>Threading model</h3>
* *
* <p>The figure below shows the {@link ExoPlayer} threading model.</p> * <p>The figure below shows the {@link ExoPlayer} threading model.</p>
* <p align="center"><img src="../../../../../images/exoplayer_threading_model.png" * <p align="center"><img src="doc-files/exoplayer-threading-model.png"
* alt="MediaPlayer state diagram" * alt="MediaPlayer state diagram"
* border="0"/></p> * border="0"/></p>
* *
@ -82,14 +82,14 @@ import com.google.android.exoplayer2.source.MediaSource;
* calling {@link #getPlaybackState()} is only ever changed as a result of operations completing on * calling {@link #getPlaybackState()} is only ever changed as a result of operations completing on
* the playback thread, as illustrated below.</p> * the playback thread, as illustrated below.</p>
* *
* <p align="center"><img src="../../../../../images/exoplayer_state.png" * <p align="center"><img src="doc-files/exoplayer-state.png"
* alt="ExoPlayer state" * alt="ExoPlayer state"
* border="0"/></p> * border="0"/></p>
* *
* <p>The possible playback state transitions are shown below. Transitions can be triggered either * <p>The possible playback state transitions are shown below. Transitions can be triggered either
* by changes in the state of the {@link Renderer}s being used, or as a result of * by changes in the state of the {@link Renderer}s being used, or as a result of
* {@link #setMediaSource(MediaSource)}, {@link #stop()} or {@link #release()} being invoked.</p> * {@link #setMediaSource(MediaSource)}, {@link #stop()} or {@link #release()} being invoked.</p>
* <p align="center"><img src="../../../../../images/exoplayer_playbackstate.png" * <p align="center"><img src="doc-files/exoplayer-playbackstate.png"
* alt="ExoPlayer playback state transitions" * alt="ExoPlayer playback state transitions"
* border="0"/></p> * border="0"/></p>
*/ */

View File

@ -28,7 +28,7 @@ import java.io.IOException;
* transition its renderers through various states as the overall playback state changes. The valid * transition its renderers through various states as the overall playback state changes. The valid
* state transitions are shown below, annotated with the methods that are invoked during each * state transitions are shown below, annotated with the methods that are invoked during each
* transition. * transition.
* <p align="center"><img src="../../../../../images/trackrenderer_state.png" * <p align="center"><img src="doc-files/renderer-states.png"
* alt="Renderer state transitions" * alt="Renderer state transitions"
* border="0"/></p> * border="0"/></p>
*/ */

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB