| | |
| | | |
| | | android { |
| | | compileSdkVersion 33 |
| | | namespace 'com.hdl.sdk.link' // 替换为你的包名 |
| | | |
| | | defaultConfig { |
| | | minSdkVersion 21 |
| | |
| | | outputFileName = "com.hdl.android.debugsdk-v" + defaultConfig.versionName + ".aar" |
| | | } |
| | | } |
| | | // 启用 BuildConfig 生成 |
| | | buildFeatures { |
| | | buildConfig true |
| | | } |
| | | } |
| | | |
| | | dependencies { |
| | |
| | | |
| | | apply plugin: 'maven-publish' |
| | | afterEvaluate { |
| | | publishing { |
| | | publications { |
| | | plugin(MavenPublication) { |
| | | from components.release |
| | | groupId 'com.hdl.android' |
| | | version "$android.defaultConfig.versionName" |
| | | artifactId = 'debugsdk' |
| | | |
| | | } |
| | | } |
| | | repositories { |
| | | // //生产库 |
| | | maven { |
| | | url = 'https://packages.aliyun.com/maven/repository/2012126-release-Mc0DNo/' |
| | | credentials { |
| | | username '5f0673aa7cd41782836e7d3e' |
| | | password 'lBNkb1So7zEY' |
| | | } |
| | | } |
| | | //非生产库 |
| | | maven { |
| | | url = 'https://packages.aliyun.com/maven/repository/2012126-snapshot-yySdeX/' |
| | | credentials { |
| | | username '5f0673aa7cd41782836e7d3e' |
| | | password 'lBNkb1So7zEY' |
| | | } |
| | | } |
| | | } |
| | | } |
| | | // publishing { |
| | | // publications { |
| | | // plugin(MavenPublication) { |
| | | // from components.release |
| | | // groupId 'com.hdl.android' |
| | | // version "$android.defaultConfig.versionName" |
| | | // artifactId = 'debugsdk' |
| | | // |
| | | // } |
| | | // } |
| | | // repositories { |
| | | //// //生产库 |
| | | // maven { |
| | | // url = 'https://packages.aliyun.com/maven/repository/2012126-release-Mc0DNo/' |
| | | // credentials { |
| | | // username '5f0673aa7cd41782836e7d3e' |
| | | // password 'lBNkb1So7zEY' |
| | | // } |
| | | // } |
| | | // //非生产库 |
| | | // maven { |
| | | // url = 'https://packages.aliyun.com/maven/repository/2012126-snapshot-yySdeX/' |
| | | // credentials { |
| | | // username '5f0673aa7cd41782836e7d3e' |
| | | // password 'lBNkb1So7zEY' |
| | | // } |
| | | // } |
| | | // } |
| | | // } |
| | | } |