Skip to content
This repository has been archived by the owner on Aug 9, 2022. It is now read-only.

Commit

Permalink
release v1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathen committed Feb 24, 2016
1 parent 369e04a commit a3d1586
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 10 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
##使用
引入类库
```java
compile 'fm.jiecao:jiecaovideoplayer:1.3'
compile 'fm.jiecao:jiecaovideoplayer:1.5'
```

添加布局
Expand Down Expand Up @@ -50,10 +50,10 @@ videoController.setSkin();//设置这一个播放器的皮肤
如果JCVideoPlayer这个View能检测到自己的Activity或者Fragment的生命周期JCVideoPlayer.releaseAllVideo();这个接口暴露出来都略显多余

##下载
* **[jiecaovideoplayer-1.3-demo.apk](https://raw.githubusercontent.com/lipangit/jiecaovideoplayer/develop/downloads/jiecaovideoplayer-1.3-demo.apk)**
* **[jiecaovideoplayer-1.3.aar](https://raw.githubusercontent.com/lipangit/jiecaovideoplayer/develop/downloads/jiecaovideoplayer-1.3.aar)**
* **[jiecaovideoplayer-1.3-javadoc.jar](https://raw.githubusercontent.com/lipangit/jiecaovideoplayer/develop/downloads/jiecaovideoplayer-1.3-javadoc.jar)**
* **[jiecaovideoplayer-1.3-sources.jar](https://raw.githubusercontent.com/lipangit/jiecaovideoplayer/develop/downloads/jiecaovideoplayer-1.3-sources.jar)**
* **[jiecaovideoplayer-1.5-demo.apk](https://raw.githubusercontent.com/lipangit/jiecaovideoplayer/develop/downloads/jiecaovideoplayer-1.5-demo.apk)**
* **[jiecaovideoplayer-1.5.aar](https://raw.githubusercontent.com/lipangit/jiecaovideoplayer/develop/downloads/jiecaovideoplayer-1.5.aar)**
* **[jiecaovideoplayer-1.5-javadoc.jar](https://raw.githubusercontent.com/lipangit/jiecaovideoplayer/develop/downloads/jiecaovideoplayer-1.5-javadoc.jar)**
* **[jiecaovideoplayer-1.5-sources.jar](https://raw.githubusercontent.com/lipangit/jiecaovideoplayer/develop/downloads/jiecaovideoplayer-1.5-sources.jar)**

##效果

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "fm.jiecao.jiecaovideoplayer"
minSdkVersion 16
targetSdkVersion 23
versionCode 15
versionName "1.4"
versionCode 16
versionName "1.5"
}
buildTypes {
release {
Expand Down
Binary file removed downloads/jiecaovideoplayer-1.3-demo.apk
Binary file not shown.
Binary file removed downloads/jiecaovideoplayer-1.3-javadoc.jar
Binary file not shown.
Binary file removed downloads/jiecaovideoplayer-1.3-sources.jar
Binary file not shown.
Binary file removed downloads/jiecaovideoplayer-1.3.aar
Binary file not shown.
Binary file added downloads/jiecaovideoplayer-1.5-demo.apk
Binary file not shown.
Binary file added downloads/jiecaovideoplayer-1.5-javadoc.jar
Binary file not shown.
Binary file added downloads/jiecaovideoplayer-1.5-sources.jar
Binary file not shown.
Binary file added downloads/jiecaovideoplayer-1.5.aar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/maven_push.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ signing {

group = "fm.jiecao"
archivesBaseName = "jiecaovideoplayer"
version = "1.4"
version = "1.5"

uploadArchives {
repositories {
Expand Down
4 changes: 2 additions & 2 deletions jcvideoplayer-lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
versionCode 15
versionName "1.4"
versionCode 16
versionName "1.5"
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,7 @@ private void loadMp3Thum() {
/**
* 只设置这一个播放器的皮肤
* 这个需要在setUp播放器的属性之前调用,因为enlarge图标的原因
* 所有参数如果不需要修改的设为0
*
* @param titleColor 标题颜色
* @param timeColor 时间颜色
Expand All @@ -748,6 +749,7 @@ public void setSkin(int titleColor, int timeColor, int seekDrawable, int bottomC
/**
* 设置所有播放器的皮肤
* 这个只要在初始化想要换肤的播放器之前运行即可,可以在application中也可以在activity中
* 所有参数如果不需要修改的设为0
*
* @param titleColor 标题颜色
* @param timeColor 时间颜色
Expand Down

0 comments on commit a3d1586

Please sign in to comment.