From 1fae41a3a06c83a0576d3619e36c15db4c031147 Mon Sep 17 00:00:00 2001 From: sunilpaulmathew Date: Thu, 7 Dec 2023 13:38:30 +0100 Subject: [PATCH] Updated build tools Signed-off-by: sunilpaulmathew --- app/build.gradle | 13 ++++++++----- build.gradle | 2 +- gradle.properties | 2 ++ gradle/wrapper/gradle-wrapper.properties | 2 +- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 0166f23..32d64cf 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -2,13 +2,12 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 33 - buildToolsVersion '33.0.0' + compileSdk 34 namespace 'com.apk.editor' defaultConfig { minSdkVersion 23 - targetSdkVersion 33 + targetSdk 34 versionCode 28 versionName "v0.28" vectorDrawables.useSupportLibrary = true @@ -26,7 +25,11 @@ android { } } - flavorDimensions "release" + buildFeatures { + buildConfig = true + } + + flavorDimensions.add("release") productFlavors { play { applicationId "com.apk.explorer" @@ -59,7 +62,7 @@ dependencies { implementation "com.github.sunilpaulmathew.sCommon:themeutils:${sCommon_Version}" implementation "com.github.sunilpaulmathew.sCommon:translatorutils:${sCommon_Version}" - implementation 'com.google.android.material:material:1.9.0' + implementation 'com.google.android.material:material:1.10.0' implementation 'net.lingala.zip4j:zip4j:2.11.5' implementation 'org.smali:baksmali:2.5.2' implementation 'org.smali:smali:2.5.2' diff --git a/build.gradle b/build.gradle index 18f9b67..ebea1eb 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:7.4.2' + classpath 'com.android.tools.build:gradle:8.2.0' } } diff --git a/gradle.properties b/gradle.properties index 2d8d1e4..69951f8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1,3 @@ +android.nonFinalResIds=false +android.nonTransitiveRClass=false android.useAndroidX=true \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 25152cb..1bf7026 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ #Sun Nov 12 18:18:44 CET 2023 distributionBase=GRADLE_USER_HOME -distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip distributionPath=wrapper/dists zipStorePath=wrapper/dists zipStoreBase=GRADLE_USER_HOME