jieme198902/ijkplayer-1


在ijkplayer编译的bilibili开源编译版本上,去掉失败的依赖,增加对https支持

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.jieme198902:ijkplayer-1:'
	}
	dependencies {
		implementation("com.github.jieme198902:ijkplayer-1:")
	}
	<dependency>
	    <groupId>com.github.jieme198902</groupId>
	    <artifactId>ijkplayer-1</artifactId>
	    <version></version>
	</dependency>

                            
    libraryDependencies += "com.github.jieme198902" % "ijkplayer-1" % ""
        
        

                            
    :dependencies [[com.github.jieme198902/ijkplayer-1 ""]]
        
        

Readme


ijkplayer-demo

在该 https://github.com/Dawish/ijkplayer-android-demo 工程上修改了一些依赖, 并且增加了对https的支持。

基于ijkplayer 0.5.1最新源代码,支持armv5、armv7a、x86架构32位和64位的设备,在ubuntu环境下编译,导入Android Studio,去掉编译时使用到的代码,只保留需要用到的代码,对项目封装,这样更方便集成到我们的开发项目中去。

下面是精简封装后的目录结构图:

工程结构图

#APK下载