Debug School

rakesh kumar
rakesh kumar

Posted on

CI/CD pipeline error checklist

No such file or directory
lib/auth/loginscreen.dart:8:8: Error: Error when reading 'lib/Auth/google_auth_service.dart': No such file or directory
No need to solve Warning:
The plugin google_sign_in_android requires Android SDK version 35 or higher.
For more information about build configuration, see https://flutter.dev/to/review-gradle-config.
Your project is configured to compile against Android SDK 34, but the following plugin(s) require to be compiled against a higher Android SDK version:

  • google_sign_in_android compiles against Android SDK 35
    Fix this issue by compiling against the highest Android SDK version (they are backward compatible).
    Add the following to /home/runner/work/motoshare_app_renter/motoshare_app_renter/android/app/build.gradle:

    android {
    compileSdk = 35
    ...
    No such file or directory
    lib/main.dart:18:8: Error: Error when reading 'lib/Screen/Partner/ChallanReport.dart': No such file or directory
    import 'package:motoshare_partner/Screen/Partner/ChallanReport.dart';

Top comments (0)