Skip to content

Commit ba71a13

Browse files
Merge branch 'release/v0.1.0'
2 parents 76ca6b6 + 1586178 commit ba71a13

File tree

178 files changed

+4404
-4244
lines changed

Some content is hidden

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

178 files changed

+4404
-4244
lines changed

.vscode/launch.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "personal_finance",
9+
"request": "launch",
10+
"type": "dart"
11+
},
12+
{
13+
"name": "personal_finance (profile mode)",
14+
"request": "launch",
15+
"type": "dart",
16+
"flutterMode": "profile"
17+
},
18+
{
19+
"name": "personal_finance (release mode)",
20+
"request": "launch",
21+
"type": "dart",
22+
"flutterMode": "release"
23+
}
24+
]
25+
}

analysis_options.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
11
include: package:flutter_lints/flutter.yaml
2+
3+
linter:
4+
rules:
5+
avoid_print: false
6+
prefer_single_quotes: true

android/app/build.gradle

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
plugins {
22
id "com.android.application"
3+
// START: FlutterFire Configuration
4+
id 'com.google.gms.google-services'
5+
// END: FlutterFire Configuration
36
id "kotlin-android"
47
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
58
id "dev.flutter.flutter-gradle-plugin"
69
}
710

811
android {
9-
namespace = "com.example.personal_finance"
12+
namespace = "dev.donmanuel.app.personal_finance"
1013
compileSdk = flutter.compileSdkVersion
1114
ndkVersion = flutter.ndkVersion
1215

@@ -21,10 +24,10 @@ android {
2124

2225
defaultConfig {
2326
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
24-
applicationId = "com.example.personal_finance"
27+
applicationId = "dev.donmanuel.app.personal_finance"
2528
// You can update the following values to match your application needs.
2629
// For more information, see: https://flutter.dev/to/review-gradle-config.
27-
minSdk = flutter.minSdkVersion
30+
minSdk = 23
2831
targetSdk = flutter.targetSdkVersion
2932
versionCode = flutter.versionCode
3033
versionName = flutter.versionName

android/app/google-services.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"project_info": {
3+
"project_number": "404077597399",
4+
"project_id": "personalfinance-30e87",
5+
"storage_bucket": "personalfinance-30e87.firebasestorage.app"
6+
},
7+
"client": [
8+
{
9+
"client_info": {
10+
"mobilesdk_app_id": "1:404077597399:android:9c9a8298a57ecd6349d692",
11+
"android_client_info": {
12+
"package_name": "dev.donmanuel.app.personal_finance"
13+
}
14+
},
15+
"oauth_client": [],
16+
"api_key": [
17+
{
18+
"current_key": "AIzaSyBNw0tuDOcMdh7GnY3nOb1K9Rdc6Lrn6Yo"
19+
}
20+
],
21+
"services": {
22+
"appinvite_service": {
23+
"other_platform_oauth_client": []
24+
}
25+
}
26+
}
27+
],
28+
"configuration_version": "1"
29+
}

android/app/src/main/AndroidManifest.xml

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
3+
4+
<uses-permission android:name="android.permission.INTERNET"/>
5+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
6+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
7+
<uses-permission android:name="android.permission.CAMERA"/>
8+
9+
210
<application
3-
android:label="personal_finance"
11+
android:label="Personal Finance"
412
android:name="${applicationName}"
513
android:icon="@mipmap/ic_launcher">
614
<activity

android/app/src/main/kotlin/com/example/personal_finance/MainActivity.kt android/app/src/main/kotlin/dev/donmanuel/app/personal_finance/MainActivity.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.personal_finance
1+
package dev.donmanuel.app.personal_finance
22

33
import io.flutter.embedding.android.FlutterActivity
44

android/settings.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ pluginManagement {
1919
plugins {
2020
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
2121
id "com.android.application" version "8.1.0" apply false
22+
// START: FlutterFire Configuration
23+
id "com.google.gms.google-services" version "4.3.15" apply false
24+
// END: FlutterFire Configuration
2225
id "org.jetbrains.kotlin.android" version "1.8.22" apply false
2326
}
2427

assets/images/ud_verified.svg

+34
Loading

firebase.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"flutter":{"platforms":{"ios":{"default":{"projectId":"personal-finances-98969","appId":"1:789266984209:ios:b1b74f1c4c0889a3cef0b0","uploadDebugSymbols":false,"fileOutput":"ios/Runner/GoogleService-Info.plist"}},"dart":{"lib/firebase_options.dart":{"projectId":"personal-finances-98969","configurations":{"ios":"1:789266984209:ios:b1b74f1c4c0889a3cef0b0"}}}}}}
1+
{"flutter":{"platforms":{"ios":{"default":{"projectId":"personalfinance-30e87","appId":"1:404077597399:ios:38a236891859fae449d692","uploadDebugSymbols":false,"fileOutput":"ios/Runner/GoogleService-Info.plist"}},"dart":{"lib/firebase_options.dart":{"projectId":"personalfinance-30e87","configurations":{"android":"1:404077597399:android:9c9a8298a57ecd6349d692","ios":"1:404077597399:ios:38a236891859fae449d692"}}},"android":{"default":{"projectId":"personalfinance-30e87","appId":"1:404077597399:android:9c9a8298a57ecd6349d692","fileOutput":"android/app/google-services.json"}}}}}

0 commit comments

Comments
 (0)