Skip to content

Commit

Permalink
Update AGP to version 8.5.2 and update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Khokhlinvladimir committed Aug 12, 2024
1 parent fcbd05b commit 24aa8d1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.0.2' apply false
id 'com.android.library' version '8.0.2' apply false
id 'com.android.application' version '8.5.2' apply false
id 'com.android.library' version '8.5.2' apply false
id 'org.jetbrains.kotlin.android' version '1.9.20' apply 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 @@
#Wed Oct 25 16:26:40 MSK 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
26 changes: 13 additions & 13 deletions pinlibrary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {

defaultConfig {
minSdk 24
targetSdk 34
targetSdkVersion 34

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down Expand Up @@ -57,7 +57,7 @@ afterEvaluate {
from components.release
groupId = 'com.android.pinlibrary'
artifactId = 'pinlibrary'
version = '1.0.0'
version = '1.0.4'
}
}
repositories {
Expand All @@ -72,41 +72,41 @@ afterEvaluate {
dependencies {
// AndroidX Core и Kotlin Extensions
implementation 'androidx.core:core-ktx:1.13.1'
implementation platform('org.jetbrains.kotlin:kotlin-bom:1.8.0')
implementation platform('org.jetbrains.kotlin:kotlin-bom:1.9.24')

// AndroidX Lifecycle
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.2'
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2"
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.4'
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.4"

// AndroidX Activity Compose
implementation 'androidx.activity:activity-compose:1.9.0'
implementation 'androidx.activity:activity-compose:1.9.1'

// Unit-тестирование с JUnit
// Unit-test с JUnit
testImplementation 'junit:junit:4.13.2'

// AndroidX Test с JUnit
androidTestImplementation 'androidx.test.ext:junit:1.2.1'

// Espresso для UI-тестирования
// Espresso для UI-test
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'

// AndroidX Compose для UI-тестирования
androidTestImplementation platform('androidx.compose:compose-bom:2022.10.00')
// AndroidX Compose для UI-test
androidTestImplementation platform('androidx.compose:compose-bom:2024.06.00')
androidTestImplementation 'androidx.compose.ui:ui-test-junit4'

// AndroidX Compose UI Tooling (только для отладки)
debugImplementation 'androidx.compose.ui:ui-tooling'

// Версия Compose
implementation platform('androidx.compose:compose-bom:2022.10.00')
// Compose version
implementation platform('androidx.compose:compose-bom:2024.06.00')

// Compose UI
implementation 'androidx.compose.ui:ui'

// Compose Graphics
implementation 'androidx.compose.ui:ui-graphics'

// Compose UI Tooling (предварительная версия)
// Compose UI Tooling
implementation 'androidx.compose.ui:ui-tooling-preview'

// Compose Material3
Expand Down

0 comments on commit 24aa8d1

Please sign in to comment.