the issue below happen only when i am trying to build APK
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':realm:verifyReleaseResources'.
A failure occurred while executing com.android.build.gradle.tasks.VerifyLibraryResourcesTask$Action
Android resource linking failed
ERROR: C:UsersUSERAndroidStudioProjectsjamiabuildrealmintermediatesmerged_resreleasemergeReleaseResourcesvaluesvalues.xml:194: AAPT: error: resource android:attr/lStar not found.
<attr format="float" name="lStar"/>
<attr name="android:lStar"/> <<<<< THIS IS THE POINT
[√] Flutter (Channel stable, 3.24.0, on Microsoft Windows [Version 10.0.19045.4717], locale en-US)
• Flutter version 3.24.0 on channel stable at C:flutterflutter
• Upstream repository https://github.com/flutter/flutter.git
• Framework revision 80c2e84975 (11 days ago), 2024-07-30 23:06:49 +0700
• Engine revision b8800d88be
• Dart version 3.5.0
• DevTools version 2.37.2
[√] Windows Version (Installed version of Windows is version 10 or higher)
[√] Android toolchain - develop for Android devices (Android SDK version 34.0.0)
• Android SDK at C:UsersAhmadAppDataLocalAndroidSdk
• Platform android-34, build-tools 34.0.0
• ANDROID_HOME = C:UsersAhmadAppDataLocalAndroidSdk
• ANDROID_SDK_ROOT = C:UsersAhmadAppDataLocalAndroidSdkcmdline-toolslatestbin
• Java binary at: C:Program FilesAndroidAndroid Studiojbrbinjava
• Java version OpenJDK Runtime Environment (build 17.0.6+0-b2043.56-10027231)
• All Android licenses accepted.
[√] Chrome - develop for the web
• Chrome at C:Program FilesGoogleChromeApplicationchrome.exe
[√] Visual Studio - develop Windows apps (Visual Studio Community 2022 17.3.4)
• Visual Studio at C:Program FilesMicrosoft Visual Studio2022Community
• Visual Studio Community 2022 version 17.3.32901.215
• Windows 10 SDK version 10.0.19041.0
[√] Android Studio (version 2022.3)
• Android Studio at C:Program FilesAndroidAndroid Studio
• Flutter plugin can be installed from:
https://plugins.jetbrains.com/plugin/9212-flutter
• Dart plugin can be installed from:
https://plugins.jetbrains.com/plugin/6351-dart
• android-studio-dir = C:Program FilesAndroidAndroid Studio
• Java version OpenJDK Runtime Environment (build 17.0.6+0-b2043.56-10027231)
[√] VS Code (version 1.92.1)
• VS Code at C:UsersAhmadAppDataLocalProgramsMicrosoft VS Code
• Flutter extension version 3.94.0
[√] Connected device (4 available)
• TECNO BF7n (mobile) • 096473733S004784 • android-arm64 • Android 12 (API 31)
• Windows (desktop) • windows • windows-x64 • Microsoft Windows [Version 10.0.19045.4717]
• Chrome (web) • chrome • web-javascript • Google Chrome 118.0.5993.89
• Edge (web) • edge • web-javascript • Microsoft Edge 120.0.2210.91
[√] Network resources
• All expected network resources are available.
• No issues found!
setting.gradle
pluginManagement { def flutterSdkPath = { def properties = new
Properties() file(“local.properties”).withInputStream {
properties.load(it) } def flutterSdkPath =
properties.getProperty(“flutter.sdk”) assert flutterSdkPath != null,
“flutter.sdk not set in local.properties” return flutterSdkPath }()includeBuild(“$flutterSdkPath/packages/flutter_tools/gradle”)
repositories {
google()
mavenCentral()
gradlePluginPortal() } }plugins { id “dev.flutter.flutter-plugin-loader” version “1.0.0” id
“com.android.application” version ‘8.3.2’ apply false id
“org.jetbrains.kotlin.android” version “1.9.23” apply false }include “:app”
gradle-wraooer.properties
distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists
distributionUrl=https://services.gradle.org/distributions/gradle-8.7-all.zipapp/build.gradle
lugins { id “com.android.application” id “kotlin-android” // The
Flutter Gradle Plugin must be applied after the Android and Kotlin
Gradle plugins. id “dev.flutter.flutter-gradle-plugin” }def localProperties = new Properties() def localPropertiesFile =
rootProject.file(“local.properties”) if (localPropertiesFile.exists())
{ localPropertiesFile.withReader(“UTF-8”) { reader ->
localProperties.load(reader) } }def flutterVersionCode =
localProperties.getProperty(“flutter.versionCode”) if
(flutterVersionCode == null) { flutterVersionCode = “1” }def flutterVersionName =
localProperties.getProperty(“flutter.versionName”) if
(flutterVersionName == null) { flutterVersionName = “1.0” }android { namespace = “com.example.jamia” compileSdk = 34 ndkVersion =
“25.1.8937393”compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8 }defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = “com.example.jamia”
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdk = 23
targetSdk = 34
versionCode = flutterVersionCode.toInteger()
versionName = flutterVersionName
multiDexEnabled true}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, soflutter run --release
works.
signingConfig = signingConfigs.debug
} } }flutter { source = “../..” }
i deleted the .gradle but did not fix the issue, need help plz?