Skip to content

Commit 28439f1

Browse files
author
Julio Cesar Bueno Cotta
committed
update dependencies
1 parent ae479eb commit 28439f1

18 files changed

Lines changed: 106 additions & 191 deletions

File tree

.gitlab-ci.yml

Lines changed: 0 additions & 95 deletions
This file was deleted.

Sample/app/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ android {
99

1010
defaultConfig {
1111
minSdk = 21
12-
targetSdk = 34
13-
compileSdk = 34
12+
targetSdk = 35
13+
compileSdk = 35
1414

1515
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1616
}
@@ -21,11 +21,11 @@ android {
2121
}
2222
}
2323
compileOptions {
24-
sourceCompatibility = JavaVersion.VERSION_17
25-
targetCompatibility = JavaVersion.VERSION_17
24+
sourceCompatibility = JavaVersion.VERSION_21
25+
targetCompatibility = JavaVersion.VERSION_21
2626
}
2727
kotlinOptions {
28-
jvmTarget = "17"
28+
jvmTarget = "21"
2929
}
3030
buildFeatures {
3131
compose = true

Sample/feature_a/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ android {
99

1010
defaultConfig {
1111
minSdkVersion 21
12-
targetSdkVersion 34
13-
compileSdk 34
12+
targetSdkVersion 35
13+
compileSdk 35
1414

1515
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1616
consumerProguardFiles "consumer-rules.pro"
@@ -23,11 +23,11 @@ android {
2323
}
2424
}
2525
compileOptions {
26-
sourceCompatibility JavaVersion.VERSION_17
27-
targetCompatibility JavaVersion.VERSION_17
26+
sourceCompatibility JavaVersion.VERSION_21
27+
targetCompatibility JavaVersion.VERSION_21
2828
}
2929
kotlinOptions {
30-
jvmTarget = "17"
30+
jvmTarget = "21"
3131
}
3232

3333
buildFeatures {

Sample/feature_b/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ android {
99

1010
defaultConfig {
1111
minSdkVersion 21
12-
targetSdkVersion 34
13-
compileSdk 34
12+
targetSdkVersion 35
13+
compileSdk 35
1414

1515
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1616
consumerProguardFiles "consumer-rules.pro"
@@ -23,11 +23,11 @@ android {
2323
}
2424
}
2525
compileOptions {
26-
sourceCompatibility JavaVersion.VERSION_17
27-
targetCompatibility JavaVersion.VERSION_17
26+
sourceCompatibility JavaVersion.VERSION_21
27+
targetCompatibility JavaVersion.VERSION_21
2828
}
2929
kotlinOptions {
30-
jvmTarget = '17'
30+
jvmTarget = '21'
3131
}
3232

3333
buildFeatures {
252 Bytes
Binary file not shown.

Sample/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

Sample/gradlew

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Sample/gradlew.bat

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Sample/login/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010

1111
defaultConfig {
1212
minSdkVersion 21
13-
targetSdkVersion 34
14-
compileSdk 34
13+
targetSdkVersion 35
14+
compileSdk 35
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
consumerProguardFiles "consumer-rules.pro"
@@ -24,11 +24,11 @@ android {
2424
}
2525
}
2626
compileOptions {
27-
sourceCompatibility JavaVersion.VERSION_17
28-
targetCompatibility JavaVersion.VERSION_17
27+
sourceCompatibility JavaVersion.VERSION_21
28+
targetCompatibility JavaVersion.VERSION_21
2929
}
3030
kotlinOptions {
31-
jvmTarget = '17'
31+
jvmTarget = '21'
3232
}
3333
buildFeatures {
3434
compose true

Sample/routes/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010

1111
defaultConfig {
1212
minSdkVersion 21
13-
targetSdkVersion 34
14-
compileSdk 34
13+
targetSdkVersion 35
14+
compileSdk 35
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
}
@@ -22,11 +22,11 @@ android {
2222
}
2323
}
2424
compileOptions {
25-
sourceCompatibility JavaVersion.VERSION_17
26-
targetCompatibility JavaVersion.VERSION_17
25+
sourceCompatibility JavaVersion.VERSION_21
26+
targetCompatibility JavaVersion.VERSION_21
2727
}
2828
kotlinOptions {
29-
jvmTarget = '17'
29+
jvmTarget = '21'
3030
}
3131
buildFeatures {
3232
compose true
@@ -35,5 +35,5 @@ android {
3535

3636
dependencies {
3737
implementation(libs.androidx.compose.foundation)
38-
api("com.veepee.vpcore.link-router:link-router:0.5.3")
38+
api("com.veepee.vpcore.link-router:link-router:0.55")
3939
}

0 commit comments

Comments
 (0)