Skip to content

Commit 44ec6da

Browse files
committed
prep
1 parent cfaac64 commit 44ec6da

File tree

1,501 files changed

+728980
-0
lines changed

Some content is hidden

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

1,501 files changed

+728980
-0
lines changed

.csharpierrc.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"printWidth": 200,
3+
"useTabs": false,
4+
"tabWidth": 4,
5+
"preprocessorSymbolSets": ["", "DEBUG", "DEBUG,CODE_STYLE"]
6+
}

.gitignore

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# This .gitignore file should be placed at the root of your Unity project directory
2+
#
3+
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
4+
#
5+
/[Ll]ibrary/
6+
/[Tt]emp/
7+
/[Oo]bj/
8+
/[Bb]uild/
9+
/[Bb]uilds/
10+
/[Ll]ogs/
11+
/[Oo]ut/
12+
/[Uu]ser[Ss]ettings/
13+
14+
# MemoryCaptures can get excessive in size.
15+
# They also could contain extremely sensitive data
16+
/[Mm]emoryCaptures/
17+
18+
# Asset meta data should only be ignored when the corresponding asset is also ignored
19+
!/[Aa]ssets/**/*.meta
20+
21+
# Uncomment this line if you wish to ignore the asset store tools plugin
22+
# /[Aa]ssets/AssetStoreTools*
23+
24+
# Autogenerated Jetbrains Rider plugin
25+
/[Aa]ssets/Plugins/Editor/JetBrains*
26+
27+
# Visual Studio cache directory
28+
.vs/
29+
30+
# Gradle cache directory
31+
.gradle/
32+
33+
# Autogenerated VS/MD/Consulo solution and project files
34+
ExportedObj/
35+
.consulo/
36+
*.csproj
37+
*.csproj.meta
38+
*.unityproj
39+
*.sln
40+
*.suo
41+
*.tmp
42+
*.user
43+
*.userprefs
44+
*.pidb
45+
*.booproj
46+
*.svd
47+
*.pdb
48+
*.mdb
49+
*.opendb
50+
*.VC.db
51+
52+
# Unity3D generated meta files
53+
*.pidb.meta
54+
*.pdb.meta
55+
*.mdb.meta
56+
57+
# Unity3D generated file on crash reports
58+
sysinfo.txt
59+
60+
# Builds
61+
*.apk
62+
63+
Assets/StreamingAssets/
64+
65+
# Crashlytics generated file
66+
crashlytics-build.properties
67+
.DS_Store
68+
69+
build/
70+
releases/
71+
Documentation/
72+
73+
!docs/**
74+
Assets/Tests/config.json
75+
Assets/Tests/config.json.meta
76+
Assets/Tests/Resources.meta
77+
Assets/Tests/Resources/config.json
78+
Assets/Tests/Resources/config.json.meta
79+
80+
# Ignore temporaries from GameCI
81+
/[Aa]rtifacts/
82+
/[Cc]odeCoverage/

.vscode/extensions.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"visualstudiotoolsforunity.vstuc"
4+
]
5+
}

.vscode/launch.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Attach to Unity",
6+
"type": "vstuc",
7+
"request": "attach",
8+
}
9+
]
10+
}

.vscode/settings.json

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"files.exclude": {
3+
"**/.DS_Store": true,
4+
"**/.git": true,
5+
"**/.gitmodules": true,
6+
"**/*.booproj": true,
7+
"**/*.pidb": true,
8+
"**/*.suo": true,
9+
"**/*.user": true,
10+
"**/*.userprefs": true,
11+
"**/*.unityproj": true,
12+
"**/*.dll": true,
13+
"**/*.exe": true,
14+
"**/*.pdf": true,
15+
"**/*.mid": true,
16+
"**/*.midi": true,
17+
"**/*.wav": true,
18+
"**/*.gif": true,
19+
"**/*.ico": true,
20+
"**/*.jpg": true,
21+
"**/*.jpeg": true,
22+
"**/*.png": true,
23+
"**/*.psd": true,
24+
"**/*.tga": true,
25+
"**/*.tif": true,
26+
"**/*.tiff": true,
27+
"**/*.3ds": true,
28+
"**/*.3DS": true,
29+
"**/*.fbx": true,
30+
"**/*.FBX": true,
31+
"**/*.lxo": true,
32+
"**/*.LXO": true,
33+
"**/*.ma": true,
34+
"**/*.MA": true,
35+
"**/*.obj": true,
36+
"**/*.OBJ": true,
37+
"**/*.asset": true,
38+
"**/*.cubemap": true,
39+
"**/*.flare": true,
40+
"**/*.mat": true,
41+
"**/*.meta": true,
42+
"**/*.prefab": true,
43+
"**/*.unity": true,
44+
"build/": true,
45+
"Build/": true,
46+
"Library/": true,
47+
"library/": true,
48+
"obj/": true,
49+
"Obj/": true,
50+
"ProjectSettings/": true,
51+
"temp/": true,
52+
"Temp/": true
53+
},
54+
"dotnet.defaultSolution": "unity-sdk.sln"
55+
}

.vsconfig

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"version": "1.0",
3+
"components": [
4+
"Microsoft.VisualStudio.Workload.ManagedGame"
5+
]
6+
}

Assets/Plugins.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/Android.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/Android/Linker.java

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package com.walletconnect.unity;
2+
3+
import android.content.Context;
4+
import android.content.Intent;
5+
import android.net.Uri;
6+
7+
public class Linker {
8+
public static boolean canOpenURL(Context context, String url) {
9+
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
10+
return intent.resolveActivity(context.getPackageManager()) != null;
11+
}
12+
}

Assets/Plugins/Android/Linker.java.meta

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
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+
}

Assets/Plugins/Android/ThirdwebActivity.java.meta

+32
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.annotation.annotation-1.1.0.jar.meta

+34
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.arch.core.core-common-2.0.0.jar.meta

+34
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.browser.browser-1.4.0.aar.meta

+34
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

0 commit comments

Comments
 (0)