Skip to content

Commit f231d0c

Browse files
authored
Merge branch 'master' into fix/android-uncaught-exception
2 parents ccb0fdc + beb16cc commit f231d0c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

22
dependencies {
3-
implementation 'androidx.browser:browser:1.4.0'
3+
implementation 'androidx.browser:browser:1.5.0'
44
}

android/manifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# this is your module manifest and used by Titanium
33
# during compilation, packaging, distribution, etc.
44
#
5-
version: 2.2.1
5+
version: 2.3.1
66
apiversion: 4
77
architectures: arm64-v8a armeabi-v7a x86 x86_64
88
description: titanium-web-dialog

android/src/ti/webdialog/Utils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public static boolean getBool(KrollDict options, String key)
6565
public static int getColor(KrollDict options, String key)
6666
{
6767
if (options.containsKeyAndNotNull(key)) {
68-
return TiConvert.toColor((String) options.get(key));
68+
return TiConvert.toColor((String) options.get(key), TiApplication.getAppCurrentActivity());
6969

7070
} else {
7171
return getR("color.colorPrimary");

0 commit comments

Comments
 (0)