Skip to content

Commit e27ac42

Browse files
committed
Upgrading libs/gradle
1 parent 9b4ffdc commit e27ac42

17 files changed

+41
-42
lines changed

app/build.gradle

+18-18
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
namespace 'nl.hnogames.domoticz'
5-
compileSdkVersion 33
5+
compileSdk 34
66

77
def versionPropsFile = file('version.properties')
88
if (versionPropsFile.canRead()) {
@@ -41,7 +41,7 @@ android {
4141
versionCode version_Code
4242
versionName "${versionMajor}.${versionMinor}.${versionPatch} (${versionBuild})"
4343
minSdkVersion 23
44-
targetSdkVersion 33
44+
targetSdkVersion 34
4545
multiDexEnabled true
4646
wearAppUnbundled true
4747
}
@@ -169,38 +169,38 @@ dependencies {
169169
implementation fileTree(include: ['*.jar'], dir: 'libs')
170170
wearApp project(':wear')
171171

172-
implementation 'androidx.core:core:1.10.1'
173-
implementation "androidx.work:work-runtime:2.8.1"
174-
implementation 'androidx.preference:preference:1.2.0'
172+
implementation 'androidx.core:core:1.12.0'
173+
implementation "androidx.work:work-runtime:2.9.0"
174+
implementation 'androidx.preference:preference:1.2.1'
175175
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
176176
implementation 'androidx.appcompat:appcompat:1.6.1'
177177
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
178-
implementation 'androidx.recyclerview:recyclerview:1.3.0'
178+
implementation 'androidx.recyclerview:recyclerview:1.3.2'
179179
implementation 'androidx.cardview:cardview:1.0.0'
180180
implementation 'androidx.biometric:biometric:1.1.0'
181-
implementation 'com.google.android.material:material:1.9.0'
181+
implementation 'com.google.android.material:material:1.11.0'
182182
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
183-
implementation 'androidx.annotation:annotation:1.6.0'
184-
implementation "androidx.car.app:app:1.4.0-alpha01"
183+
implementation 'androidx.annotation:annotation:1.7.1'
184+
implementation "androidx.car.app:app:1.4.0-rc02"
185185
implementation 'org.reactivestreams:reactive-streams:1.0.3'
186186
implementation 'io.reactivex.rxjava2:rxjava:2.2.10'
187187
implementation 'com.revenuecat.purchases:purchases:7.0.1'
188188

189189
implementation 'com.google.firebase:firebase-core:21.1.1'
190190
implementation 'com.google.firebase:firebase-iid:21.1.0'
191-
implementation 'com.google.firebase:firebase-analytics:21.3.0'
192-
implementation 'com.google.firebase:firebase-crashlytics:18.4.3'
193-
implementation "com.google.firebase:firebase-messaging:23.2.1"
194-
implementation "com.google.firebase:firebase-ads:22.4.0"
191+
implementation 'com.google.firebase:firebase-analytics:21.6.1'
192+
implementation 'com.google.firebase:firebase-crashlytics:18.6.3'
193+
implementation "com.google.firebase:firebase-messaging:23.4.1"
194+
implementation "com.google.firebase:firebase-ads:23.0.0"
195195

196196
implementation 'com.google.android.ads.consent:consent-library:1.0.8'
197-
implementation "com.google.android.gms:play-services-analytics:18.0.3"
198-
implementation "com.google.android.gms:play-services-wearable:18.0.0"
199-
implementation "com.google.android.gms:play-services-maps:18.1.0"
197+
implementation "com.google.android.gms:play-services-analytics:18.0.4"
198+
implementation "com.google.android.gms:play-services-wearable:18.1.0"
199+
implementation "com.google.android.gms:play-services-maps:18.2.0"
200200
implementation "com.google.android.gms:play-services-gcm:17.0.0"
201-
implementation "com.google.android.gms:play-services-location:21.0.1"
201+
implementation "com.google.android.gms:play-services-location:21.2.0"
202202
implementation "com.google.android.gms:play-services-places:17.0.0"
203-
implementation "com.google.android.gms:play-services-ads:22.1.0"
203+
implementation "com.google.android.gms:play-services-ads:23.0.0"
204204
implementation 'com.google.android.ads.consent:consent-library:1.0.8'
205205
implementation "com.github.nisrulz:recyclerviewhelper:27.1.1"
206206
implementation "org.altbeacon:android-beacon-library:2.19"

app/src/main/java/nl/hnogames/domoticz/adapters/CamerasAdapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
import com.google.android.gms.ads.LoadAdError;
4242
import com.google.android.gms.ads.MobileAds;
4343
import com.google.android.gms.ads.RequestConfiguration;
44-
import com.google.android.gms.ads.formats.NativeAdOptions;
44+
import com.google.android.gms.ads.nativead.NativeAdOptions;
4545
import com.squareup.picasso.Callback;
4646
import com.squareup.picasso.MemoryPolicy;
4747
import com.squareup.picasso.NetworkPolicy;

app/src/main/java/nl/hnogames/domoticz/adapters/DashboardAdapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
import com.google.android.gms.ads.LoadAdError;
5252
import com.google.android.gms.ads.MobileAds;
5353
import com.google.android.gms.ads.RequestConfiguration;
54-
import com.google.android.gms.ads.formats.NativeAdOptions;
54+
import com.google.android.gms.ads.nativead.NativeAdOptions;
5555
import com.google.android.material.chip.Chip;
5656
import com.google.android.material.slider.Slider;
5757
import com.google.android.material.switchmaterial.SwitchMaterial;

app/src/main/java/nl/hnogames/domoticz/adapters/PlansAdapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
import com.google.android.gms.ads.LoadAdError;
3939
import com.google.android.gms.ads.MobileAds;
4040
import com.google.android.gms.ads.RequestConfiguration;
41-
import com.google.android.gms.ads.formats.NativeAdOptions;
41+
import com.google.android.gms.ads.nativead.NativeAdOptions;
4242

4343
import java.util.ArrayList;
4444
import java.util.Collections;

app/src/main/java/nl/hnogames/domoticz/adapters/SceneAdapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
import com.google.android.gms.ads.LoadAdError;
4242
import com.google.android.gms.ads.MobileAds;
4343
import com.google.android.gms.ads.RequestConfiguration;
44-
import com.google.android.gms.ads.formats.NativeAdOptions;
44+
import com.google.android.gms.ads.nativead.NativeAdOptions;
4545
import com.google.android.material.chip.Chip;
4646
import com.like.LikeButton;
4747
import com.like.OnLikeListener;

app/src/main/java/nl/hnogames/domoticz/adapters/SwitchesAdapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
import com.google.android.gms.ads.LoadAdError;
5050
import com.google.android.gms.ads.MobileAds;
5151
import com.google.android.gms.ads.RequestConfiguration;
52-
import com.google.android.gms.ads.formats.NativeAdOptions;
52+
import com.google.android.gms.ads.nativead.NativeAdOptions;
5353
import com.google.android.material.chip.Chip;
5454
import com.google.android.material.slider.Slider;
5555
import com.google.android.material.switchmaterial.SwitchMaterial;

app/src/main/java/nl/hnogames/domoticz/adapters/TemperatureAdapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
import com.google.android.gms.ads.LoadAdError;
4646
import com.google.android.gms.ads.MobileAds;
4747
import com.google.android.gms.ads.RequestConfiguration;
48-
import com.google.android.gms.ads.formats.NativeAdOptions;
48+
import com.google.android.gms.ads.nativead.NativeAdOptions;
4949
import com.google.android.material.chip.Chip;
5050
import com.like.LikeButton;
5151
import com.like.OnLikeListener;

app/src/main/java/nl/hnogames/domoticz/adapters/UtilityAdapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
import com.google.android.gms.ads.LoadAdError;
4444
import com.google.android.gms.ads.MobileAds;
4545
import com.google.android.gms.ads.RequestConfiguration;
46-
import com.google.android.gms.ads.formats.NativeAdOptions;
46+
import com.google.android.gms.ads.nativead.NativeAdOptions;
4747
import com.google.android.material.chip.Chip;
4848
import com.like.LikeButton;
4949
import com.like.OnLikeListener;

app/src/main/java/nl/hnogames/domoticz/adapters/WeatherAdapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
import com.google.android.gms.ads.LoadAdError;
4545
import com.google.android.gms.ads.MobileAds;
4646
import com.google.android.gms.ads.RequestConfiguration;
47-
import com.google.android.gms.ads.formats.NativeAdOptions;
47+
import com.google.android.gms.ads.nativead.NativeAdOptions;
4848
import com.google.android.material.chip.Chip;
4949
import com.like.LikeButton;
5050
import com.like.OnLikeListener;

app/version.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Mon Apr 01 20:03:45 CEST 2024
2-
VERSION_BUILD=9455
1+
#Mon Apr 01 20:34:18 CEST 2024
2+
VERSION_BUILD=9469
33
VERSION_CODE=687
44
VERSION_PATCH=370

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ buildscript {
1313

1414
//noinspection GroovyAssignabilityCheck
1515
dependencies {
16-
classpath 'com.android.tools.build:gradle:8.0.2'
17-
classpath 'com.google.gms:google-services:4.3.13'
18-
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.1'
16+
classpath 'com.android.tools.build:gradle:8.1.4'
17+
classpath 'com.google.gms:google-services:4.4.1'
18+
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
1919
}
2020
}
2121

domoticzapi/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
apply plugin: 'com.android.library'
2323

2424
android {
25-
compileSdkVersion 33
25+
compileSdk 34
2626

2727
def versionPropsFile = file('version.properties')
2828

@@ -54,7 +54,7 @@ android {
5454
versionCode version_Code
5555
versionName "${versionMajor}.${versionMinor}.${versionPatch}"
5656
minSdkVersion 23
57-
targetSdkVersion 33
57+
targetSdkVersion 34
5858
}
5959
}
6060

domoticzapi/version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Mon Apr 01 20:03:46 CEST 2024
1+
#Mon Apr 01 20:34:18 CEST 2024
22
VERSION_BUILD=3675
33
VERSION_CODE=254
44
VERSION_PATCH=254

libs/MemorizingTrustManager/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ dependencies {
1919

2020
android {
2121
namespace 'de.duenndns.ssl'
22-
compileSdkVersion 31
22+
compileSdk 34
2323
//noinspection GroovyAssignabilityCheck
2424
defaultConfig {
2525
minSdkVersion 23
26-
targetSdkVersion 31
26+
targetSdkVersion 34
2727
}
2828

2929
//noinspection GroovyAssignabilityCheck

libs/SeekArc_library/build.gradle

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ apply plugin: 'com.android.library'
22

33
android {
44
namespace 'com.triggertrap.seekarc'
5-
compileSdkVersion 31
6-
buildToolsVersion "31.0.0"
5+
compileSdk 34
76

87
defaultConfig {
98
minSdkVersion 19
10-
targetSdkVersion 31
9+
targetSdkVersion 34
1110
versionCode 3
1211
versionName "1.1.7"
1312
vectorDrawables.useSupportLibrary = true

materialList/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 31
4+
compileSdk 34
55

66
defaultConfig {
77
minSdkVersion 19
8-
targetSdkVersion 31
8+
targetSdkVersion 34
99
}
1010
buildTypes {
1111
release {

wear/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
apply plugin: 'com.android.application'
2323

2424
android {
25-
compileSdkVersion 33
25+
compileSdk 34
2626
publishNonDefault true
2727

2828
defaultConfig {

0 commit comments

Comments
 (0)