onatcipli / rename

The Rename CLI Tool is a utility designed to modify your Flutter project's AppName and BundleId across various platforms, such as iOS, Android, Macos, Linux, Windows and Web

Home Page:https://pub.dev/packages/rename

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Issues in android when using tools:replace="android:label"

subinsv opened this issue · comments

The package seems to replace the first occurance of android:label keyword.
It should match the tags and not the value.

original:

   <application
        tools:replace="android:label"
        android:label="App Name"
        ...

After rename:

  <application
        android:label="App Name"
        android:label="App Name"

thanks for reporting this I will try to include this one with the upcoming release ✌️

A similar issue. Maybe helpful to debug!

Screenshot from 2021-09-17 00-25-53

fixed with prerelease version please check

https://pub.dev/packages/rename/versions/2.0.0-dev.2

rename: ^2.0.0-dev.2