Skip to content

Commit deb156d

Browse files
committed
Fix Readme and update packages
1 parent 5e43666 commit deb156d

File tree

6 files changed

+428
-203
lines changed

6 files changed

+428
-203
lines changed

README.md

Lines changed: 51 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,87 @@
1-
# Frave Food - Delivery App
2-
3-
#### In process of improvement......(may present errors)
4-
5-
Frave Developer
6-
7-
### YouTube Channel
8-
[Frave Developer](https://cutt.ly/pckBg9D)
1+
# In process of improvement......(may present errors)
2+
3+
<div align="center">
4+
5+
### <img src="https://avatars.githubusercontent.com/u/76232843?s=400&u=52234351df87372dea43a90243320f9e6a78e70c&v=4" height="100px"/>
6+
7+
***FRAVE DEVELOPER***
8+
</div>
9+
10+
<div align="center">
11+
Frave Food - Delivery App
12+
</div>
13+
14+
15+
<br>
16+
<table align="center">
17+
<tr>
18+
<th style="text-align:center">
19+
<a href="https://cutt.ly/pckBg9D">
20+
<img src="https://cdn.svgporn.com/logos/youtube-icon.svg" width="40">
21+
</a>
22+
</th>
23+
<th style="text-align:center">
24+
<a href="https://www.instagram.com/frave_developer">
25+
<img src="https://github.com/aritraroy/social-icons/blob/master/instagram-icon.png?raw=true" width="40">
26+
</a>
27+
</th>
28+
<th style="text-align:center">
29+
<a href="#">
30+
<img src="https://cdn.svgporn.com/logos/google-gmail.svg" width="30">
31+
</a>
32+
</th>
33+
</tr>
34+
</table>
35+
<br>
936

1037
### Video Youtube
1138
[Flutter - Frave Food](https://youtu.be/KmJEB5Dfam0)
1239

13-
### Social Media
14-
<a href="https://www.instagram.com/frave_developer"><img src="https://github.com/aritraroy/social-icons/blob/master/instagram-icon.png?raw=true" width="50"></a>
1540

1641
### Donate
1742
<a href="https://www.buymeacoffee.com/frave"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" width="170"></a>
1843
<a href="https://www.paypal.me/Fpereza"><img src="https://cdn.svgporn.com/logos/paypal.svg" width="50"></a>
1944
<a>[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/I3I1C3R4S)</a>
2045
---
21-
### Requirements
46+
## Requirements
2247

23-
#### Change IP
24-
- Lib/Services/url.dart
48+
### FIRST
49+
```
50+
flutter clean
51+
```
52+
53+
### CHANGE IP
54+
```
55+
Lib/Services/url.dart
56+
```
2557

26-
#### Enable Google Map SDK for each platform.
58+
## Enable Google Map SDK for each platform.
2759
- Go to [Google Developers Console](https://console.cloud.google.com)
2860
- To enable Google Maps for Android and iOS.
2961
- Page API KEY -> lib/Services/GoogleServices
3062
- Page API KEY -> Android/app/src/main/AndroidManifest.xml
3163

32-
#### MAPBOX API KEY
64+
## MAPBOX API KEY
3365
- Go to [Mapbox](https://www.mapbox.com/)
3466
- Page API KEY -> lib/Controller/MapBoxController
3567

36-
#### PUSH NOTIFICATIONS - Cloud Messaging | Firebase
68+
## PUSH NOTIFICATIONS - Cloud Messaging | Firebase
3769
- Page Server Key => lib/Services/PushNotification.dart
3870
- Page google-services.json => Android/App/
3971
- Go Firebase
4072
- Project settings
4173
- Cloud Messaging
4274
- Server key
4375

44-
#### Flutter
76+
## Flutter
4577
- Flutter Bloc
4678
- Socket io client
4779
- Google Map
4880
- MapBox
4981
- Geolocator
5082
- Push notifications
5183

52-
#### Nodejs
84+
# Backend [NodeJs]
5385
- [Backend - Javascript](https://github.com/Frave07/Backend-Delivery-App-Flutter)
5486

5587

@@ -68,7 +100,7 @@ Frave Developer
68100

69101
> Version 1.1, December 2016
70102

71-
> Copyright (C) [2022] [frave developer]
103+
> Copyright (C) [2023] [frave developer]
72104

73105
Everyone is permitted to copy and distribute verbatim or modified
74106
copies of this license document.

ios/Flutter/Debug.xcconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
12
#include "Generated.xcconfig"

ios/Flutter/Release.xcconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
12
#include "Generated.xcconfig"

ios/Podfile

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Uncomment this line to define a global platform for your project
2+
# platform :ios, '11.0'
3+
4+
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5+
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
6+
7+
project 'Runner', {
8+
'Debug' => :debug,
9+
'Profile' => :release,
10+
'Release' => :release,
11+
}
12+
13+
def flutter_root
14+
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
15+
unless File.exist?(generated_xcode_build_settings_path)
16+
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
17+
end
18+
19+
File.foreach(generated_xcode_build_settings_path) do |line|
20+
matches = line.match(/FLUTTER_ROOT\=(.*)/)
21+
return matches[1].strip if matches
22+
end
23+
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
24+
end
25+
26+
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
27+
28+
flutter_ios_podfile_setup
29+
30+
target 'Runner' do
31+
use_frameworks!
32+
use_modular_headers!
33+
34+
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
35+
end
36+
37+
post_install do |installer|
38+
installer.pods_project.targets.each do |target|
39+
flutter_additional_ios_build_settings(target)
40+
end
41+
end

0 commit comments

Comments
 (0)