Skip to content

Commit 144ffc4

Browse files
committed
Merge branch 'main' into gradle-versions-check
2 parents 4ab3034 + 740378e commit 144ffc4

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

app/build.gradle

+7-7
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,24 @@ android {
2323
}
2424
}
2525
}
26-
namespace 'au.id.colby.nfcquicksettings'
27-
compileSdk 35
26+
namespace = 'au.id.colby.nfcquicksettings'
27+
compileSdk = 35
2828

2929
defaultConfig {
3030
applicationId "au.id.colby.nfcquicksettings"
31-
minSdk 24
32-
targetSdk 35
33-
versionCode 15
31+
minSdk = 24
32+
targetSdk = 35
33+
versionCode = 15
3434
versionName "1.4.5-pre"
3535
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
3636
}
3737

3838
buildTypes {
3939
release {
4040
minifyEnabled true
41-
ndk { debugSymbolLevel 'FULL' }
41+
ndk { debugSymbolLevel = 'FULL' }
4242
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
43-
shrinkResources true
43+
shrinkResources = true
4444
if (signingConfigs.hasProperty("release")) signingConfig = signingConfigs.release
4545
}
4646
}

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id 'com.android.application' version '8.7.3' apply false
4-
id 'com.android.library' version '8.7.3' apply false
3+
id 'com.android.application' version '8.8.0' apply false
4+
id 'com.android.library' version '8.8.0' apply false
55
id 'com.github.ben-manes.versions' version '0.51.0'
66
id 'org.jetbrains.dokka' version '2.0.0' apply false
77
id 'org.jetbrains.kotlin.android' version '2.1.0' apply false

gradle/wrapper/gradle-wrapper.properties

+1-1
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.10-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)