Vihanga Randunu
Vihanga Randunu

Reputation: 421

Warning when flutter build apk command entered

When I run Flutter build apk command the terminal gives me a warning. But apk file generated successfully. Do you have any idea to how to solve this warning? Here is my terminal output:

 Building with sound null safety
    
    Warning: Mapping new ns http://schemas.android.com/repository/android/common/02 to old ns http://schemas.android.com/repository/android/common/01Warning: Mapping new ns http://schemas.android.com/repository/android/generic/02 to old ns http://schemas.android.com/repository/android/generic/01
    Warning: Mapping new ns http://schemas.android.com/sdk/android/repo/addon2/02 to old ns http://schemas.android.com/sdk/android/repo/addon2/01    
    Warning: Mapping new ns http://schemas.android.com/sdk/android/repo/repository2/02 to old ns http://schemas.android.com/sdk/android/repo/repository2/01
    Warning: Mapping new ns http://schemas.android.com/sdk/android/repo/sys-img2/02 to old ns http://schemas.android.com/sdk/android/repo/sys-img2/01Running Gradle task 'assembleRelease'...                          103.1s
    √  Built build\app\outputs\flutter-apk\app-release.apk (16.3MB).

Upvotes: 0

Views: 436

Answers (1)

Gupta Akshay
Gupta Akshay

Reputation: 72

Just update the Android Gradle Plugin version from 4.1.0 to 7.0.2 using new android enter image description here

Upvotes: 1

Related Questions