一尘不染

Unsuported Android Plugin version: 3.5.3. After upgrading flutter1.12.13+hotfix.5

flutter

我已经将Flutter升级到1.12.13 + hotfix.5,之后我得到了错误Unsuported Android Plugin version:3.5.3

当我将gradle构建降级到3.5.2、3.5.1、3.5.0+时,它显示以下错误:

Finished with error: Gradle build failed to produce an .apk file. It’s
likely that this file was generated under
C:\Users\TiwariA\Documents\X-Project\build, but the tool couldn’t find it.

Below is the screenshot of flutter doctor result:

Getting below warnings in Console

Note:
C:\Users\TiwariA\AppData\Roaming\Pub\Cache\hosted\pub.dartlang.org\package_info-0.4.0+13\android\src\main\java\io\flutter\plugins\packageinfo\PackageInfoPlugin.java
uses or overrides a deprecated API.

Note: Recompile with -Xlint:deprecation for details.

Note:
C:\Users\TiwariA\AppData\Roaming\Pub\Cache\hosted\pub.dartlang.org\device_info-0.4.1+4\android\src\main\java\io\flutter\plugins\deviceinfo\DeviceInfoPlugin.java
uses or overrides a deprecated API.

Note: Recompile with -Xlint:deprecation for details.

Note:
C:\Users\TiwariA\AppData\Roaming\Pub\Cache\hosted\pub.dartlang.org\firebase_core-0.4.3+1\android\src\main\java\io\flutter\plugins\firebase\core\FirebaseCorePlugin.java
uses or overrides a deprecated API.

Note: Recompile with -Xlint:deprecation for details.

Note: Some input files use or override a deprecated API.

Note: Recompile with -Xlint:deprecation for details.

Note:
C:\Users\TiwariA\AppData\Roaming\Pub\Cache\hosted\pub.dartlang.org\cloud_firestore-0.13.0+1\android\src\main\java\io\flutter\plugins\firebase\cloudfirestore\CloudFirestorePlugin.java
uses unchecked or unsafe operations.

Note: Recompile with -Xlint:unchecked for details.

Note:
C:\Users\TiwariA\AppData\Roaming\Pub\Cache\hosted\pub.dartlang.org\firebase_messaging-6.0.9\android\src\main\java\io\flutter\plugins\firebasemessaging\FirebaseMessagingPlugin.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.

Note: Some input files use or override 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.

Note:
C:\Users\TiwariA\AppData\Roaming\Pub\Cache\hosted\pub.dartlang.org\path_provider-1.5.1\android\src\main\java\io\flutter\plugins\pathprovider\PathProviderPlugin.java
uses or overrides a deprecated API.

Note: Recompile with -Xlint:deprecation for details.
C:\Users\TiwariA\AppData\Roaming\Pub\Cache\hosted\pub.dartlang.org\shared_preferences-0.5.6\android\src\main\java\io\flutter\plugins\sharedpreferences\SharedPreferencesPlugin.java:25:
warning: [deprecation] getFlutterEngine() in FlutterPluginBinding has been
deprecated setupChannel(binding.getFlutterEngine().getDartExecutor(),
binding.getApplicationContext()); ^ 1 warning Note: Some input files use or
override a deprecated API.

Note: Recompile with -Xlint:deprecation for details.

Note: Some input files use or override a deprecated API.

Note: Recompile with -Xlint:deprecation for details.

Finished with error: Unsuported Android Plugin version: 3.5.3.


阅读 428

收藏
2020-08-13

共1个答案

一尘不染

我遇到了同样的问题。

这很奇怪,但这是因为如果在我中定义productFlavorsapp/build.gradle而不是传递–flavorflutter run。(例如。flutter run –flavor myApp

添加后,它对我有用…

2020-08-13