목록안드로이드/플러터 (2)
500error
import 'package:flutter/material.dart';void main() { runApp(MyApp());}class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: ToDoList(), ); }}class ToDoList extends StatefulWidget { const ToDoList({super.key}); @override State createState() => _ToDoListStat..
디버깅 해봤더니FAILURE: Build failed with an exception.* What went wrong:Execution failed for task ':flutter_sms:compileReleaseKotlin'.> 'compileReleaseJavaWithJavac' task (current target is 1.8) and 'compileReleaseKotlin' task (current target is 17) jvm target compatibility should be set to the same Java version. Consider using JVM toolchain: https://kotl.in/gradle/jvm/toolchain* Try:> Run with --sta..