张波

添加到阿里云私有库。

... ... @@ -56,6 +56,5 @@ repositories {
dependencies {
// implementation 'androidx.appcompat:appcompat:1.6.1'
implementation "com.google.android.material:material:1.4.0"
// implementation project(path: ':wdlog')
api(name: "wdlog-debug-v1.0.0", ext: "aar")
implementation 'com.wd:log:1.0.0'
}
\ No newline at end of file
... ...
No preview for this file type
... ... @@ -6,6 +6,8 @@ import android.os.Bundle;
import androidx.annotation.Nullable;
import com.wd.base.log.Logger;
/**
* @ProjectName: PeopleDailyVideo
* @Package: com.people.displayui.main
... ... @@ -24,5 +26,6 @@ public class MainActivity extends Activity {
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 直接进入首页
Logger.d("MainActivity onCreate");
}
}
... ...
... ... @@ -69,6 +69,15 @@ allprojects {
}
flatDir { dirs 'src/main/libs' }
// 快马私库
maven {
credentials {
username '6708d1cf6f4c940bd257c88d'
password 'Wm51gc4rARyr'
}
url 'https://packages.aliyun.com/6708d221eef79c23d7b02189/maven/repo-higom'
}
}
project.configurations.configureEach {
... ...
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'maven'
}
android {
... ... @@ -43,3 +44,19 @@ android {
dependencies {
implementation 'androidx.annotation:annotation:1.8.2'
}
uploadArchives {
repositories {
mavenDeployer {
repository(url: "https://packages.aliyun.com/6708d221eef79c23d7b02189/maven/repo-higom/") {
authentication(userName: '6708d1cf6f4c940bd257c88d', password: 'Wm51gc4rARyr')
}
pom.project {
artifactId 'log'
version '1.0.1'
groupId 'com.wd'
packaging 'aar'
}
}
}
}
\ No newline at end of file
... ...