diff --git a/Jenkinsfile b/Jenkinsfile
index 799743d..aa44aab 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,12 +19,11 @@ pipeline {
#!/bin/bash
flutter build apk
- flutter build appbundle
+
mv build/app/outputs/flutter-apk/app-release.apk build/app/outputs/flutter-apk/timetrack.apk
- mv build/app/outputs/bundle/release/app-release.aab build/app/outputs/bundle/release/timetrack.aab
cd server/php
tar -cvf ../../php.tgz .
@@ -36,7 +35,7 @@ pipeline {
post {
always {
archiveArtifacts artifacts: "build/app/outputs/flutter-apk/timetrack.apk"
- archiveArtifacts artifacts: "build/app/outputs/bundle/release/timetrack.aab"
+
archiveArtifacts artifacts: "php.tgz"
diff --git a/README.md b/README.md
index 86e9546..1fbbbbc 100644
--- a/README.md
+++ b/README.md
@@ -24,6 +24,7 @@ The app does not store data locally, due to the way android permissions function
# Implementation
+- [ ] Application Icon for mobile and web favicon
- [x] Basic UI
- [x] Permissions
- [x] Automatic updates
@@ -32,10 +33,11 @@ The app does not store data locally, due to the way android permissions function
- [x] Track driving hours
- [x] Track trips
- [x] Track stops/deliveries
-- [x] Track trip base pay
- - [x] Track each delivery's tips
-- [ ] Map marker for each stop/delivery with text saying "Trip #X/DropOff #X\nBase Pay: $$$; Tip: $$$"
-- [ ] Basic version of the app in readonly mode when deployed on a web server.
-- [ ] Backend server
- - [ ] PHP?
- - [ ] Dart based?
+- [x] ~~Track trip base pay~~
+ - [x] ~~Track each delivery's tips~~
+- [x] Track total pay
+- [x] Map marker for each stop/delivery with text saying "Trip #X/DropOff #X ~~\nBase Pay: [amount]; Tip: [amount]~~
+- [x] Basic version of the app in readonly mode when deployed on a web server.
+- [x] Backend server
+ - [x] PHP
+ - [ ] ~~Dart based?~~
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 04073ea..2986e0d 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -10,10 +10,15 @@
-
+
+
+
+
+
+
+
+
diff --git a/web/manifest.json b/web/manifest.json
index bf5852d..572f0ba 100644
--- a/web/manifest.json
+++ b/web/manifest.json
@@ -1,35 +1,35 @@
{
- "name": "timetrack",
- "short_name": "timetrack",
- "start_url": ".",
- "display": "standalone",
- "background_color": "#0175C2",
- "theme_color": "#0175C2",
- "description": "A new Flutter project.",
- "orientation": "portrait-primary",
- "prefer_related_applications": false,
- "icons": [
- {
- "src": "icons/Icon-192.png",
- "sizes": "192x192",
- "type": "image/png"
- },
- {
- "src": "icons/Icon-512.png",
- "sizes": "512x512",
- "type": "image/png"
- },
- {
- "src": "icons/Icon-maskable-192.png",
- "sizes": "192x192",
- "type": "image/png",
- "purpose": "maskable"
- },
- {
- "src": "icons/Icon-maskable-512.png",
- "sizes": "512x512",
- "type": "image/png",
- "purpose": "maskable"
- }
- ]
+ "name": "Time Tracker",
+ "short_name": "timetrack",
+ "start_url": ".",
+ "display": "standalone",
+ "background_color": "#0175C2",
+ "theme_color": "#0175C2",
+ "description": "A simple, yet effective GPS, time, and mile tracker",
+ "orientation": "portrait-primary",
+ "prefer_related_applications": false,
+ "icons": [
+ {
+ "src": "icons/Icon-192.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ },
+ {
+ "src": "icons/Icon-512.png",
+ "sizes": "512x512",
+ "type": "image/png"
+ },
+ {
+ "src": "icons/Icon-maskable-192.png",
+ "sizes": "192x192",
+ "type": "image/png",
+ "purpose": "maskable"
+ },
+ {
+ "src": "icons/Icon-maskable-512.png",
+ "sizes": "512x512",
+ "type": "image/png",
+ "purpose": "maskable"
+ }
+ ]
}