File tree 5 files changed +9
-5
lines changed
5 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
buildscript {
3
3
ext. kotlin_version = " 1.8.10"
4
+ ext. agp_version = " 7.4.1"
4
5
repositories {
5
6
google()
6
7
mavenCentral()
7
8
}
8
9
dependencies {
9
- classpath ' com.android.tools.build:gradle:7.4.1 '
10
+ classpath " com.android.tools.build:gradle:$a gp_version "
10
11
// NOTE: Do not place your application dependencies here; they belong
11
12
// in the individual module build.gradle files
12
13
}
@@ -36,14 +37,14 @@ ext {
36
37
minSdkVersion = 14
37
38
targetSdkVersion = 33
38
39
39
- versionName = " 1.5.7 "
40
+ versionName = " 1.5.8 "
40
41
41
42
dependencies = [:]
42
43
dependencies. coreKtx = ' androidx.core:core-ktx:1.9.0'
43
44
dependencies. core = ' androidx.core:core:1.9.0'
44
45
dependencies. fragmentKtx = ' androidx.fragment:fragment-ktx:1.5.5'
45
46
dependencies. fragment = ' androidx.fragment:fragment:1.5.5'
46
- dependencies. viewBinding = ' androidx.databinding:viewbinding:7.4.1 '
47
+ dependencies. viewBinding = " androidx.databinding:viewbinding:$a gp_version "
47
48
dependencies. lifecycleCommonJava8 = ' androidx.lifecycle:lifecycle-common-java8:2.5.1'
48
49
dependencies. lifecycleCommon = ' androidx.lifecycle:lifecycle-common:2.5.1'
49
50
dependencies. lifecycleViewmodel = ' androidx.lifecycle:lifecycle-viewmodel:2.5.1'
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ afterEvaluate {
17
17
release(MavenPublication ) {
18
18
from components. kotlin
19
19
artifact(sourcesJar)
20
+ artifact(javadocJar)
20
21
21
22
groupId = project. ext. groupId
22
23
artifactId = project. ext. artifactId
Original file line number Diff line number Diff line change 12
12
tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ) {
13
13
kotlinOptions {
14
14
jvmTarget = " 1.8"
15
- kotlinOptions. freeCompilerArgs + =
16
- [' -module-name' , " com.github.kirich1409.ViewBindingPropertyDelegate.core" ]
15
+ freeCompilerArgs + = [' -module-name' , " com.github.kirich1409.ViewBindingPropertyDelegate.core" ]
17
16
}
18
17
}
19
18
22
21
targetCompatibility = JavaVersion . VERSION_1_8
23
22
24
23
withSourcesJar()
24
+ withJavadocJar()
25
25
}
26
26
27
27
dependencies {
Original file line number Diff line number Diff line change 24
24
targetCompatibility = JavaVersion . VERSION_1_8
25
25
26
26
withSourcesJar()
27
+ withJavadocJar()
27
28
}
28
29
29
30
dependencies {
Original file line number Diff line number Diff line change 22
22
targetCompatibility = JavaVersion . VERSION_1_8
23
23
24
24
withSourcesJar()
25
+ withJavadocJar()
25
26
}
26
27
27
28
dependencies {
You can’t perform that action at this time.
0 commit comments