Skip to content

Commit

Permalink
Release v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Mar 9, 2022
1 parent a8d871c commit e20d8ac
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
## Version Release
This Is Latest Release

$version_release = 1.1.0
$version_release = 1.1.1

What's New??

Expand Down Expand Up @@ -66,14 +66,14 @@ allprojects {

dependencies {
// library frogo-notification
implementation 'com.github.amirisback:frogo-notification:1.1.0'
implementation 'com.github.amirisback:frogo-notification:1.1.1'
}

#### <Option 2> Kotlin DSL Gradle

dependencies {
// library frogo-notification
implementation("com.github.amirisback:frogo-notification:1.1.0")
implementation("com.github.amirisback:frogo-notification:1.1.1")
}

### Step 3. Implement frogo-notification (Simple Notification)
Expand Down
9 changes: 7 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,13 @@ dependencies {

// Library FrogoNotification
implementation(project(":frogonotification"))

implementation("org.jetbrains.kotlin:kotlin-stdlib:${Dependency.KOTLIN_VERSION}")

implementation(Androidx.Core.ktx)
implementation(Androidx.appCompat)
implementation(Androidx.constraintLayout)
implementation(Androidx.Work.runtimeKtx)
implementation(Google.material)

implementation("androidx.core:core-ktx:1.7.0")
implementation("androidx.appcompat:appcompat:1.4.1")
implementation("androidx.constraintlayout:constraintlayout:2.1.3")
Expand Down
6 changes: 6 additions & 0 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@ import org.gradle.kotlin.dsl.`kotlin-dsl`

repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}

plugins {
`kotlin-dsl`
}

dependencies{
// library frogo-build-src
implementation("com.github.frogobox:open-build-src:1.0.1")
}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Dependency.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
object Dependency {

// dependencies version
const val KOTLIN_VERSION = "1.6.10"
const val KOTLIN_VERSION = Version.JetBrains.kotlin
const val COMPOSE_VERSION = "1.0.2"

}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ProjectSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ object ProjectSetting {

const val VERSION_MAJOR = 1
const val VERSION_MINOR = 1
const val VERSION_PATCH = 0
const val VERSION_PATCH = 1

const val PROJECT_COMPILE_SDK = 31
const val PROJECT_MIN_SDK = 21
Expand Down
3 changes: 1 addition & 2 deletions frogonotification/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ android {
}

dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib:${Dependency.KOTLIN_VERSION}")
implementation("androidx.appcompat:appcompat:1.4.1")
implementation(Androidx.appCompat)
}

afterEvaluate {
Expand Down

0 comments on commit e20d8ac

Please sign in to comment.