File tree Expand file tree Collapse file tree 2 files changed +28
-10
lines changed Expand file tree Collapse file tree 2 files changed +28
-10
lines changed Original file line number Diff line number Diff line change @@ -8,23 +8,41 @@ android {
8
8
namespace ' com.developer.spoti.vspoti'
9
9
minSdkVersion 23
10
10
targetSdkVersion 35
11
- versionCode 4
12
- versionName " 3.2.1 "
11
+ versionCode 5
12
+ versionName " 3.2.2 "
13
13
}
14
14
15
15
compileOptions {
16
16
sourceCompatibility 11
17
17
targetCompatibility 11
18
18
}
19
+
20
+ buildTypes {
21
+ release {
22
+ minifyEnabled false
23
+ shrinkResources false
24
+ }
25
+ }
19
26
}
20
27
21
- publishing {
28
+ // Wrap publishing in afterEvaluate to ensure components are created
29
+ afterEvaluate {
30
+ publishing {
31
+ publications {
32
+ release(MavenPublication ) {
33
+ groupId = ' com.github.TutorialsAndroid'
34
+ artifactId = ' VSpot'
35
+ version = ' 3.2.2'
36
+
37
+ // Manually register the "release" component
38
+ artifact(" $buildDir /outputs/aar/library-release.aar" )
22
39
23
- publications {
24
- release(MavenPublication ) {
25
- groupId = ' com.github.TutorialsAndroid' // Match JitPack’s format
26
- artifactId = ' VSpot' // Your library name
27
- version = ' 3.0.0' // Follow semantic versioning
40
+ pom {
41
+ name = ' VSpot'
42
+ description = ' VSpot Android Library'
43
+ url = ' https://github.com/TutorialsAndroid/VSpot'
44
+ }
45
+ }
28
46
}
29
47
}
30
48
}
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ android {
6
6
namespace ' com.developer.spoti.vspot'
7
7
minSdkVersion 23
8
8
targetSdkVersion 35
9
- versionCode 4
10
- versionName " 3.2.1 "
9
+ versionCode 5
10
+ versionName " 3.2.2 "
11
11
}
12
12
13
13
compileOptions {
You can’t perform that action at this time.
0 commit comments