Skip to content

Commit

Permalink
Release v0.0.1-beta08
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Mar 29, 2022
1 parent 6a183c4 commit 6d274fd
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 28 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
This Is Latest Release

~ Beta Release
$version_release = 0.0.1-beta07
$version_release = 0.0.1-beta08

What's New??

Expand Down Expand Up @@ -70,7 +70,7 @@ What's New??
allprojects {
repositories {
...
maven { url = uri("https://jitpack.io") }
maven("https://jitpack.io")
}
}
```
Expand All @@ -81,14 +81,14 @@ allprojects {

dependencies {
// library frogo-ui
implementation 'com.github.frogobox:frogo-ui:0.0.1-beta07'
implementation 'com.github.frogobox:frogo-ui:0.0.1-beta08'
}

#### <Option 2> Kotlin DSL Gradle

dependencies {
// library frogo-ui
implementation("com.github.frogobox:frogo-ui:0.0.1-beta07")
implementation("com.github.frogobox:frogo-ui:0.0.1-beta08")
}

## Documentation
Expand Down
15 changes: 6 additions & 9 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,24 +61,22 @@ android {
targetCompatibility = JavaVersion.VERSION_11
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}

packagingOptions {
resources {
excludes += setOf("META-INF/AL2.0", "META-INF/LGPL2.1")
}
}

tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}
}

}

dependencies {

implementation(project(":frogoui"))
implementation(project(":frogocoreui"))
implementation(project(DependencyGradle.FROGO_PATH_CORE_UI))
implementation(project(DependencyGradle.FROGO_PATH_UI))

implementation(compose.ui)
implementation(compose.runtime)
Expand All @@ -87,7 +85,6 @@ dependencies {
implementation(compose.material)
implementation(compose.materialIconsExtended)


implementation(Androidx.Core.ktx)
implementation(Androidx.appCompat)
implementation(Androidx.constraintLayout)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
plugins {
id("com.android.application") version "7.1.2" apply false
id("com.android.library") version "7.1.2" apply false
id("org.jetbrains.kotlin.android") version "1.6.10" apply false
id("org.jetbrains.kotlin.android") version DependencyGradle.KOTLIN_VERSION apply false
id("org.jetbrains.kotlin.jvm") version DependencyGradle.KOTLIN_VERSION apply false
}

Expand Down
4 changes: 2 additions & 2 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ plugins {

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

dependencies{
// library frogo-build-src
implementation("com.github.frogobox:open-build-src:1.0.4")
implementation("com.github.frogobox:open-build-src:1.0.8-beta03")
}
5 changes: 4 additions & 1 deletion buildSrc/src/main/kotlin/DependencyGradle.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ object DependencyGradle {

// dependencies version
const val KOTLIN_VERSION = Version.JetBrains.kotlin
const val COMPOSE_MULTIPLATFORM_VERSION = Version.AndroidX.composeMultiPlatform
const val COMPOSE_MULTIPLATFORM_VERSION = Version.Androidx.composeMultiPlatform

const val FROGO_PATH_CORE_UI = ":frogocoreui"
const val FROGO_PATH_UI = ":frogoui"

const val FrogoRecyclerView = "com.github.amirisback:frogo-recycler-view:4.0.4"

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

// ---------------------------------------------------------------------------------------------

const val PROJECT_COMPILE_SDK = 31
const val PROJECT_MIN_SDK = 21
const val PROJECT_COMPILE_SDK = 32
const val PROJECT_TARGET_SDK = PROJECT_COMPILE_SDK

// ---------------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion frogocoreui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ publishing {
}

repositories {
maven { url = uri(Util.jitpackUrl) }
maven(Util.jitpackUrl)
}

}
12 changes: 5 additions & 7 deletions frogoui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,23 +43,21 @@ android {
targetCompatibility = JavaVersion.VERSION_11
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}

packagingOptions {
resources {
excludes += setOf("META-INF/AL2.0", "META-INF/LGPL2.1")
}
}

tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}
}

}

dependencies {

implementation(project(":frogocoreui"))
implementation(project(DependencyGradle.FROGO_PATH_CORE_UI))

implementation(compose.ui)
implementation(compose.runtime)
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginManagement {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven { url = uri("https://jitpack.io") }
maven("https://jitpack.io")
}
}

Expand All @@ -14,7 +14,7 @@ dependencyResolutionManagement {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven { url = uri("https://jitpack.io") }
maven("https://jitpack.io")
}
}

Expand Down

0 comments on commit 6d274fd

Please sign in to comment.