diff --git a/.DS_Store b/.DS_Store index 28be10cc..b2d3ca66 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/Frontend/ios/Runner/Info.plist b/Frontend/ios/Runner/Info.plist index 410a60ed..53e112f3 100644 --- a/Frontend/ios/Runner/Info.plist +++ b/Frontend/ios/Runner/Info.plist @@ -52,6 +52,8 @@ Why is my app authenticating using face id? NSLocationWhenInUseUsageDescription This app needs access to location when open. + NSLocationAlwaysAndWhenInUseUsageDescription + This app needs access to your location at all times to provide [Explain your specific, complete reason here, e.g., real-time tracking, background updates, etc.]. NSPhotoLibraryUsageDescription This app needs to access your photo library to select images. NSDownloadsFolderUsageDescription diff --git a/Frontend/lib/mih_config/mih_theme.dart b/Frontend/lib/mih_config/mih_theme.dart index eed96378..22436d37 100644 --- a/Frontend/lib/mih_config/mih_theme.dart +++ b/Frontend/lib/mih_config/mih_theme.dart @@ -14,7 +14,7 @@ class MihTheme { late String loadingAssetText; late TargetPlatform platform; bool kIsWeb = const bool.fromEnvironment('dart.library.js_util'); - String latestVersion = "1.2.1"; + String latestVersion = "1.2.2"; // Options:- // f3f9d2 = Cream // f0f0c9 = cream2 diff --git a/Frontend/lib/mih_packages/mine_sweeper/package_tools/mine_sweeper_game.dart b/Frontend/lib/mih_packages/mine_sweeper/package_tools/mine_sweeper_game.dart index 6a4b2ce6..3facf977 100644 --- a/Frontend/lib/mih_packages/mine_sweeper/package_tools/mine_sweeper_game.dart +++ b/Frontend/lib/mih_packages/mine_sweeper/package_tools/mine_sweeper_game.dart @@ -129,12 +129,12 @@ class _MineSweeperGameState extends State { // easy - 10 * 10 & 15 bombs // Intermediate - 10 * 15 & 23 bombs // Hard - 10 * 20 & 30 bombs - addProvider.loadBannerAd(); showDialog( context: context, builder: (context) { return MihMineSweeperStartGameWindow( onPressed: () { + addProvider.loadBannerAd(); resetTimer(); mihMineSweeperProvider .setDifficulty(mihMineSweeperProvider.difficulty); @@ -803,7 +803,7 @@ class _MineSweeperGameState extends State { ], ), ), - MihBannerAd(), + _timer != null ? MihBannerAd() : SizedBox(), SizedBox(height: 15), ], );