|
@@ -24,12 +24,12 @@ def twaManifest = [
|
24
|
24
|
launchUrl: '/', // The start path for the TWA. Must be relative to the domain.
|
25
|
25
|
name: 'Jitsi Meet', // The application name.
|
26
|
26
|
launcherName: 'Jitsi Meet', // The name shown on the Android Launcher.
|
27
|
|
- themeColor: '#2A3A4B', // The color used for the status bar.
|
|
27
|
+ themeColor: '#17A0DB', // The color used for the status bar.
|
28
|
28
|
navigationColor: '#000000', // The color used for the navigation bar.
|
29
|
29
|
navigationColorDark: '#000000', // The color used for the dark navbar.
|
30
|
30
|
navigationDividerColor: '#000000', // The navbar divider color.
|
31
|
31
|
navigationDividerColorDark: '#000000', // The dark navbar divider color.
|
32
|
|
- backgroundColor: '#2A3A4B', // The color used for the splash screen background.
|
|
32
|
+ backgroundColor: '#17A0DB', // The color used for the splash screen background.
|
33
|
33
|
enableNotifications: false, // Set to true to enable notification delegation.
|
34
|
34
|
// Every shortcut must include the following fields:
|
35
|
35
|
// - name: String that will show up in the shortcut.
|
|
@@ -46,14 +46,20 @@ def twaManifest = [
|
46
|
46
|
enableSiteSettingsShortcut: 'true',
|
47
|
47
|
]
|
48
|
48
|
|
|
49
|
+// Use the number of seconds/10 since Jan 1 2019 as the versionCode.
|
|
50
|
+// This lets us upload a new build at most every 10 seconds for the
|
|
51
|
+// next ~680 years.
|
|
52
|
+// https://stackoverflow.com/a/38643838
|
|
53
|
+def vcode = (int) (((new Date().getTime() / 1000) - 1546297200) / 10)
|
|
54
|
+
|
49
|
55
|
android {
|
50
|
56
|
compileSdkVersion 29
|
51
|
57
|
defaultConfig {
|
52
|
58
|
applicationId "org.jitsi.meet"
|
53
|
59
|
minSdkVersion 19
|
54
|
60
|
targetSdkVersion 29
|
55
|
|
- versionCode 1
|
56
|
|
- versionName "1"
|
|
61
|
+ versionCode vcode
|
|
62
|
+ versionName "20.5.0"
|
57
|
63
|
|
58
|
64
|
// The name for the application
|
59
|
65
|
resValue "string", "appName", twaManifest.name
|
|
@@ -65,12 +71,12 @@ android {
|
65
|
71
|
def launchUrl = "https://" + twaManifest.hostName + twaManifest.launchUrl
|
66
|
72
|
resValue "string", "launchUrl", launchUrl
|
67
|
73
|
|
68
|
|
-
|
|
74
|
+
|
69
|
75
|
// The URL the Web Manifest for the Progressive Web App that the TWA points to. This
|
70
|
76
|
// is used by Chrome OS to open the Web version of the PWA instead of the TWA, as it
|
71
|
77
|
// will probably give a better user experience for non-mobile devices.
|
72
|
|
- resValue "string", "webManifestUrl", 'https://alpha.jitsi.net/static/pwa/manifest.json'
|
73
|
|
-
|
|
78
|
+ resValue "string", "webManifestUrl", 'https://meet.jit.si/static/pwa/manifest.json'
|
|
79
|
+
|
74
|
80
|
|
75
|
81
|
// The hostname is used when building the intent-filter, so the TWA is able to
|
76
|
82
|
// handle Intents to open https://svgomg.firebaseapp.com.
|
|
@@ -100,13 +106,13 @@ android {
|
100
|
106
|
// compile. If not set, the navigation bar color defaults to #000000 - black.
|
101
|
107
|
resValue "color", "navigationColorDark", twaManifest.navigationColorDark
|
102
|
108
|
|
103
|
|
- // This attribute sets the navbar divider color for the TWA. It can be either
|
104
|
|
- // set here or in `res/values/colors.xml`. Setting in both places is an error and the app
|
|
109
|
+ // This attribute sets the navbar divider color for the TWA. It can be either
|
|
110
|
+ // set here or in `res/values/colors.xml`. Setting in both places is an error and the app
|
105
|
111
|
// will not compile. If not set, the divider color defaults to #00000000 - transparent.
|
106
|
112
|
resValue "color", "navigationDividerColor", twaManifest.navigationDividerColor
|
107
|
113
|
|
108
|
|
- // This attribute sets the dark navbar divider color for the TWA. It can be either
|
109
|
|
- // set here or in `res/values/colors.xml`. Setting in both places is an error and the
|
|
114
|
+ // This attribute sets the dark navbar divider color for the TWA. It can be either
|
|
115
|
+ // set here or in `res/values/colors.xml`. Setting in both places is an error and the
|
110
|
116
|
//app will not compile. If not set, the divider color defaults to #000000 - black.
|
111
|
117
|
resValue "color", "navigationDividerColorDark", twaManifest.navigationDividerColorDark
|
112
|
118
|
|
|
@@ -186,11 +192,11 @@ task generateShorcutsFile {
|
186
|
192
|
preBuild.dependsOn(generateShorcutsFile)
|
187
|
193
|
|
188
|
194
|
repositories {
|
189
|
|
-
|
|
195
|
+
|
190
|
196
|
}
|
191
|
197
|
|
192
|
198
|
dependencies {
|
193
|
199
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
194
|
|
-
|
195
|
|
- implementation 'com.google.androidbrowserhelper:androidbrowserhelper:2.0.0'
|
|
200
|
+
|
|
201
|
+ implementation 'com.google.androidbrowserhelper:androidbrowserhelper:2.0.0'
|
196
|
202
|
}
|