Skip to content

Commit ec0d141

Browse files
author
Bob
committed
release preparation
1 parent 6e476ea commit ec0d141

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

app/build.gradle

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
apply plugin: 'com.android.application'
22

33
android {
4+
compileSdk 33
45
defaultConfig {
56
applicationId "ru.coolsoft.iris2go"
67
minSdkVersion 19
78
targetSdkVersion 33
89
versionCode 1
9-
versionName "1.0"
10+
versionName "0.1"
1011
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
1112
}
1213
buildTypes {
@@ -22,9 +23,13 @@ dependencies {
2223
implementation fileTree(dir: 'libs', include: ['*.jar'])
2324
implementation 'androidx.appcompat:appcompat:1.6.1'
2425
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
25-
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
26-
implementation 'com.squareup.retrofit2:converter-simplexml:2.3.0'
26+
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
27+
implementation 'com.squareup.retrofit2:converter-simplexml:2.9.0'
2728
testImplementation 'junit:junit:4.13.2'
2829
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
2930
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
31+
32+
configurations {
33+
all*.exclude group: 'xpp3', module: 'xpp3'
34+
}
3035
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
mavenCentral()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:7.4.2'
10+
classpath 'com.android.tools.build:gradle:8.1.0'
1111

1212

1313
// NOTE: Do not place your application dependencies here; they belong

gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
# http://www.gradle.org/docs/current/userguide/build_environment.html
77
# Specifies the JVM arguments used for the daemon process.
88
# The setting is particularly useful for tweaking memory settings.
9+
android.defaults.buildfeatures.buildconfig=true
910
android.enableJetifier=true
11+
android.nonFinalResIds=false
12+
android.nonTransitiveRClass=false
1013
android.useAndroidX=true
1114
org.gradle.jvmargs=-Xmx1536m
1215
# When configured, Gradle will run in incubating parallel mode.

0 commit comments

Comments
 (0)