修改上传脚本,将从库从jcenter迁移到mavencentral

This commit is contained in:
laoyuyu
2021-04-18 19:28:29 +08:00
parent 6eab496b6a
commit ebbbbee1f8
55 changed files with 390 additions and 110 deletions

View File

@@ -15,6 +15,9 @@ android {
}
buildTypes {
debug{
debuggable true
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
@@ -33,4 +36,8 @@ dependencies {
implementation project(path: ':PublicComponent')
}
apply from: 'bintray-release.gradle'
//apply from: 'bintray-release.gradle'
ext{
PUBLISH_ARTIFACT_ID = 'm3u8'
}
apply from: '../gradle/mavenCentral-release.gradle'

View File

@@ -7,11 +7,8 @@ public final class IdGenerator {
* <p>
* 主要就是三部分: 时间戳进程id序列号 时间戳41id10位序列号12位
*
* @author chiwei
* @param args
* @since JDK 1.6
*/
private static volatile IdGenerator INSTANCE = null;
private final static long beginTs = 1483200000000L;

View File

@@ -31,8 +31,8 @@ import java.io.File;
import java.util.ArrayList;
/**
* @Author lyy
* @Date 2019-09-24
* @author lyy
* Date: 2019-09-24
*/
final class VodRecordHandler extends RecordHandler {
private M3U8TaskOption mOption;