File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 55## [ 0.0.2] - 05/01/2020
66
77* Fix pub.dev warnings
8+
9+ ## [ 0.0.3] - 05/01/2020
10+
11+ * Fix issue on app names with specific characters
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ packages:
8282 path: ".."
8383 relative: true
8484 source: path
85- version: "0.0.1 "
85+ version: "0.0.3 "
8686 flutter_test:
8787 dependency: "direct dev"
8888 description: flutter
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ Future<String> _loadAndroidAppName() async {
107107 try {
108108 return searchInFile (
109109 filePath: "android/app/src/main/AndroidManifest.xml" ,
110- pattern: 'android:label="([A-Za-z0-9 .]*)" ' ,
110+ pattern: 'android:label="([A-Za-z0-9 _ \' .]*)' ,
111111 );
112112 } catch (error) {
113113 print ("Error reading Manifest : $error " );
Original file line number Diff line number Diff line change 11name : flutter_rename_app
22description : A package that enable to rename an entire app and ids in one command.
3- version : 0.0.2
3+ version : 0.0.3
44homepage : https://github.com/ThomasEcalle/flutter_rename_app
55
66environment :
You can’t perform that action at this time.
0 commit comments