Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fastcoding
/
wdstartup
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:14:06 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2aeeb44dd2acaffb2866025ecaf5549c10fa7de4
2aeeb44d
1 parent
37fd6d1b
对接阿里云私库,采用maven私库方式集成
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
1 deletions
app/build.gradle
app/libs/wdstartup-debug-v1.0.0.aar
build.gradle
wdstartup/build.gradle
app/build.gradle
View file @
2aeeb44
...
...
@@ -57,5 +57,5 @@ dependencies {
// implementation 'androidx.appcompat:appcompat:1.6.1'
implementation
"com.google.android.material:material:1.4.0"
// implementation project(path: ':wdstartup')
api
(
name:
"wdstartup-debug-v1.0.0"
,
ext:
"aar"
)
implementation
'com.wd:startup:1.0.0'
}
\ No newline at end of file
...
...
app/libs/wdstartup-debug-v1.0.0.aar
deleted
100644 → 0
View file @
37fd6d1
No preview for this file type
build.gradle
View file @
2aeeb44
...
...
@@ -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
{
...
...
wdstartup/build.gradle
View file @
2aeeb44
plugins
{
id
'com.android.library'
id
'kotlin-android'
id
'maven'
}
android
{
...
...
@@ -42,4 +43,20 @@ android {
dependencies
{
}
uploadArchives
{
repositories
{
mavenDeployer
{
repository
(
url:
"https://packages.aliyun.com/6708d221eef79c23d7b02189/maven/repo-higom/"
)
{
authentication
(
userName:
'6708d1cf6f4c940bd257c88d'
,
password:
'Wm51gc4rARyr'
)
}
pom
.
project
{
artifactId
'startup'
version
'1.0.0'
groupId
'com.wd'
packaging
'aar'
}
}
}
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment