diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index d50dcb2..3f3b405 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,6 +1,6 @@ CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) CFBundleDisplayName - Pokedex + Pokeguess CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier @@ -13,7 +13,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleName - pokedex + Pokeguess CFBundlePackageType APPL CFBundleShortVersionString diff --git a/lib/main.dart b/lib/main.dart index 6446384..c507685 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -12,7 +12,7 @@ class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( - title: 'Mon super Pokédex', // Titre de l'application + title: 'Pokéguess', // Titre de l'application theme: ThemeData( colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), useMaterial3: true, diff --git a/pubspec.yaml b/pubspec.yaml index 05a5c1d..d5a7595 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ -name: pokedex -description: Exemple d'application Flutter pour le cours de développement mobile +name: pokeguess +description: Identify the Pokémon from its silhouette! publish_to: 'none' # Remove this line if you wish to publish to pub.dev version: 1.0.0+1 diff --git a/web/manifest.json b/web/manifest.json index 386571d..4d0b2ff 100644 --- a/web/manifest.json +++ b/web/manifest.json @@ -1,6 +1,6 @@ { - "name": "pokedex", - "short_name": "pokedex", + "name": "pokeguess", + "short_name": "pokeguess", "start_url": ".", "display": "standalone", "background_color": "#0175C2",