Skip to content

Commit e20d8ac

Browse files
committed
Release v1.1.1
1 parent a8d871c commit e20d8ac

File tree

6 files changed

+19
-9
lines changed

6 files changed

+19
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
## Version Release
2626
This Is Latest Release
2727

28-
$version_release = 1.1.0
28+
$version_release = 1.1.1
2929

3030
What's New??
3131

@@ -66,14 +66,14 @@ allprojects {
6666

6767
dependencies {
6868
// library frogo-notification
69-
implementation 'com.github.amirisback:frogo-notification:1.1.0'
69+
implementation 'com.github.amirisback:frogo-notification:1.1.1'
7070
}
7171

7272
#### <Option 2> Kotlin DSL Gradle
7373

7474
dependencies {
7575
// library frogo-notification
76-
implementation("com.github.amirisback:frogo-notification:1.1.0")
76+
implementation("com.github.amirisback:frogo-notification:1.1.1")
7777
}
7878

7979
### Step 3. Implement frogo-notification (Simple Notification)

app/build.gradle.kts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,13 @@ dependencies {
7979

8080
// Library FrogoNotification
8181
implementation(project(":frogonotification"))
82-
83-
implementation("org.jetbrains.kotlin:kotlin-stdlib:${Dependency.KOTLIN_VERSION}")
82+
83+
implementation(Androidx.Core.ktx)
84+
implementation(Androidx.appCompat)
85+
implementation(Androidx.constraintLayout)
86+
implementation(Androidx.Work.runtimeKtx)
87+
implementation(Google.material)
88+
8489
implementation("androidx.core:core-ktx:1.7.0")
8590
implementation("androidx.appcompat:appcompat:1.4.1")
8691
implementation("androidx.constraintlayout:constraintlayout:2.1.3")

buildSrc/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@ import org.gradle.kotlin.dsl.`kotlin-dsl`
22

33
repositories {
44
mavenCentral()
5+
maven { url = uri("https://jitpack.io") }
56
}
67

78
plugins {
89
`kotlin-dsl`
10+
}
11+
12+
dependencies{
13+
// library frogo-build-src
14+
implementation("com.github.frogobox:open-build-src:1.0.1")
915
}

buildSrc/src/main/kotlin/Dependency.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
object Dependency {
1515

1616
// dependencies version
17-
const val KOTLIN_VERSION = "1.6.10"
17+
const val KOTLIN_VERSION = Version.JetBrains.kotlin
1818
const val COMPOSE_VERSION = "1.0.2"
1919

2020
}

buildSrc/src/main/kotlin/ProjectSetting.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ object ProjectSetting {
2424

2525
const val VERSION_MAJOR = 1
2626
const val VERSION_MINOR = 1
27-
const val VERSION_PATCH = 0
27+
const val VERSION_PATCH = 1
2828

2929
const val PROJECT_COMPILE_SDK = 31
3030
const val PROJECT_MIN_SDK = 21

frogonotification/build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ android {
5555
}
5656

5757
dependencies {
58-
implementation("org.jetbrains.kotlin:kotlin-stdlib:${Dependency.KOTLIN_VERSION}")
59-
implementation("androidx.appcompat:appcompat:1.4.1")
58+
implementation(Androidx.appCompat)
6059
}
6160

6261
afterEvaluate {

0 commit comments

Comments
 (0)