Skip to content

Commit

Permalink
Update libraries.
Browse files Browse the repository at this point in the history
  • Loading branch information
sirelon committed Sep 19, 2023
1 parent 60eb11a commit c0c8888
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 24 deletions.
34 changes: 17 additions & 17 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'org.jetbrains.kotlin.android'
id 'kotlin-parcelize'
// https://github.com/google/ksp/releases
id 'com.google.devtools.ksp' version '1.9.0-1.0.13'
id 'com.google.devtools.ksp' version '1.9.10-1.0.13'
}
apply plugin: 'kotlin-android'
apply plugin: 'com.google.gms.google-services'
Expand Down Expand Up @@ -34,8 +34,8 @@ android {
applicationId "com.sirelon.marsroverphotos"
minSdkVersion 21
targetSdkVersion 34
versionCode 40
versionName "2.4.3"
versionCode 41
versionName "2.4.4"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
signingConfig signingConfigs.release
}
Expand Down Expand Up @@ -67,11 +67,12 @@ android {
buildFeatures {
// Enables Jetpack Compose for this module
compose true
buildConfig true
}

composeOptions {
// https://developer.android.com/jetpack/androidx/releases/compose-compiler
kotlinCompilerExtensionVersion "1.5.1"
kotlinCompilerExtensionVersion "1.5.3"
}
namespace 'com.sirelon.marsroverphotos'
}
Expand All @@ -81,10 +82,10 @@ ksp {
}

dependencies {
implementation 'com.google.devtools.ksp:symbol-processing-api:1.9.0-1.0.11'
implementation 'com.google.devtools.ksp:symbol-processing-api:1.9.10-1.0.13'

// https://developer.android.com/jetpack/androidx/releases/lifecycle
implementation 'androidx.lifecycle:lifecycle-runtime-compose:2.6.1'
implementation 'androidx.lifecycle:lifecycle-runtime-compose:2.7.0-alpha02'

// COMPOSEEEE

Expand All @@ -100,7 +101,7 @@ dependencies {
// Material Design
implementation "androidx.compose.material:material:$composeVer"
// https://github.com/google/accompanist
def accompanistVer = '0.33.0-alpha'
def accompanistVer = '0.33.1-alpha'
implementation "com.google.accompanist:accompanist-placeholder-material:$accompanistVer"
implementation "com.google.accompanist:accompanist-flowlayout:$accompanistVer"
implementation "com.google.accompanist:accompanist-systemuicontroller:$accompanistVer"
Expand All @@ -112,9 +113,7 @@ dependencies {
implementation "androidx.compose.runtime:runtime-livedata:$composeVer"

// https://developer.android.com/jetpack/androidx/releases/navigation
implementation 'androidx.navigation:navigation-compose:2.7.0'
// https://developer.android.com/jetpack/androidx/releases/paging
implementation 'androidx.paging:paging-compose:1.0.0-alpha20'
implementation 'androidx.navigation:navigation-compose:2.7.2'
// https://developer.android.com/jetpack/androidx/releases/constraintlayout
implementation 'androidx.constraintlayout:constraintlayout-compose:1.1.0-alpha12'

Expand All @@ -126,10 +125,10 @@ dependencies {

// https://developer.android.com/jetpack/androidx/releases/activity
implementation 'androidx.activity:activity-compose:1.7.2'
implementation 'androidx.annotation:annotation:1.6.0'
implementation 'androidx.annotation:annotation:1.7.0'

// https://developer.android.com/jetpack/androidx/releases/room
def room_version = '2.6.0-alpha03'
def room_version = '2.6.0-beta01'
implementation "androidx.room:room-runtime:$room_version"
implementation "androidx.room:room-ktx:$room_version"
implementation "androidx.room:room-paging:$room_version"
Expand All @@ -139,10 +138,11 @@ dependencies {
implementation 'androidx.work:work-runtime-ktx:2.8.1'

// https://developer.android.com/jetpack/androidx/releases/paging
def paging_version = '3.2.0'
def paging_version = '3.2.1'
implementation "androidx.paging:paging-runtime-ktx:$paging_version"
implementation "androidx.paging:paging-compose:$paging_version"
// https://github.com/material-components/material-components-android/releases
implementation 'com.google.android.material:material:1.9.0'
implementation 'com.google.android.material:material:1.10.0-beta01'

// https://github.com/coil-kt/coil/blob/main/CHANGELOG.md
implementation('io.coil-kt:coil-compose:2.4.0')
Expand All @@ -155,14 +155,14 @@ dependencies {
implementation "com.squareup.retrofit2:converter-gson:$retrofitVer"

// https://firebase.google.com/support/release-notes/android
implementation platform('com.google.firebase:firebase-bom:32.2.2')
implementation platform('com.google.firebase:firebase-bom:32.3.1')

implementation 'com.google.firebase:firebase-analytics'
implementation 'com.google.firebase:firebase-crashlytics'
implementation 'com.google.firebase:firebase-perf'
implementation 'com.google.firebase:firebase-firestore'
implementation 'com.google.firebase:firebase-messaging'
implementation 'com.google.android.gms:play-services-ads:22.2.0'
implementation 'com.google.android.gms:play-services-ads:22.4.0'
implementation 'com.google.android.ump:user-messaging-platform:2.1.0'

// https://github.com/mocklets/pluto
Expand All @@ -173,5 +173,5 @@ dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.5")

// https://github.com/usuiat/Zoomable/releases
implementation "net.engawapg.lib:zoomable:1.5.0"
implementation "net.engawapg.lib:zoomable:1.5.1"
}
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.9.0'
ext.composeVer = '1.6.0-alpha03'
ext.kotlin_version = '1.9.10'
ext.composeVer = '1.6.0-alpha05'
repositories {
mavenCentral()
maven { url "https://maven.google.com" }
google()
gradlePluginPortal()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.0-alpha15'
classpath 'com.android.tools.build:gradle:8.3.0-alpha04'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.8'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
classpath 'com.google.firebase:perf-plugin:1.4.2'
classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.google.gms:google-services:4.4.0'
// Add the Crashlytics Gradle plugin.
}
}

plugins {
id 'org.jetbrains.kotlin.jvm' version '1.9.0' apply false
id 'org.jetbrains.kotlin.jvm' version '1.9.10' apply false
}

allprojects {
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,5 @@
#Sun Nov 08 02:36:56 EET 2020
org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
android.useAndroidX=true
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=true
android.nonFinalResIds=false

0 comments on commit c0c8888

Please sign in to comment.