diff --git a/.github/workflows/flutter-release.yml b/.github/workflows/flutter-release.yml index 6479308..9405f4e 100644 --- a/.github/workflows/flutter-release.yml +++ b/.github/workflows/flutter-release.yml @@ -34,11 +34,11 @@ jobs: run: | echo '${{ secrets.KEYSTORE_BASE64 }}' | base64 --decode > apps/flutter/android/app/universe-release.jks cat > apps/flutter/android/key.properties < + diff --git a/apps/flutter/android/app/src/main/res/values/styles.xml b/apps/flutter/android/app/src/main/res/values/styles.xml index cb1ef88..dcbf9a7 100644 --- a/apps/flutter/android/app/src/main/res/values/styles.xml +++ b/apps/flutter/android/app/src/main/res/values/styles.xml @@ -13,6 +13,6 @@ This Theme is only used starting with V2 of Flutter's Android embedding. --> diff --git a/apps/flutter/lib/core/api/api_config.dart b/apps/flutter/lib/core/api/api_config.dart index dcf9204..1c629de 100644 --- a/apps/flutter/lib/core/api/api_config.dart +++ b/apps/flutter/lib/core/api/api_config.dart @@ -1,7 +1,6 @@ class ApiConfig { - // Android emulator uses 10.0.2.2 to access host machine localhost. static const String baseUrl = String.fromEnvironment( 'API_BASE_URL', - defaultValue: 'http://10.0.2.2:5000', + defaultValue: '', ); }