Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[question]: iam Using onesignal_flutter: ^5.2.1 but when i build the Project Showing Execution failed for task ':onesignal_flutter:verifyReleaseResources'. > A failure occurred while executing com.android.build.gradle.tasks.VerifyLibraryResourcesTask$Action #936

Closed
1 task done
devNasih opened this issue Aug 20, 2024 · 4 comments

Comments

@devNasih
Copy link

devNasih commented Aug 20, 2024

How can we help?

AAPT: error: resource android:attr/lStar not found.

Code of Conduct

  • I agree to follow this project's Code of Conduct
@jennantilla
Copy link
Contributor

Hi @devNasih thanks for reaching out! We have a discussion going on here and a PR that will be merged into our next Flutter release. I'm going to close this issue out for consolidation but please follow #930 for updates. Thanks!

@Ashwin1002
Copy link

Add this line in your android level build.gradle file

subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"

    // add this line for onesignal_flutter to work in android device
    afterEvaluate {
        android {
            compileSdkVersion 34
        }
    }
}

@apoorvpandey0
Copy link

Add this line in your android level build.gradle file

subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"

    // add this line for onesignal_flutter to work in android device
    afterEvaluate {
        android {
            compileSdkVersion 34
        }
    }
}

This worked thanks!

@chethan2125
Copy link

thank you it works

subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"

// add this line for onesignal_flutter to work in android device
afterEvaluate {
    android {
        compileSdkVersion 34
    }
}

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants