Skip to content

Commit dd37589

Browse files
committed
Use jitpack.
1 parent e2356e7 commit dd37589

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

activitytasklib/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ android {
77
defaultConfig {
88
minSdkVersion 15
99
targetSdkVersion 31
10+
versionCode 1
11+
versionName "1.0"
1012

1113
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1214
consumerProguardFiles "consumer-rules.pro"
@@ -33,7 +35,7 @@ dependencies {
3335
// ------------ publish to jitpack ------------
3436
def GROUP_ID = "cc.rome753"
3537
def ARTIFACT_ID = "activitytasklib"
36-
def VERSION = "1.0.0"
38+
def VERSION = "1.0"
3739

3840
publishing {
3941
publications {

app/build.gradle

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

2323
dependencies {
2424
// debugImplementation project(path: ':activitytasklib')
25-
debugImplementation "cc.rome753:activitytasklib:1.0.0"
25+
debugImplementation "com.github.rome753:ActivityTaskView:lib1.0"
2626
implementation 'androidx.appcompat:appcompat:1.1.0'
2727
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
2828
testImplementation 'junit:junit:4.12'

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
repositories {
55
jcenter()
66
google()
7-
mavenLocal()
7+
maven { url 'https://jitpack.io' }
88
}
99
dependencies {
1010
classpath "com.android.tools.build:gradle:4.1.0"
@@ -18,7 +18,7 @@ allprojects {
1818
repositories {
1919
jcenter()
2020
google()
21-
mavenLocal()
21+
maven { url 'https://jitpack.io' }
2222
}
2323
}
2424

0 commit comments

Comments
 (0)