Skip to content

Commit 4c63518

Browse files
Updating to latest FlutterFlow output.
1 parent e4d63a3 commit 4c63518

File tree

107 files changed

+5192
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+5192
-2
lines changed

.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
12+
# IntelliJ related
13+
*.iml
14+
*.ipr
15+
*.iws
16+
.idea/
17+
18+
# The .vscode folder contains launch configuration and tasks you configure in
19+
# VS Code which you may wish to be included in version control, so this line
20+
# is commented out by default.
21+
#.vscode/
22+
23+
# Flutter/Dart/Pub related
24+
**/doc/api/
25+
**/ios/Flutter/.last_build_id
26+
.dart_tool/
27+
.flutter-plugins
28+
.flutter-plugins-dependencies
29+
.packages
30+
.pub-cache/
31+
.pub/
32+
/build/
33+
34+
# Web related
35+
lib/generated_plugin_registrant.dart
36+
37+
# Symbolication related
38+
app.*.symbols
39+
40+
# Obfuscation related
41+
app.*.map.json
42+
43+
# Android Studio will place build artifacts here
44+
/android/app/debug
45+
/android/app/profile
46+
/android/app/release

.metadata

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: 4d7946a68d26794349189cf21b3f68cc6fe61dcb
8+
channel: stable
9+
10+
project_type: app

