Skip to content

Commit 6568675

Browse files
committed
Fix gradle.
1 parent 1227b97 commit 6568675

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

activitytasklib/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,20 @@ afterEvaluate {
4949
publishing {
5050
publications {
5151
// Creates a Maven publication called "release".
52-
group = 'cc.rome753'
52+
group = 'cc.rome753.activitytask'
5353
version = '1.0.0'
5454
release(MavenPublication) {
5555
// Applies the component for the release build variant.
5656
from components.release
5757
groupId = group
58-
artifactId = 'activitytasklib'
58+
artifactId = 'lib'
5959
version = version
6060
}
6161
debug(MavenPublication) {
6262
// Applies the component for the release build variant.
6363
from components.debug
6464
groupId = group
65-
artifactId = 'activitytasklib'
65+
artifactId = 'lib'
6666
version = version
6767
}
6868
}

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ android {
2626

2727
dependencies {
2828
debugImplementation project(path: ':activitytasklib')
29-
// debugImplementation "com.github.rome753:ActivityTaskView:lib1.3"
29+
// debugImplementation "com.github.rome753:ActivityTaskView:lib1.5"
3030
implementation 'androidx.appcompat:appcompat:1.1.0'
3131
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
3232
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)