skip to Main Content

Android Studio error "requires libraries and applications that depend on it to compile against version 34 or later of the Android APIs."

2 issues were found when checking AAR metadata: Dependency 'androidx.core:core:1.12.0-alpha05' requires libraries and applications that depend on it to compile against version 34 or later of the Android APIs. :app is currently compiled against android-33. Also, the maximum recommended compile…

VIEW QUESTION

ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: Null check operator used on a null value

class SplashServices { UserPreferences userPreferences = UserPreferences(); void isLogin() { userPreferences.getUser().then((value) { if (value.token!.isNotEmpty && value.token.toString() != 'null') { Timer( const Duration(seconds: 5), () => Get.toNamed(RouteName.homeView)); } else { Timer( const Duration(seconds: 5), () => Get.toNamed(RouteName.loginView)); } }); } }…

VIEW QUESTION
Back To Top
Search