Skip to content

Commit f7295f7

Browse files
committed
Updated manifest to match master
1 parent f79cc1a commit f7295f7

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php namespace App\Http\Controllers;
2-
32
use Illuminate\Routing\Controller;
4-
53
class PWAController extends Controller
64
{
75
public function manifest()
@@ -13,20 +11,25 @@ public function manifest()
1311
"display" => "fullscreen",
1412
"start_url" => "/?using_pwa=1",
1513
"short_name" => "AccessLocator",
14+
"background_color" => "#e7f3f5",
1615
"theme_color" => "#202767",
1716
"description" => "Your personalized access to the world",
1817
"orientation" => "portrait",
1918
"background_color" => "#202767",
2019
"related_applications" => [],
2120
"prefer_related_applications" => false,
22-
"gcm_sender_id": "926874022337"
2321
"icons" => [
2422
[
2523
"src" => "/images/logo-192x192.png",
2624
"type" => "image/png",
2725
"sizes" => "192x192"
26+
],
27+
[
28+
"src" => "/images/logo-512x512.png",
29+
"type" => "image/png",
30+
"sizes" => "512x512"
2831
]
2932
]
3033
]);
3134
}
32-
}
35+
}

0 commit comments

Comments
 (0)