Skip to content

Commit 999f043

Browse files
committed
Squashed commit of the following:
commit 53f5d30 Author: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Tue Oct 10 20:23:50 2023 +0300 Use port 8789 standalone commit b26779c Author: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Tue Oct 10 20:06:35 2023 +0300 Remove iOS, catch commit caaf110 Author: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Sat Oct 7 05:18:26 2023 +0300 ThirdwebConfig + flow improvements/fixes android standalone commit f104cd6 Author: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Sat Oct 7 00:37:12 2023 +0300 style commit fe88e1d Author: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Sat Oct 7 00:13:12 2023 +0300 Fix google WebGL popup commit b8c4e81 Author: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Fri Oct 6 10:03:54 2023 +0300 WebGL iteration count commit ffd777b Author: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Fri Oct 6 09:50:24 2023 +0300 fix conditional compilation commit 7e3fd2d Author: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Fri Oct 6 09:10:16 2023 +0300 Remove MagicLink and WebView commit e5c2154 Author: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Fri Oct 6 08:52:54 2023 +0300 Working android inappbrowser, url fetching before ship commit b8250c9 Author: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Thu Oct 5 04:57:19 2023 +0300 Mobile WebView (WIP) commit 4ded2cd Author: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Thu Oct 5 01:49:34 2023 +0300 Google Login for Desktop commit 5fa5b65 Author: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Wed Oct 4 04:28:39 2023 +0300 Swap over to cross platform method, temp example localhost parsing commit f2d062a Author: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Tue Oct 3 05:20:51 2023 +0300 Update EmbeddedWalletUI.cs commit fb98ec9 Author: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Tue Oct 3 05:17:07 2023 +0300 native google
1 parent 5993e2d commit 999f043

File tree

238 files changed

+6816
-339536
lines changed

Some content is hidden

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

238 files changed

+6816
-339536
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package com.unity3d.player;
2+
3+
import android.content.Intent;
4+
import android.net.Uri;
5+
import android.os.Bundle;
6+
import androidx.browser.customtabs.CustomTabsIntent;
7+
8+
public class ThirdwebActivity extends UnityPlayerActivity {
9+
10+
@Override
11+
protected void onCreate(Bundle savedInstanceState) {
12+
super.onCreate(savedInstanceState);
13+
}
14+
15+
@Override
16+
public void onNewIntent(Intent intent) {
17+
super.onNewIntent(intent);
18+
setIntent(intent);
19+
}
20+
21+
@Override
22+
protected void onResume() {
23+
super.onResume();
24+
}
25+
26+
public void OpenCustomTab(String url) {
27+
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
28+
builder.setUrlBarHidingEnabled(true);
29+
CustomTabsIntent customTabsIntent = builder.build();
30+
customTabsIntent.launchUrl(this, Uri.parse(url));
31+
}
32+
}
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Lines changed: 8 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Lines changed: 8 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Lines changed: 8 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

Assets/Plugins/Android/androidx.collection.collection-1.1.0.jar.meta

Lines changed: 34 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)