londonappbrewery / Clima-Flutter-Completed

The completed code for the Clima Project - The Complete Flutter Development Bootcamp

Home Page:https://www.appbrewery.co/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Recompile with -Xlint

meshubhama01 opened this issue · comments

just clone this repo and run on android studio and run into following error.

Note: C:\src\flutter\flutter.pub-cache\hosted\pub.dartlang.org\permission_handler-3.3.0\android\src\main\java\com\baseflow\permissionhandler\PermissionHandlerPlugin.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.

and followed by built with 401 response code .

even after changing the api key my new key still got the following error

The following _TypeError was thrown building Builder:
type 'int' is not a subtype of type 'double'

The relevant error-causing widget was:
MaterialApp file:///C:/Users/SHUBHAM/AndroidStudioProjects/Clima-Flutter-Completed/lib/main.dart:9:12

even after changing the api key my new key still got the following error

The following _TypeError was thrown building Builder:
type 'int' is not a subtype of type 'double'

The relevant error-causing widget was:
MaterialApp file:///C:/Users/SHUBHAM/AndroidStudioProjects/Clima-Flutter-Completed/lib/main.dart:9:12

pls try if following solves your error:
setState(() {
double temp = (weatherData['main']['temp']).toDouble();
this.temperature = temp.toInt();

if this does not solve, pls share the code which is throwing this error.