-
Notifications
You must be signed in to change notification settings - Fork 352
/
Copy pathbuild.gradle
41 lines (36 loc) · 1.19 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
apply plugin: 'com.android.library'
apply plugin: 'com.novoda.bintray-release'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "androidx.appcompat:appcompat:$supportLibraryVersion"
implementation "com.google.android.material:material:$materialLibraryVersion"
implementation project(':library')
// implementation 'com.liaoinstan.springview:library:1.7.0'
}
publish {
artifactId = 'WeixinHeader' // artifactId
uploadName = 'SpringView:WeixinHeader' // 展示名字
publishVersion = '1.7.0' // 版本
desc = rootProject.ext.desc
userOrg = rootProject.userOrg
groupId = rootProject.groupId
website = rootProject.website
licences = rootProject.licences
autoPublish = false
dryRun = true
}