Skip to content

Commit aeb4ced

Browse files
committed
1.3.0
1 parent e3172c4 commit aeb4ced

13 files changed

+704
-676
lines changed

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
buildscript {
44
ext.kotlin_version = '1.3.72'
55
repositories {
6+
maven { url "https://dl.bintray.com/thelasterstar/maven/" }
67
google()
78
jcenter()
89
}
@@ -17,10 +18,11 @@ allprojects {
1718
repositories {
1819
google()
1920
jcenter()
21+
maven { url "https://dl.bintray.com/thelasterstar/maven/" }
2022
maven { url 'https://jitpack.io' }
2123
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
22-
maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
23-
maven { url "https://dl.bintray.com/thelasterstar/maven/" }
24+
maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
25+
2426
}
2527
tasks.withType(Javadoc){
2628
options.addStringOption('Xdoclint:none','-quiet')

libloginshare/build.gradle

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,45 @@ android {
1515
}
1616

1717
dependencies {
18-
implementation fileTree(include: ['*.jar','*.aar'], dir: 'libs')
18+
implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs')
1919
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
2020
implementation 'androidx.core:core-ktx:1.3.2'
2121
implementation 'androidx.appcompat:appcompat:1.2.0'
2222
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
2323
api 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:6.7.9'
2424
api files('libs/open_sdk_r6008_lite.jar')
2525
// api 'com.tencent.tauth:qqopensdk:3.52.0'
26-
api 'com.sina.weibo.sdk:core:4.1.0:openDefaultRelease@aar'
26+
// api 'com.sina.weibo.sdk:core:4.1.0:openDefaultRelease@aar'
2727
// provided files('libs/core-4.1.0-openDefaultRelease.aar')
2828

2929
}
3030

3131
repositories {
3232
mavenCentral()
33-
}
33+
}
34+
35+
//apply plugin: 'maven'
36+
//uploadArchives{
37+
// repositories.mavenDeployer{
38+
// // 本地仓库路径
39+
// repository(url:"file://C://Users//tech137//.m2//repository/")
40+
// // 唯一标识
41+
// pom.groupId = "com.hacknife"
42+
// // 项目名称
43+
// pom.artifactId = "loginsharepay"
44+
// // 版本号
45+
// pom.version = "1.2.7"
46+
// }
47+
//}
48+
49+
//apply plugin: 'maven-publish'
50+
//publishing {
51+
// publications {
52+
// maven(MavenPublication) {
53+
// artifact "D://DZRefresh/xxlib/build/outputs/aar/xxlib-debug.aar"
54+
// groupId "com.android.dzrefresh"
55+
// artifactId "APP"
56+
// version "1.0.0"
57+
// }
58+
// }
59+
//}
246 KB
Binary file not shown.

0 commit comments

Comments
 (0)