Need help gradle

  • Error running Gradle:
    ProcessException: Process “D:\ANDRSTD\AndroidStudioProjects\flepper\android\gradlew.bat” exited abnormally:

FAILURE: Build failed with an exception.

  • Where:
    Build file ‘D:\ANDRSTD\AndroidStudioProjects\flepper\android\app\build.gradle’ line: 24

  • What went wrong:
    A problem occurred evaluating project ‘:app’.

ASCII

  • Try:
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

  • Get more help at https://help.gradle.org

BUILD FAILED in 3s
Picked up _JAVA_OPTIONS: -Xmx512M
Command: D:\ANDRSTD\AndroidStudioProjects\flepper\android\gradlew.bat app:properties

Finished with error: Please review your Gradle project setup in the android/ folder.

Could you please share the relevant part of app\build.gradle?

def localProperties = new Properties()
def localPropertiesFile = rootProject.file(‘local.properties’)
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader(‘UTF-8’) { reader ->
localProperties.load(reader)
}
}

def flutterRoot = localProperties.getProperty(‘flutter.sdk’)
if (flutterRoot == null) {
throw new GradleException(“Flutter SDK not found. Define location with flutter.sdk in the local.properties file.”)
}

def flutterVersionCode = localProperties.getProperty(‘flutter.versionCode’)
if (flutterVersionCode == null) {
flutterVersionCode = ‘1’
}

def flutterVersionName = localProperties.getProperty(‘flutter.versionName’)
if (flutterVersionName == null) {
flutterVersionName = ‘1.0’
}

apply plugin: ‘com.android.application’
apply from: “$flutterRoot/packages/flutter_tools/gradle/flutter.gradle”

android {
compileSdkVersion 28

lintOptions {
    disable 'InvalidPackage'
}

defaultConfig {
    // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
    applicationId "usuariu.flepper"
    minSdkVersion 16
    targetSdkVersion 28
    versionCode flutterVersionCode.toInteger()
    versionName flutterVersionName
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

buildTypes {
    release {
        // TODO: Add your own signing config for the release build.
        // Signing with the debug keys for now, so `flutter run --release` works.
        signingConfig signingConfigs.debug
    }
}

}

flutter {
source ‘…/…’
}

dependencies {
testImplementation ‘junit:junit:4.12’
androidTestImplementation ‘com.android.support.test:runner:1.0.2’
androidTestImplementation ‘com.android.support.test.espresso:espresso-core:3.0.2’
implementation ‘com.google.firebase:firebase-analytics:17.2.0’
}

apply plugin: ‘com.google.gms.google-services’

Here you are Sir.
Can you help please!

Could you please format that properly, let me know which line is line 24 and run the build with --stacktrace. If possible, a build scan would also be helpful.

this is line 24 ( apply plugin: ‘com.android.application’ ),
but, what is stacktrace !!