Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33358c37 authored by Aayush Gupta's avatar Aayush Gupta Committed by Michael Bestas
Browse files

ExactCalculator: Bump to latest stable AGP, Gradle and dependencies



Change-Id: I504904003d7b8946ec604ed6480a1fe1cfeadb42
Signed-off-by: default avatarAayush Gupta <aayushgupta219@gmail.com>
parent 760b63bb
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -26,9 +26,10 @@ android_app {

    static_libs: [
        // DO NOT EDIT THIS SECTION MANUALLY
        "kotlin-stdlib",
        "androidx.gridlayout_gridlayout",
        "androidx.webkit_webkit",
        "ExactCalculator_com.google.android.material_material",
        "com.google.android.material_material",
        "ExactCalculator_com.hp_crcalc",
    ],
}
+6 −5
Original line number Diff line number Diff line
@@ -8,8 +8,8 @@ import org.lineageos.generatebp.GenerateBpPluginExtension
import org.lineageos.generatebp.models.Module

plugins {
    id("com.android.application") version "8.1.2"
    id("org.jetbrains.kotlin.android") version "1.7.10"
    id("com.android.application") version "8.7.1"
    id("org.jetbrains.kotlin.android") version "1.9.23"
}

apply {
@@ -18,7 +18,7 @@ apply {

buildscript {
    repositories {
        maven("https://raw.githubusercontent.com/lineage-next/gradle-generatebp/v1.4/.m2")
        maven("https://raw.githubusercontent.com/lineage-next/gradle-generatebp/v1.13/.m2")
    }

    dependencies {
@@ -75,8 +75,8 @@ android {

dependencies {
    implementation("androidx.gridlayout:gridlayout:1.0.0")
    implementation("androidx.webkit:webkit:1.7.0")
    implementation("com.google.android.material:material:1.9.0")
    implementation("androidx.webkit:webkit:1.7.0-alpha02")
    implementation("com.google.android.material:material:1.11.0")
    implementation("com.hp:crcalc:1.0")
}

@@ -86,6 +86,7 @@ configure<GenerateBpPluginExtension> {
        when {
            module.group.startsWith("androidx") -> true
            module.group.startsWith("org.jetbrains") -> true
            module.group == "com.google.android.material" -> true
            module.group == "com.google.errorprone" -> true
            module.group == "com.google.guava" -> true
            module.group == "junit" -> true
−19.7 KiB (42.6 KiB)

File changed.

No diff preview for this file type.

+3 −1
Original line number Diff line number Diff line
#Thu Oct 31 13:24:25 IST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionSha256Sum=31c55713e40233a8303827ceb42ca48a47267a0ad4bab9177123121e71524c26
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
+5 −2
Original line number Diff line number Diff line
@@ -15,6 +15,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#

##############################################################################
#
@@ -55,7 +57,7 @@
#       Darwin, MinGW, and NonStop.
#
#   (3) This script is generated from the Groovy template
#       https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
#       https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
#       within the Gradle project.
#
#       You can find Gradle at https://github.com/gradle/gradle/.
@@ -84,7 +86,8 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Loading