如何在Android库中嵌入ExoPlayer?

时间:2017-06-19 15:42:50

标签: android android-library exoplayer exoplayer2.x

我想将ExoPlayer嵌入到android库中,我该怎么做呢,有什么想法吗?

2 个答案:

答案 0 :(得分:0)

您可以将其添加到图书馆的build.gradle文件中,然后您就可以访问它了。您可以按照指南here

确保jcenter是您列出的存储库之一

repositories {
    jcenter()
}

然后将compile语句添加到依赖项中。

compile 'com.google.android.exoplayer:exoplayer:r2.4.2'

然后按照我发布的指南的其余部分,启动并运行ExoPlayer实例。

答案 1 :(得分:0)

:)我在我的应用程序中添加了它 - >在dependecies部分内的build.gradle

dependencies {


        compile 'com.google.android.exoplayer:exoplayer:r2.4.1'
        compile 'com.google.android.exoplayer:exoplayer-core:r2.4.1'
        compile 'com.google.android.exoplayer:exoplayer-dash:r2.4.1'
        compile 'com.google.android.exoplayer:exoplayer-ui:r2.4.1'
}