Skip to content

Commit

Permalink
fix: Rename app icon assets to ic_launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwinkey04 committed Feb 3, 2022
1 parent 43864d1 commit c941203
Show file tree
Hide file tree
Showing 8 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ android.applicationVariants.all { variant ->
output.versionCodeOverride =
baseAbiVersionCode * 1000 + variant.versionCode

if (baseAbiVersionCode == 1) {
if (baseAbiVersionCode == 1) { // Matches armeabi-v7a in ext.abiCodes
// Sets the default versionCode for armeabi-v7a APKs.
output.versionCodeOverride = variant.versionCode
}
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
android:requestLegacyExternalStorage="true"
android:label="raag"
android:usesCleartextTraffic="true"
android:icon="@mipmap/launcher_icon"
android:icon="@mipmap/ic_launcher"
android:extractNativeLibs="true"
>
<activity
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dev_dependencies:
sdk: flutter

flutter_icons:
android: "launcher_icon"
android: "ic_launcher"
ios: false
image_path: "assets/images/logo_dark.png"

Expand Down

0 comments on commit c941203

Please sign in to comment.