diff --git a/board_games_companion/android/app/build.gradle b/board_games_companion/android/app/build.gradle index 298b24b5..561c3db9 100644 --- a/board_games_companion/android/app/build.gradle +++ b/board_games_companion/android/app/build.gradle @@ -48,7 +48,7 @@ android { defaultConfig { applicationId "com.progrunning.boardgamescompanion" minSdkVersion 19 - targetSdkVersion 30 + targetSdkVersion 31 versionCode flutterVersionCode.toInteger() versionName flutterVersionName testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" diff --git a/board_games_companion/android/app/src/main/AndroidManifest.xml b/board_games_companion/android/app/src/main/AndroidManifest.xml index 08551b06..5aa5f427 100644 --- a/board_games_companion/android/app/src/main/AndroidManifest.xml +++ b/board_games_companion/android/app/src/main/AndroidManifest.xml @@ -12,7 +12,7 @@ - + diff --git a/board_games_companion/lib/common/app_text.dart b/board_games_companion/lib/common/app_text.dart index b66c87a5..23a0ae59 100644 --- a/board_games_companion/lib/common/app_text.dart +++ b/board_games_companion/lib/common/app_text.dart @@ -183,7 +183,6 @@ class AppText { 'Unfortunately we ran into a problem with restoring your data. Please try again or contact support at feedback@progrunning.net'; static const playHistoryPageEmptyTitle = "You haven't played any games yet"; - static const playHistoryPageEmptyTextPartOne = 'Nothing to worry about though! '; static const playHistoryPageEmptyTextPartTwo = 'Start recording your plays in the app and this screen will automatically populate with a history of your playthroughs.'; diff --git a/board_games_companion/lib/pages/playthroughs_history/playthroughs_history_page.dart b/board_games_companion/lib/pages/playthroughs_history/playthroughs_history_page.dart index 367c7a80..fb7a3dd7 100644 --- a/board_games_companion/lib/pages/playthroughs_history/playthroughs_history_page.dart +++ b/board_games_companion/lib/pages/playthroughs_history/playthroughs_history_page.dart @@ -312,10 +312,6 @@ class _NoPlaythroughsSliver extends StatelessWidget { Text.rich( TextSpan( children: [ - TextSpan( - text: AppText.playHistoryPageEmptyTextPartOne, - style: TextStyle(fontWeight: FontWeight.bold), - ), TextSpan(text: AppText.playHistoryPageEmptyTextPartTwo), ], ),