File tree Expand file tree Collapse file tree 6 files changed +19
-9
lines changed
Expand file tree Collapse file tree 6 files changed +19
-9
lines changed Original file line number Diff line number Diff line change 2525## Version Release
2626This Is Latest Release
2727
28- $version_release = 1.1.0
28+ $version_release = 1.1.1
2929
3030What'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)
Original file line number Diff line number Diff 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" )
Original file line number Diff line number Diff line change @@ -2,8 +2,14 @@ import org.gradle.kotlin.dsl.`kotlin-dsl`
22
33repositories {
44 mavenCentral()
5+ maven { url = uri(" https://jitpack.io" ) }
56}
67
78plugins {
89 `kotlin- dsl`
10+ }
11+
12+ dependencies{
13+ // library frogo-build-src
14+ implementation(" com.github.frogobox:open-build-src:1.0.1" )
915}
Original file line number Diff line number Diff line change 1414object 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}
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -55,8 +55,7 @@ android {
5555}
5656
5757dependencies {
58- implementation(" org.jetbrains.kotlin:kotlin-stdlib:${Dependency .KOTLIN_VERSION } " )
59- implementation(" androidx.appcompat:appcompat:1.4.1" )
58+ implementation(Androidx .appCompat)
6059}
6160
6261afterEvaluate {
You can’t perform that action at this time.
0 commit comments