Skip to content

Commit

Permalink
Issue fix, readme fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharhow committed Mar 2, 2024
1 parent 7978389 commit 9912542
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ In `build.gradle` of app module, include this dependency

```gradle
dependencies {
implementation 'com.tmahmudev.shimmerfy:shimmerfy:1.0.0'
implementation 'com.tmahmudev.shimmerfy:shimmerfy:1.0.2'
}
```

Expand Down
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.kotlin) apply false
alias(libs.plugins.android.library) apply false
id("com.vanniktech.maven.publish") version "0.27.0"

}

Expand Down
17 changes: 4 additions & 13 deletions shimmerfy/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import org.apache.http.entity.ContentType.create

plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.android.kotlin)
id("com.vanniktech.maven.publish")

}

android {
Expand Down Expand Up @@ -60,15 +62,4 @@ dependencies {
androidTestImplementation(libs.espresso.core)
}

afterEvaluate {
publishing {
publications {
create<MavenPublication>("release") {
from(components["release"])
groupId = "com.tmahmudev.shimmerfy"
artifactId = "shimmerfy"
version = "1.0.1"
}
}
}
}

0 comments on commit 9912542

Please sign in to comment.