Skip to content

Commit 97cb8b1

Browse files
committed
updating gradle version
1 parent f861116 commit 97cb8b1

File tree

8 files changed

+24
-8
lines changed

8 files changed

+24
-8
lines changed

app/build.gradle

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

33
android {
4+
namespace 'nl.hnogames.domoticz'
45
compileSdkVersion 33
56

67
def versionPropsFile = file('version.properties')
@@ -144,7 +145,7 @@ android {
144145
}
145146
}
146147

147-
namespace 'nl.hnogames.domoticz'
148+
148149
}
149150

150151
repositories {

app/version.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Tue May 02 16:54:24 CEST 2023
2-
VERSION_BUILD=9328
1+
#Sun Jun 25 21:27:40 CEST 2023
2+
VERSION_BUILD=9345
33
VERSION_CODE=669
44
VERSION_PATCH=358

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313

1414
//noinspection GroovyAssignabilityCheck
1515
dependencies {
16-
classpath 'com.android.tools.build:gradle:7.4.1'
16+
classpath 'com.android.tools.build:gradle:8.0.2'
1717
classpath 'com.google.gms:google-services:4.3.13'
1818
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.1'
1919
}

domoticzapi/version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Tue May 02 16:54:24 CEST 2023
1+
#Sun Jun 25 21:27:40 CEST 2023
22
VERSION_BUILD=3675
33
VERSION_CODE=254
44
VERSION_PATCH=254

gradle.properties

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,7 @@ manifestmerger.enabled=true
1717
org.gradle.daemon=true
1818
org.gradle.parallel=true
1919
org.gradle.configureondemand=true
20-
org.gradle.jvmargs=-Xmx3072m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
20+
org.gradle.jvmargs=-Xmx3072m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
21+
android.defaults.buildfeatures.buildconfig=true
22+
android.nonTransitiveRClass=false
23+
android.nonFinalResIds=false
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Wed Apr 20 20:03:19 CEST 2022
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

libs/MemorizingTrustManager/build.gradle

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
//noinspection GroovyAssignabilityCheck
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:7.4.1'
9+
classpath 'com.android.tools.build:gradle:8.0.2'
1010
}
1111
}
1212

@@ -18,6 +18,7 @@ dependencies {
1818
}
1919

2020
android {
21+
namespace 'de.duenndns.ssl'
2122
compileSdkVersion 31
2223
//noinspection GroovyAssignabilityCheck
2324
defaultConfig {
@@ -38,4 +39,8 @@ android {
3839
assets.srcDirs = ['assets']
3940
}
4041
}
42+
buildFeatures {
43+
renderScript true
44+
aidl true
45+
}
4146
}

libs/SeekArc_library/build.gradle

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

33
android {
4+
namespace 'com.triggertrap.seekarc'
45
compileSdkVersion 31
56
buildToolsVersion "31.0.0"
67

@@ -11,6 +12,7 @@ android {
1112
versionName "1.1.7"
1213
vectorDrawables.useSupportLibrary = true
1314
}
15+
1416
buildTypes {
1517
release {
1618
minifyEnabled false
@@ -30,6 +32,11 @@ android {
3032
}
3133
androidTest.setRoot('tests')
3234
}
35+
36+
buildFeatures {
37+
renderScript true
38+
aidl true
39+
}
3340
}
3441

3542
dependencies {

0 commit comments

Comments
 (0)