Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit 427d5a9

Browse files
committed
Release v2.0.6
1 parent beebb2b commit 427d5a9

File tree

7 files changed

+29
-43
lines changed

7 files changed

+29
-43
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SDK for anything your problem to make easier developing android apps
88
## Version Release
99
This Is Latest Release
1010

11-
$version_release = 2.0.5
11+
$version_release = 2.0.6
1212

1313
What's New??
1414

@@ -57,14 +57,14 @@ allprojects {
5757

5858
dependencies {
5959
// library frogo-sdk
60-
implementation 'com.github.frogobox:frogo-android-sdk:2.0.5'
60+
implementation 'com.github.frogobox:frogo-android-sdk:2.0.6'
6161
}
6262

6363
#### <Option 2> Kotlin DSL Gradle
6464

6565
dependencies {
6666
// library frogo-sdk
67-
implementation("com.github.frogobox:frogo-android-sdk:2.0.5")
67+
implementation("com.github.frogobox:frogo-android-sdk:2.0.6")
6868
}
6969

7070
### Step 3. Function from this SDK

app/build.gradle.kts

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -79,21 +79,14 @@ android {
7979

8080
composeOptions {
8181
kotlinCompilerExtensionVersion = Dependency.COMPOSE_VERSION
82-
kotlinCompilerVersion = Dependency.KOTLIN_VERSION
8382
}
8483

8584
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
8685
kotlinOptions {
8786
jvmTarget = JavaVersion.VERSION_11.toString()
88-
useIR = true
8987
}
9088
}
9189

92-
packagingOptions {
93-
exclude("META-INF/AL2.0")
94-
exclude("META-INF/LGPL2.1")
95-
}
96-
9790
}
9891

9992
dependencies {
@@ -102,16 +95,16 @@ dependencies {
10295

10396
implementation(project(":frogosdk"))
10497

105-
implementation("androidx.core:core-ktx:1.6.0")
106-
implementation("androidx.appcompat:appcompat:1.3.1")
107-
implementation("androidx.constraintlayout:constraintlayout:2.1.0")
98+
implementation("androidx.core:core-ktx:1.7.0")
99+
implementation("androidx.appcompat:appcompat:1.4.0")
100+
implementation("androidx.constraintlayout:constraintlayout:2.1.2")
108101

109102
implementation("androidx.compose.ui:ui:${Dependency.COMPOSE_VERSION}")
110103
implementation("androidx.compose.material:material:${Dependency.COMPOSE_VERSION}")
111104
implementation("androidx.compose.ui:ui-tooling-preview:${Dependency.COMPOSE_VERSION}")
112105

113-
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.3.1")
114-
implementation("androidx.activity:activity-compose:1.3.1")
106+
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.4.0")
107+
implementation("androidx.activity:activity-compose:1.4.0")
115108

116109
implementation("com.google.code.gson:gson:2.8.8")
117110
implementation("com.google.android.material:material:1.4.0")

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99

1010
dependencies {
11-
classpath("com.android.tools.build:gradle:7.0.2")
11+
classpath("com.android.tools.build:gradle:7.0.4")
1212
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Dependency.KOTLIN_VERSION}")
1313
// NOTE: Do not place your application dependencies here; they belong
1414
// in the individual module build.gradle files

buildSrc/src/main/kotlin/Dependency.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ object Dependency {
1515

1616
// dependencies version
1717

18-
const val KOTLIN_VERSION = "1.5.21"
19-
const val COMPOSE_VERSION = "1.0.2"
18+
const val KOTLIN_VERSION = "1.5.31"
19+
const val COMPOSE_VERSION = "1.0.5"
2020

21-
const val KOIN_VERSION = "3.1.1"
21+
const val KOIN_VERSION = "3.1.4"
2222
const val ROOM_VERSION = "2.3.0"
2323

2424
const val ACTIVITY_KTX_VERSION = "1.2.3"

buildSrc/src/main/kotlin/ProjectSetting.kt

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

2828
const val VERSION_MAJOR = 2
2929
const val VERSION_MINOR = 0
30-
const val VERSION_PATCH = 5
30+
const val VERSION_PATCH = 6
3131

3232
const val PROJECT_COMPILE_SDK = 31
3333
const val PROJECT_MIN_SDK = 21

frogosdk/build.gradle.kts

Lines changed: 15 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -44,44 +44,37 @@ android {
4444

4545
composeOptions {
4646
kotlinCompilerExtensionVersion = Dependency.COMPOSE_VERSION
47-
kotlinCompilerVersion = Dependency.KOTLIN_VERSION
4847
}
4948

5049
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
5150
kotlinOptions {
5251
jvmTarget = JavaVersion.VERSION_11.toString()
53-
useIR = true
5452
}
5553
}
5654

57-
packagingOptions {
58-
exclude("META-INF/AL2.0")
59-
exclude("META-INF/LGPL2.1")
60-
}
61-
6255
}
6356

6457
dependencies {
6558

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

68-
implementation("androidx.appcompat:appcompat:1.3.1")
69-
implementation("androidx.core:core-ktx:1.6.0")
61+
implementation("androidx.appcompat:appcompat:1.4.0")
62+
implementation("androidx.core:core-ktx:1.7.0")
7063
implementation("androidx.preference:preference-ktx:1.1.1")
71-
implementation("androidx.constraintlayout:constraintlayout:2.1.0")
64+
implementation("androidx.constraintlayout:constraintlayout:2.1.2")
7265
implementation("androidx.legacy:legacy-support-v4:1.0.0")
7366

7467
implementation("androidx.compose.ui:ui:${Dependency.COMPOSE_VERSION}")
7568
implementation("androidx.compose.material:material:${Dependency.COMPOSE_VERSION}")
7669
implementation("androidx.compose.ui:ui-tooling-preview:${Dependency.COMPOSE_VERSION}")
7770

78-
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.3.1")
79-
implementation("androidx.activity:activity-compose:1.3.1")
71+
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.4.0")
72+
implementation("androidx.activity:activity-compose:1.4.0")
8073

8174
implementation("androidx.activity:activity-ktx:${Dependency.ACTIVITY_KTX_VERSION}")
8275
implementation("androidx.fragment:fragment-ktx:${Dependency.FRAGMENT_KTX_VERSION}")
8376

84-
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0-beta01")
77+
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0")
8578
implementation("androidx.lifecycle:lifecycle-extensions:2.2.0")
8679

8780
implementation("androidx.room:room-runtime:${Dependency.ROOM_VERSION}")
@@ -92,16 +85,16 @@ dependencies {
9285
implementation("com.google.code.gson:gson:2.8.8")
9386
implementation("com.google.android.material:material:1.4.0")
9487

95-
implementation("com.squareup.okhttp3:okhttp:4.9.0")
96-
implementation("com.squareup.okhttp3:logging-interceptor:4.9.0")
88+
implementation("com.squareup.okhttp3:okhttp:5.0.0-alpha.2")
89+
implementation("com.squareup.okhttp3:logging-interceptor:4.9.2")
9790

9891
implementation("com.squareup.retrofit2:retrofit:2.9.0")
9992
implementation("com.squareup.retrofit2:converter-gson:2.9.0")
100-
implementation("com.squareup.retrofit2:adapter-rxjava:2.3.0")
93+
implementation("com.squareup.retrofit2:adapter-rxjava:2.9.0")
10194
implementation("com.squareup.retrofit2:adapter-rxjava2:2.9.0")
10295

10396
implementation("io.reactivex.rxjava2:rxandroid:2.1.1")
104-
implementation("io.reactivex.rxjava2:rxjava:2.2.19")
97+
implementation("io.reactivex.rxjava2:rxjava:2.2.21")
10598

10699
implementation("com.github.javiersantos:PiracyChecker:1.2.8")
107100
implementation("com.github.bumptech.glide:glide:4.12.0")
@@ -110,14 +103,14 @@ dependencies {
110103
implementation("com.readystatesoftware.chuck:library:1.1.0")
111104

112105
api("com.google.dagger:dagger:2.38.1")
113-
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2-native-mt")
114-
api("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0")
115-
implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.3.1")
106+
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
107+
api("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2")
108+
implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.4.0")
116109

117-
kapt("androidx.lifecycle:lifecycle-compiler:2.4.0-beta01")
110+
kapt("androidx.lifecycle:lifecycle-compiler:2.4.0")
118111
kapt("androidx.room:room-compiler:2.3.0")
119112
kapt("com.google.dagger:dagger-compiler:2.37")
120-
kapt("com.github.bumptech.glide:compiler:4.11.0")
113+
kapt("com.github.bumptech.glide:compiler:4.12.0")
121114

122115
implementation("io.insert-koin:koin-core:${Dependency.KOIN_VERSION}") // Koin core features
123116
implementation("io.insert-koin:koin-android:${Dependency.KOIN_VERSION}") // Koin main features for Android (Scope,ViewModel ...)

frogosdk/src/main/java/com/frogobox/sdk/core/FrogoActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ abstract class FrogoActivity<VB : ViewBinding> : AppCompatActivity(), IFrogoActi
5555
Log.d(TAG, "View Binding : ${binding::class.java.simpleName}")
5656
}
5757

58-
override fun onCreateOptionsMenu(menu: Menu?): Boolean {
58+
override fun onCreateOptionsMenu(menu: Menu): Boolean {
5959
return true
6060
}
6161

0 commit comments

Comments
 (0)