Skip to content

Commit 13efc9b

Browse files
committed
⚡ UNT-T6094 General library version update.
1 parent 9e6c4d2 commit 13efc9b

File tree

4 files changed

+21
-25
lines changed

4 files changed

+21
-25
lines changed

app/build.gradle

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ plugins {
44
}
55

66
android {
7-
compileSdk 31
8-
buildToolsVersion "30.0.3"
7+
compileSdk 33
98

109
defaultConfig {
1110
applicationId "com.simform.ssjetpackcomposeprogressbutton"
1211
minSdk 21
13-
targetSdk 30
12+
targetSdk 33
1413
versionCode 2
1514
versionName "1.0.7"
1615

@@ -32,23 +31,21 @@ android {
3231
}
3332
kotlinOptions {
3433
jvmTarget = '11'
35-
useIR = true
3634
}
3735
buildFeatures {
3836
compose true
3937
}
4038
composeOptions {
41-
kotlinCompilerExtensionVersion compose_version
42-
kotlinCompilerVersion kotlin_version
39+
kotlinCompilerExtensionVersion compose_compiler
4340
}
4441
}
4542

4643
dependencies {
47-
implementation 'androidx.appcompat:appcompat:1.4.1'
48-
implementation 'com.google.android.material:material:1.5.0'
49-
implementation "androidx.compose.ui:ui:1.0.5"
44+
implementation 'androidx.appcompat:appcompat:1.6.0-rc01'
45+
implementation 'com.google.android.material:material:1.6.1'
46+
implementation "androidx.compose.ui:ui:1.2.1"
5047
implementation "androidx.compose.material:material:$compose_version"
5148
implementation "androidx.compose.ui:ui-tooling:$compose_version"
52-
implementation 'androidx.activity:activity-compose:1.4.0'
49+
implementation 'androidx.activity:activity-compose:1.5.1'
5350
implementation project(path: ':ssjetpackcomposeprogressbutton')
5451
}

build.gradle

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
buildscript {
22
ext {
3-
compose_version = '1.0.0-rc02'
4-
kotlin_version = '1.5.10'
3+
compose_version = '1.2.1'
4+
compose_compiler = '1.3.1'
55
}
66
repositories {
77
google()
88
mavenCentral()
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:7.1.2'
12-
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10'
13-
classpath 'com.android.tools.lint:lint:30.0.4'
11+
classpath 'com.android.tools.build:gradle:7.2.2'
12+
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10'
13+
}
14+
configurations {
15+
all {
16+
exclude group: 'androidx.lifecycle', module: 'lifecycle-viewmodel-ktx'
17+
}
1418
}
1519
}
1620

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Thu May 06 09:44:53 IST 2021
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

ssjetpackcomposeprogressbutton/build.gradle

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,18 @@ afterEvaluate {
1212
from components.release
1313
groupId = 'com.simform.ssloadingbuttonlibrary'
1414
artifactId = 'ssjetpackcomposeprogressbutton'
15-
version = '1.0.7'
15+
version = '1.0.8'
1616
}
1717
}
1818
}
1919
}
2020

2121
android {
22-
compileSdk 30
23-
buildToolsVersion "30.0.3"
22+
compileSdk 33
2423

2524
defaultConfig {
2625
minSdk 21
27-
targetSdk 30
28-
versionCode 1
29-
versionName "1.0"
26+
targetSdk 33
3027

3128
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
3229
consumerProguardFiles "consumer-rules.pro"
@@ -45,7 +42,6 @@ android {
4542
}
4643

4744
kotlinOptions {
48-
useIR = true
4945
jvmTarget = '11'
5046
}
5147

@@ -55,8 +51,7 @@ android {
5551
}
5652

5753
composeOptions {
58-
kotlinCompilerExtensionVersion compose_version
59-
kotlinCompilerVersion kotlin_version
54+
kotlinCompilerExtensionVersion compose_compiler
6055
}
6156
}
6257

0 commit comments

Comments
 (0)