File tree 3 files changed +4
-4
lines changed
src/Packages/Passport/Runtime/ThirdParty/ImmutableBrowserCore
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 88
88
"url" : " https://packages.unity.com"
89
89
},
90
90
"com.unity.nuget.newtonsoft-json" : {
91
- "version" : " 3.2.1 " ,
91
+ "version" : " 3.2.0 " ,
92
92
"depth" : 1 ,
93
93
"source" : " registry" ,
94
94
"dependencies" : {},
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ PlayerSettings:
156
156
androidMaxAspectRatio : 2.1
157
157
applicationIdentifier :
158
158
Android : com.immutable.ImmutableSample
159
- Standalone : com.immutable.unitysample
159
+ Standalone : com.immutable.Immutable-Sample
160
160
iPhone : com.immutable.Immutable-Sample
161
161
buildNumber :
162
162
Standalone : 0
@@ -804,7 +804,7 @@ PlayerSettings:
804
804
allowUnsafeCode : 0
805
805
useDeterministicCompilation : 1
806
806
enableRoslynAnalyzers : 1
807
- selectedPlatform : 3
807
+ selectedPlatform : 0
808
808
additionalIl2CppArgs :
809
809
scriptingRuntimeVersion : 1
810
810
gcIncremental : 1
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ public static string GetFilePath()
26
26
#elif UNITY_STANDALONE_OSX
27
27
// macOS
28
28
filePath = SCHEME_FILE + Path . GetFullPath ( Application . dataPath ) + MAC_DATA_DIRECTORY + PASSPORT_DATA_DIRECTORY_NAME + PASSPORT_HTML_FILE_NAME ;
29
- filePath = filePath . Replace ( " " , "%20" ) ;
30
29
#elif UNITY_IPHONE && ! UNITY_EDITOR
31
30
// iOS device
32
31
filePath = Path . GetFullPath ( Application . dataPath ) + PASSPORT_DATA_DIRECTORY_NAME + PASSPORT_HTML_FILE_NAME ;
@@ -39,6 +38,7 @@ public static string GetFilePath()
39
38
#else
40
39
filePath = SCHEME_FILE + Path . GetFullPath ( Application . dataPath ) + PASSPORT_DATA_DIRECTORY_NAME + PASSPORT_HTML_FILE_NAME ;
41
40
#endif
41
+ filePath = filePath . Replace ( " " , "%20" ) ;
42
42
return filePath ;
43
43
}
44
44
}
You can’t perform that action at this time.
0 commit comments