Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fastcoding
/
wdlog
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
张波
2024-10-11 16:01:17 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6904e658ee4e67011dfbe7d753b1e3cd92c45275
6904e658
1 parent
a7ed75e4
添加到阿里云私有库。
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
30 additions
and
2 deletions
app/build.gradle
app/libs/wdlog-debug-v1.0.0.aar
app/src/main/java/com/example/myapplication/MainActivity.java
build.gradle
wdlog/build.gradle
app/build.gradle
View file @
6904e65
...
...
@@ -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
...
...
app/libs/wdlog-debug-v1.0.0.aar
deleted
100644 → 0
View file @
a7ed75e
No preview for this file type
app/src/main/java/com/example/myapplication/MainActivity.java
View file @
6904e65
...
...
@@ -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"
);
}
}
...
...
build.gradle
View file @
6904e65
...
...
@@ -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
{
...
...
wdlog/build.gradle
View file @
6904e65
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
...
...
Please
register
or
login
to post a comment