Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions .github/workflows/flutter-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,9 @@ jobs:
run: |
mkdir -p assets/env
{
echo "GOOGLE_API_KEY=${{ secrets.GOOGLE_API_KEY }}"
echo "FIREBASE_ANDROID_APP_ID=${{ secrets.FIREBASE_ANDROID_APP_ID }}"
echo "FIREBASE_MESSAGING_SENDER_ID=${{ secrets.FIREBASE_MESSAGING_SENDER_ID }}"
echo "FIREBASE_PROJECT_ID=${{ secrets.FIREBASE_PROJECT_ID }}"
echo "FIREBASE_STORAGE_BUCKET=${{ secrets.FIREBASE_STORAGE_BUCKET }}"
echo "FIREBASE_IOS_API_KEY=${{ secrets.FIREBASE_IOS_API_KEY }}"
echo "FIREBASE_IOS_APP_ID=${{ secrets.FIREBASE_IOS_APP_ID }}"
echo "FIREBASE_IOS_BUNDLE_ID=${{ secrets.FIREBASE_IOS_BUNDLE_ID }}"
echo "GOMS_API_BASE_URL=${{ secrets.GOMS_API_BASE_URL }}"
echo "KAKAO_NATIVE_APP_KEY=${{ secrets.KAKAO_NATIVE_APP_KEY }}"
echo "KAKAO_REST_API_KEY=${{ secrets.KAKAO_REST_API_KEY }}"
} > assets/env/dev.env
cp assets/env/dev.env assets/env/prod.env

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final mapScreenProvider = NotifierProvider<MapScreenNotifier, MapScreenState>(
final mapReentryRefreshSignalProvider = StateProvider<int>((ref) => 0);

class MapScreenNotifier extends Notifier<MapScreenState> {
static const _hotPlaceDays = 3;
static const _hotPlaceDays = 1;

@override
MapScreenState build() {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.4.3+47
version: 1.4.4+48

environment:
sdk: ">=3.0.0 <4.0.0"
Expand Down
Loading