README.md

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,31 @@
1-
# FlutterMetSample
2-
The FlutterMet app, pushed straight from FlutterFlow
1+
# flutter_met
2+
3+
A new Flutter project.
4+
5+
## Getting Started
6+
7+
FlutterFlow projects are built to run on the Flutter _stable_ release.
8+
9+
### IMPORTANT:
10+
11+
For projects with Firestore integration, you must first run the following commands to ensure the project compiles:
12+
13+
```
14+
flutter pub get
15+
flutter packages pub run build_runner build --delete-conflicting-outputs
16+
```
17+
18+
This command creates the generated files that parse each Record from Firestore into a schema object.
19+
20+
### Getting started continued:
21+
22+
This project is a starting point for a Flutter application.
23+
24+
A few resources to get you started if this is your first Flutter project:
25+
26+
- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
27+
- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)
28+
29+
For help getting started with Flutter, view our
30+
[online documentation](https://flutter.dev/docs), which offers tutorials,
31+
samples, guidance on mobile development, and a full API reference.

android/.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
gradle-wrapper.jar
2+
/.gradle
3+
/captures/
4+
/gradlew
5+
/gradlew.bat
6+
/local.properties
7+
GeneratedPluginRegistrant.java
8+
9+
# Remember to never publicly share your keystore.
10+
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11+
key.properties

android/app/build.gradle

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
def localProperties = new Properties()
2+
def localPropertiesFile = rootProject.file('local.properties')
3+
if (localPropertiesFile.exists()) {
4+
localPropertiesFile.withReader('UTF-8') { reader ->
5+
localProperties.load(reader)
6+
}
7+
}
8+
9+
def flutterRoot = localProperties.getProperty('flutter.sdk')
10+
if (flutterRoot == null) {
11+
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
12+
}
13+
14+
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
15+
if (flutterVersionCode == null) {
16+
flutterVersionCode = '1'
17+
}
18+
19+
def flutterVersionName = localProperties.getProperty('flutter.versionName')
20+
if (flutterVersionName == null) {
21+
flutterVersionName = '1.0'
22+
}
23+
24+
apply plugin: 'com.android.application'
25+
apply plugin: 'kotlin-android'
26+
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
27+
apply plugin: 'com.google.gms.google-services' // Google Services plugin
28+
29+
android {
30+
compileSdkVersion 29
31+
32+
sourceSets {
33+
main.java.srcDirs += 'src/main/kotlin'
34+
}
35+
36+
lintOptions {
37+
disable 'InvalidPackage'
38+
}
39+
40+
defaultConfig {
41+
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
42+
applicationId "com.flutterflow.fluttermet"
43+
minSdkVersion 21
44+
targetSdkVersion 29
45+
versionCode flutterVersionCode.toInteger()
46+
versionName flutterVersionName
47+
}
48+
49+
buildTypes {
50+
release {
51+
// TODO: Add your own signing config for the release build.
52+
// Signing with the debug keys for now, so `flutter run --release` works.
53+
signingConfig signingConfigs.debug
54+
}
55+
}
56+
}
57+
58+
flutter {
59+
source '../..'
60+
}
61+
62+
dependencies {
63+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
64+
}

android/app/google-services.json

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"project_info": {
3+
"project_number": "996585139099",
4+
"project_id": "fluttermet",
5+
"storage_bucket": "fluttermet.appspot.com"
6+
},
7+
"client": [
8+
{
9+
"client_info": {
10+
"mobilesdk_app_id": "1:996585139099:android:1e36ca168827ee6552cf3e",
11+
"android_client_info": {
12+
"package_name": "com.flutterflow.fluttermet"
13+
}
14+
},
15+
"oauth_client": [
16+
{
17+
"client_id": "996585139099-rivuqb3586ou7iimokqagorsmnfh23o0.apps.googleusercontent.com",
18+
"client_type": 1,
19+
"android_info": {
20+
"package_name": "com.flutterflow.fluttermet",
21+
"certificate_hash": "9bbb3186b2189ef16d8f272bdab59362c395cbb4"
22+
}
23+
},
24+
{
25+
"client_id": "996585139099-187f7h1tdp5gapma8f2g569ki3pr0o02.apps.googleusercontent.com",
26+
"client_type": 3
27+
}
28+
],
29+
"api_key": [
30+
{
31+
"current_key": "AIzaSyAzWPSmwNXIVRCaDUJdTCbPaY6kytlkziA"
32+
}
33+
],
34+
"services": {
35+
"appinvite_service": {
36+
"other_platform_oauth_client": [
37+
{
38+
"client_id": "996585139099-187f7h1tdp5gapma8f2g569ki3pr0o02.apps.googleusercontent.com",
39+
"client_type": 3
40+
},
41+
{
42+
"client_id": "996585139099-h5euoodv05lrgpi0hmghcqreno540v5n.apps.googleusercontent.com",
43+
"client_type": 2,
44+
"ios_info": {
45+
"bundle_id": "com.flutterflow.fluttermet"
46+
}
47+
}
48+
]
49+
}
50+
}
51+
}
52+
],
53+
"configuration_version": "1"
54+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="com.flutterflow.fluttermet">
3+
<!-- Flutter needs it to communicate with the running application
4+
to allow setting breakpoints, to provide hot reload, etc.
5+
-->
6+
<uses-permission android:name="android.permission.INTERNET"/>
7+
</manifest>
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="com.flutterflow.fluttermet">
3+
<uses-permission android:name="android.permission.INTERNET"/>
4+
<application
5+
android:label="flutter_met"
6+
android:icon="@mipmap/ic_launcher"
7+
android:requestLegacyExternalStorage="true">
8+
<meta-data android:name="com.facebook.sdk.ApplicationId"
9+
android:value="@string/facebook_app_id"/>
10+
<activity android:name="com.facebook.FacebookActivity"
11+
android:configChanges=
12+
"keyboard|keyboardHidden|screenLayout|screenSize|orientation"
13+
android:label="@string/app_name" />
14+
<activity
15+
android:name="com.facebook.CustomTabActivity"
16+
android:exported="true">
17+
<intent-filter>
18+
<action android:name="android.intent.action.VIEW" />
19+
<category android:name="android.intent.category.DEFAULT" />
20+
<category android:name="android.intent.category.BROWSABLE" />
21+
<data android:scheme="@string/fb_login_protocol_scheme" />
22+
</intent-filter>
23+
</activity>
24+
25+
<activity
26+
android:name=".MainActivity"
27+
android:launchMode="singleTop"
28+
android:theme="@style/LaunchTheme"
29+
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
30+
android:hardwareAccelerated="true"
31+
android:windowSoftInputMode="adjustResize">
32+
<!-- Specifies an Android theme to apply to this Activity as soon as
33+
the Android process has started. This theme is visible to the user
34+
while the Flutter UI initializes. After that, this theme continues
35+
to determine the Window background behind the Flutter UI. -->
36+
<meta-data
37+
android:name="io.flutter.embedding.android.NormalTheme"
38+
android:resource="@style/NormalTheme"
39+
/>
40+
<!-- Displays an Android View that continues showing the launch screen
41+
Drawable until Flutter paints its first frame, then this splash
42+
screen fades out. A splash screen is useful to avoid any visual
43+
gap between the end of Android's launch screen and the painting of
44+
Flutter's first frame. -->
45+
<meta-data
46+
android:name="io.flutter.embedding.android.SplashScreenDrawable"
47+
android:resource="@drawable/launch_background"
48+
/>
49+
<intent-filter>
50+
<action android:name="android.intent.action.MAIN"/>
51+
<category android:name="android.intent.category.LAUNCHER"/>
52+
</intent-filter>
53+
</activity>
54+
<!-- Don't delete the meta-data below.
55+
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
56+
<meta-data
57+
android:name="flutterEmbedding"
58+
android:value="2" />
59+
</application>
60+
</manifest>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
package io.flutter.plugins;
2+
3+
import androidx.annotation.Keep;
4+
import androidx.annotation.NonNull;
5+
6+
import io.flutter.embedding.engine.FlutterEngine;
7+
import io.flutter.embedding.engine.plugins.shim.ShimPluginRegistry;
8+
9+
/**
10+
* Generated file. Do not edit.
11+
* This file is generated by the Flutter tool based on the
12+
* plugins that support the Android platform.
13+
*/
14+
@Keep
15+
public final class GeneratedPluginRegistrant {
16+
public static void registerWith(@NonNull FlutterEngine flutterEngine) {
17+
ShimPluginRegistry shimPluginRegistry = new ShimPluginRegistry(flutterEngine);
18+
io.flutter.plugins.firebaseauth.FirebaseAuthPlugin.registerWith(shimPluginRegistry.registrarFor("io.flutter.plugins.firebaseauth.FirebaseAuthPlugin"));
19+
flutterEngine.getPlugins().add(new io.flutter.plugins.firebase.core.FirebaseCorePlugin());
20+
io.flutter.plugins.googlesignin.GoogleSignInPlugin.registerWith(shimPluginRegistry.registrarFor("io.flutter.plugins.googlesignin.GoogleSignInPlugin"));
21+
}
22+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package com.flutterflow.fluttermet
2+
3+
import io.flutter.embedding.android.FlutterActivity
4+
5+
class MainActivity: FlutterActivity() {
6+
}

0 commit comments

Comments
 (0)