سرمایه گذاری متفاوت در سال نو 🍎🌱 ۳۵٪ تخفیف نوروزی ➕ حضور رایگان در مسترمایند نخبگان صنعت نرم‌افزار 💻✅
۰ ثانیه
۰ دقیقه
۰ ساعت
۳ محمد علی
مشکل فایل زیپ پروژه
جامعه فلاتر ایجاد شده در ۰۸ دی ۱۴۰۳

فایل زیپ این پروژه قدیمی هست و با نسخه gradle که فلاتر من ازش استفاده می‌کنه همخونی نداره و موقع اجرا شدن روی شبیه ساز این خطا رو نشون  می دهد:Flutter assets will be downloaded from https://storage.flutter-io.cn. Make sure you trust this source!
Launching lib\main.dart on AOSP on IA Emulator in debug mode...
You are applying Flutter's app_plugin_loader Gradle plugin imperatively using the apply script method, which is deprecated and will be removed in a future release. Migrate to applying Gradle plugins with the declarative plugins block: https://flutter.dev/to/flutter-gradle-plugin-apply

You are applying Flutter's main Gradle plugin imperatively using the apply script method, which is deprecated and will be removed in a future release. Migrate to applying Gradle plugins with the declarative plugins block: https://flutter.dev/to/flutter-gradle-plugin-apply

FAILURE: Build failed with an exception.

* Where:
Script 'E:\mohammad ali image\NEW\flutter\packages\flutter_tools\gradle\src\main\kotlin\dependency_version_checker.gradle.kts' line: 375

* What went wrong:
Failed to apply plugin class 'Dependency_version_checker_gradle$FlutterDependencyCheckerPlugin'.
> Error: Your project's Android Gradle Plugin version (4.1.0) is lower than Flutter's minimum supported version of 7.0.0. Please upgrade your Android Gradle Plugin version.
 Alternatively, use the flag "--android-skip-build-dependency-validation" to bypass this check.

 Potential fix: Your project's AGP version is typically defined in the plugins block of the `settings.gradle` file (E:\mohammad ali image\NEW\flutter profssor\blogclub\android/settings.gradle), by a plugin with the id of com.android.application.
 If you don't see a plugins block, your project was likely created with an older template version. In this case it is most likely defined in the top-level build.gradle file (E:\mohammad ali image\NEW\flutter profssor\blogclub\android/build.gradle) by the following line in the dependencies block of the buildscript: "classpath 'com.android.tools.build:gradle:<version>'".

* 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 9s
Error: Gradle task assembleDebug failed with exit code 1

Exited (1).
 

باید Gradle و پلاگین اندروید رو آپدیت کنید. برید توی فایل android/build.gradle و نسخه‌ی این خط رو به‌روز کنید:

classpath 'com.android.tools.build:gradle:8.0.2'

بعد توی فایل gradle-wrapper.properties نسخه رو به این تغییر بدید:

distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip  

نسخه با پروژه‌های دیگه‌تون که اجرا میشم چک کنید و مطابق اون بذارید. نسخه فلاتر رو هم بررسی و مقایسه و بعد اپدیت کنید. و در نهایت:

flutter clean  
flutter pub get  
flutter run  
یلدا محصلی ۰۸ دی ۱۴۰۳، ۰۷:۰۵

این کار‌ها رو کردم این خطلا رو نشون می‌ده:FAILURE: Build failed with an exception.

* Where:
Script 'E:\mohammad ali image\NEW\flutter\packages\flutter_tools\gradle\src\main\groovy\flutter.groovy' line: 1349

* What went wrong:
A problem occurred evaluating root project 'android'.
> A problem occurred configuring project ':app'.
  > Could not create task ':app:copyFlutterAssetsDebug'.
     > Could not create task ':app:mergeDebugAssets'.
        > Cannot use @TaskAction annotation on method IncrementalTask.taskAction$gradle_core() because interface org.gradle.api.tasks.incremental.IncrementalTaskInputs is not a valid parameter to an action method.

* 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 1s
Running Gradle task 'assembleDebug'...                           1,895ms
Error: Gradle task assembleDebug failed with exit code 1

محمد علی ۰۸ دی ۱۴۰۳، ۰۷:۳۹

یه خطا ی دیگه هم میده :Flutter assets will be downloaded from https://storage.flutter-io.cn. Make sure you trust this source!
Launching lib\main.dart on AOSP on IA Emulator in debug mode...
You are applying Flutter's app_plugin_loader Gradle plugin imperatively using the apply script method, which is deprecated and will be removed in a future release. Migrate to applying Gradle plugins with the declarative plugins block: https://flutter.dev/to/flutter-gradle-plugin-apply

You are applying Flutter's main Gradle plugin imperatively using the apply script method, which is deprecated and will be removed in a future release. Migrate to applying Gradle plugins with the declarative plugins block: https://flutter.dev/to/flutter-gradle-plugin-apply

FAILURE: Build failed with an exception.

* Where:
Build file 'E:\mohammad ali image\NEW\flutter profssor\blogclub\android\build.gradle' line: 24

* What went wrong:
A problem occurred evaluating root project 'android'.
> A problem occurred configuring project ':app'.
  > Could not create an instance of type com.android.build.api.variant.impl.ApplicationVariantImpl.
     > Namespace not specified. Please specify a namespace in the module's build.gradle file like so:

       android {
           namespace 'com.example.namespace'
       }

       If the package attribute is specified in the source AndroidManifest.xml, it can be migrated automatically to the namespace value in the build.gradle file using the AGP Upgrade Assistant; please refer to https://developer.android.com/studio/build/agp-upgrade-assistant for more information.

* 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 1m 51s
Error: Gradle task assembleDebug failed with exit code 1

Exited (1).
 

محمد علی ۰۸ دی ۱۴۰۳، ۰۸:۰۵