Skip to content

Commit 28439f1

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

File tree

18 files changed

+106
-191
lines changed

18 files changed

+106
-191
lines changed

.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
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -84,7 +86,7 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
8890

8991
# Use the maximum available, or set MAX_FD != -1 to use that value.
9092
MAX_FD=maximum
@@ -203,7 +205,7 @@ fi
203205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
204206

205207
# Collect all arguments for the java command:
206-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
207209
# and any embedded shellness will be escaped.
208210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
209211
# treated as '${Hostname}' itself on the command line.

Sample/gradlew.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################

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)