-
Notifications
You must be signed in to change notification settings - Fork 430
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
Uncompatible with flutter & dart sdk #312
Comments
Hi @wasim353 I facing the same issue |
i have replace the image gallery saver package with gallery saver package.
it's working
…On Fri, 23 Aug 2024 at 17:55, Muhammad Usama Kabir ***@***.***> wrote:
Hi @wasim353 <https://github.com/wasim353> I facing the same issue
did you find any solution?
—
Reply to this email directly, view it on GitHub
<#312 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BKLKQ6QU7QTULNRQIIA4VJLZS4WNVAVCNFSM6AAAAABM5JDIL6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGMBXGAZTQMJSGY>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Oh... this library was introduced as a transitive dependency... |
same issue |
i think this repo is dead there are no updates from past 1 year |
what solved this for me, adding some scripts to the subprojects section in
android/build.gradle:
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = "../build"
subprojects {
// fix for verifyReleaseResources
// ============
afterEvaluate { project ->
if (project.plugins.hasPlugin("com.android.application") ||
project.plugins.hasPlugin("com.android.library")) {
project.android {
compileSdkVersion 34
buildToolsVersion "34.0.0"
}
}
if (project.hasProperty("android")) {
project.android {
if (namespace == null) {
namespace project.group
}
}
}
}
// ============
project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(":app")
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}
…On Tue, 27 Aug 2024 at 10:43, Kaizodo Technologies Pvt Ltd < ***@***.***> wrote:
same issue
—
Reply to this email directly, view it on GitHub
<#312 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BKLKQ6SAB3U7PPFLSAQVX5TZTQGZZAVCNFSM6AAAAABM5JDIL6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGMJRGYYTONZWG4>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
This works like a charm. |
Try this #295 |
when use this package not create build show error mention below
The text was updated successfully, but these errors were encountered: