Skip to content

Commit

Permalink
update: build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Dec 20, 2023
1 parent 7e61405 commit 2b2cb6b
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 30 deletions.
49 changes: 25 additions & 24 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ plugins {
android {

namespace "com.frogobox.research"
compileSdk 33
compileSdk 34

defaultConfig {
applicationId "com.frogobox.research"
minSdk 21
targetSdk 33
targetSdk 34
versionCode 1
versionName "1.0.0"

Expand All @@ -22,6 +22,7 @@ android {

buildFeatures {
viewBinding true
buildConfig true
}

buildTypes {
Expand All @@ -48,48 +49,48 @@ android {

dependencies {

implementation "androidx.core:core-ktx:1.9.0"
implementation "androidx.work:work-runtime-ktx:2.7.1"
implementation "androidx.appcompat:appcompat:1.5.1"
implementation "androidx.core:core-ktx:1.12.0"
implementation "androidx.work:work-runtime-ktx:2.9.0"
implementation "androidx.appcompat:appcompat:1.6.1"

implementation "androidx.activity:activity-ktx:1.6.1"
implementation "androidx.fragment:fragment-ktx:1.5.5"
implementation "androidx.activity:activity-ktx:1.8.2"
implementation "androidx.fragment:fragment-ktx:1.6.2"

implementation "androidx.constraintlayout:constraintlayout:2.1.4"

implementation "com.google.android.material:material:1.7.0"
implementation "com.google.android.material:material:1.11.0"

implementation "androidx.lifecycle:lifecycle-process:2.5.1"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.5.1"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1"
implementation "androidx.lifecycle:lifecycle-process:2.6.2"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.6.2"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.2"

implementation "com.google.code.gson:gson:2.10.1"

implementation "com.squareup.okhttp3:okhttp:5.0.0-alpha.2"
implementation "com.squareup.okhttp3:okhttp:5.0.0-alpha.7"
implementation "com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.7"

implementation "com.squareup.retrofit2:retrofit:2.9.0"
implementation "com.squareup.retrofit2:converter-gson:2.9.0"
implementation "com.squareup.retrofit2:adapter-rxjava3:2.9.0"

implementation "io.reactivex.rxjava3:rxjava:3.1.5"
implementation "io.reactivex.rxjava3:rxjava:3.1.8"
implementation "io.reactivex.rxjava3:rxandroid:3.0.2"

implementation "androidx.room:room-runtime:2.4.3"
implementation "androidx.room:room-ktx:2.4.3"
implementation "androidx.room:room-rxjava3:2.4.3"
implementation "androidx.room:room-runtime:2.6.1"
implementation "androidx.room:room-ktx:2.6.1"
implementation "androidx.room:room-rxjava3:2.6.1"

implementation "com.google.dagger:hilt-android:2.44.2"
implementation "com.google.dagger:hilt-android:2.49"

implementation "com.github.bumptech.glide:glide:4.14.2"
implementation "com.github.bumptech.glide:glide:4.16.0"

implementation "com.github.chuckerteam.chucker:library:3.5.2"
implementation "com.github.chuckerteam.chucker:library:4.0.0"

kapt "com.github.bumptech.glide:compiler:4.14.2"
kapt "androidx.lifecycle:lifecycle-compiler:2.5.1"
kapt "com.google.dagger:hilt-compiler:2.44.2"
kapt "androidx.room:room-compiler:2.4.3"
kapt "com.github.bumptech.glide:compiler:4.15.1"
kapt "androidx.lifecycle:lifecycle-compiler:2.6.2"
kapt "com.google.dagger:hilt-compiler:2.49"
kapt "androidx.room:room-compiler:2.6.1"

testImplementation "junit:junit:4.13.2"
androidTestImplementation "androidx.test.ext:junit:1.1.5"
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id "com.android.application" version '8.1.0' apply false
id "com.android.library" version '8.1.0' apply false
id "org.jetbrains.kotlin.android" version "1.7.0" apply false
id "com.google.dagger.hilt.android" version "2.44.2" apply false
id "com.android.application" version '8.2.0' apply false
id "com.android.library" version '8.2.0' apply false
id "org.jetbrains.kotlin.android" version "1.9.0" apply false
id "com.google.dagger.hilt.android" version "2.49" apply false
}

task clean(type: Delete) {
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@ kotlin.code.style=official
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true
android.defaults.buildfeatures.buildconfig=true
android.nonFinalResIds=false
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Feb 18 14:00:40 WIB 2023
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 2b2cb6b

Please sign in to comment.