Skip to content

Commit

Permalink
Merge pull request #422 from doubleangels/dev
Browse files Browse the repository at this point in the history
Fix gradle problems to enable support for gradle 9
  • Loading branch information
doubleangels authored Feb 18, 2025
2 parents 0cb9a0a + ae6db12 commit 215462d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ plugins {
}

android {
compileSdk 35
compileSdk = 35
defaultConfig {
applicationId "com.doubleangels.nextdnsmanagement"
minSdkVersion 32
targetSdk 35
targetSdk = 35
versionCode 249
versionName "5.5.0"
resourceConfigurations += ["en", "zh", "nl", "fi", "fr", "de", "in", "it", "ja", "pl", "pt", "es", "sv", "tr"]
Expand All @@ -31,19 +31,19 @@ android {
buildTypes {
release {
minifyEnabled true
shrinkResources true
shrinkResources = true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
debuggable false
}
}
namespace 'com.doubleangels.nextdnsmanagement'
namespace = 'com.doubleangels.nextdnsmanagement'
compileOptions {
sourceCompatibility JavaVersion.VERSION_21
targetCompatibility JavaVersion.VERSION_21
}
dependenciesInfo {
includeInApk true
includeInBundle true
includeInApk = true
includeInBundle = true
}

packagingOptions {
Expand All @@ -59,7 +59,7 @@ android {
}

buildFeatures {
buildConfig true
buildConfig = true
}
}

Expand Down

0 comments on commit 215462d

Please sign in to comment.