Commit 73e36320e7d418f8054154dc6ee67ad996b286a8
1 parent
2f0622dd
Exists in
master
and in
3 other branches
Share Video Issue
Showing
10 changed files
with
191 additions
and
38 deletions
Show diff stats
Assets/Plugins/Android/AndroidManifest.xml
@@ -24,6 +24,6 @@ | @@ -24,6 +24,6 @@ | ||
24 | <category android:name="android.intent.category.LAUNCHER" /> | 24 | <category android:name="android.intent.category.LAUNCHER" /> |
25 | </intent-filter> | 25 | </intent-filter> |
26 | <meta-data android:name="unityplayer.UnityActivity" android:value="true" /> | 26 | <meta-data android:name="unityplayer.UnityActivity" android:value="true" /> |
27 | - </activity> | 27 | + </activity> |
28 | </application> | 28 | </application> |
29 | </manifest> | 29 | </manifest> |
30 | \ No newline at end of file | 30 | \ No newline at end of file |
Assets/Scenes/Main.unity
@@ -793,7 +793,7 @@ GameObject: | @@ -793,7 +793,7 @@ GameObject: | ||
793 | m_Icon: {fileID: 0} | 793 | m_Icon: {fileID: 0} |
794 | m_NavMeshLayer: 0 | 794 | m_NavMeshLayer: 0 |
795 | m_StaticEditorFlags: 0 | 795 | m_StaticEditorFlags: 0 |
796 | - m_IsActive: 0 | 796 | + m_IsActive: 1 |
797 | --- !u!224 &160532052 | 797 | --- !u!224 &160532052 |
798 | RectTransform: | 798 | RectTransform: |
799 | m_ObjectHideFlags: 0 | 799 | m_ObjectHideFlags: 0 |
@@ -0,0 +1,63 @@ | @@ -0,0 +1,63 @@ | ||
1 | +using UnityEngine; | ||
2 | +using System.Collections; | ||
3 | +using System; | ||
4 | + | ||
5 | + | ||
6 | +public class AndroidPaths : MonoBehaviour { | ||
7 | + | ||
8 | + public static string GetAndroidContextExternalFilesDir | ||
9 | + { | ||
10 | + get | ||
11 | + { | ||
12 | + string path = ""; | ||
13 | + | ||
14 | + if (Application.platform == RuntimePlatform.Android) | ||
15 | + { | ||
16 | + try | ||
17 | + { | ||
18 | + using (AndroidJavaClass ajc = new AndroidJavaClass("com.unity3d.player.UnityPlayer")) | ||
19 | + { | ||
20 | + using (AndroidJavaObject ajo = ajc.GetStatic<AndroidJavaObject>("currentActivity")) | ||
21 | + { | ||
22 | + path = ajo.Call<AndroidJavaObject>("getExternalFilesDir", null).Call<string>("getAbsolutePath"); | ||
23 | + } | ||
24 | + } | ||
25 | + } | ||
26 | + catch (Exception e) | ||
27 | + { | ||
28 | + Debug.LogWarning("Error fetching native Android external storage dir: " + e.Message); | ||
29 | + } | ||
30 | + } | ||
31 | + return path; | ||
32 | + } | ||
33 | + } | ||
34 | + | ||
35 | + public static string GetAndroidContextInternalFilesDir | ||
36 | + { | ||
37 | + get | ||
38 | + { | ||
39 | + string path = ""; | ||
40 | + | ||
41 | + if (Application.platform == RuntimePlatform.Android) | ||
42 | + { | ||
43 | + try | ||
44 | + { | ||
45 | + using (AndroidJavaClass ajc = new AndroidJavaClass("com.unity3d.player.UnityPlayer")) | ||
46 | + { | ||
47 | + using (AndroidJavaObject ajo = ajc.GetStatic<AndroidJavaObject>("currentActivity")) | ||
48 | + { | ||
49 | + path = ajo.Call<AndroidJavaObject>("getFilesDir").Call<string>("getAbsolutePath"); | ||
50 | + } | ||
51 | + } | ||
52 | + } | ||
53 | + catch (Exception e) | ||
54 | + { | ||
55 | + Debug.LogWarning("Error fetching native Android internal storage dir: " + e.Message); | ||
56 | + } | ||
57 | + } | ||
58 | + return path; | ||
59 | + } | ||
60 | + } | ||
61 | + | ||
62 | + | ||
63 | +} |
@@ -0,0 +1,12 @@ | @@ -0,0 +1,12 @@ | ||
1 | +fileFormatVersion: 2 | ||
2 | +guid: 71dacb9b6a7d04349b9913751ef87ad4 | ||
3 | +timeCreated: 1486607668 | ||
4 | +licenseType: Free | ||
5 | +MonoImporter: | ||
6 | + serializedVersion: 2 | ||
7 | + defaultReferences: [] | ||
8 | + executionOrder: 0 | ||
9 | + icon: {instanceID: 0} | ||
10 | + userData: | ||
11 | + assetBundleName: | ||
12 | + assetBundleVariant: |
Assets/Scripts/Export Video/ExportVideo.cs
@@ -45,6 +45,7 @@ public class ExportVideo : MonoBehaviour { | @@ -45,6 +45,7 @@ public class ExportVideo : MonoBehaviour { | ||
45 | 45 | ||
46 | 46 | ||
47 | private float videoSize = 0; | 47 | private float videoSize = 0; |
48 | + private int bytes = 0; | ||
48 | private string videoId = ""; | 49 | private string videoId = ""; |
49 | private byte[] videoContent = null; | 50 | private byte[] videoContent = null; |
50 | 51 | ||
@@ -157,21 +158,31 @@ public class ExportVideo : MonoBehaviour { | @@ -157,21 +158,31 @@ public class ExportVideo : MonoBehaviour { | ||
157 | Debug.Log("Sharing video content"); | 158 | Debug.Log("Sharing video content"); |
158 | if(gloss == currentGloss) | 159 | if(gloss == currentGloss) |
159 | { | 160 | { |
160 | - if (videoContent != null) | ||
161 | - new MediaShareAndroid().ShareActivity(videoContent,currentTime); | ||
162 | - else | 161 | + try |
163 | { | 162 | { |
164 | - new AndroidToast().showToast("Erro ao compartilhar vídeo"); | ||
165 | - screenManager.changeExportStates(ExportLayers.ExportLayer.All, true); | 163 | + if (videoContent != null) |
164 | + new MediaShareAndroid().ShareActivity(videoContent,bytes, currentTime); | ||
165 | + else | ||
166 | + { | ||
167 | + new AndroidToast().showToast("Erro ao compartilhar vídeo"); | ||
168 | + screenManager.changeExportStates(ExportLayers.ExportLayer.All, true); | ||
169 | + } | ||
170 | + } | ||
171 | + catch (Exception e) | ||
172 | + { | ||
173 | + new AndroidToast().showToast(e.Message); | ||
174 | + new AndroidToast().showToast(e.StackTrace); | ||
166 | } | 175 | } |
167 | 176 | ||
168 | - }else | 177 | + |
178 | + } | ||
179 | + else | ||
169 | { | 180 | { |
170 | currentGloss = gloss; | 181 | currentGloss = gloss; |
171 | currentTime = System.DateTime.Now.ToString("yyyy-MM-dd_HH:mm:ss"); | 182 | currentTime = System.DateTime.Now.ToString("yyyy-MM-dd_HH:mm:ss"); |
172 | 183 | ||
173 | if (videoContent != null) | 184 | if (videoContent != null) |
174 | - new MediaShareAndroid().ShareActivity(videoContent, currentTime); | 185 | + new MediaShareAndroid().ShareActivity(videoContent,bytes, currentTime); |
175 | else | 186 | else |
176 | { | 187 | { |
177 | screenManager.changeExportStates(ExportLayers.ExportLayer.All, true); | 188 | screenManager.changeExportStates(ExportLayers.ExportLayer.All, true); |
@@ -187,7 +198,8 @@ public class ExportVideo : MonoBehaviour { | @@ -187,7 +198,8 @@ public class ExportVideo : MonoBehaviour { | ||
187 | private IEnumerator videoDownload() | 198 | private IEnumerator videoDownload() |
188 | { | 199 | { |
189 | videoDownloadRunning = true; | 200 | videoDownloadRunning = true; |
190 | - WWW DownloadVideo = new WWW(SERVER_URL + videoId); | 201 | + // WWW DownloadVideo = new WWW(SERVER_URL + videoId); |
202 | + WWW DownloadVideo = new WWW("http://caiomcg.com/rural.mp4"); | ||
191 | while (!DownloadVideo.isDone) | 203 | while (!DownloadVideo.isDone) |
192 | { | 204 | { |
193 | screenManager.updateProgressDownloadSprite(DownloadVideo.progress); | 205 | screenManager.updateProgressDownloadSprite(DownloadVideo.progress); |
@@ -196,8 +208,9 @@ public class ExportVideo : MonoBehaviour { | @@ -196,8 +208,9 @@ public class ExportVideo : MonoBehaviour { | ||
196 | 208 | ||
197 | try | 209 | try |
198 | { | 210 | { |
199 | - if (DownloadVideo.bytesDownloaded > 0 && DownloadVideo.bytesDownloaded <= videoSize) | 211 | + if (DownloadVideo.bytesDownloaded > 0 ) |
200 | { | 212 | { |
213 | + bytes = DownloadVideo.bytesDownloaded; | ||
201 | videoContent = DownloadVideo.bytes; | 214 | videoContent = DownloadVideo.bytes; |
202 | OnDownloadFinished(); | 215 | OnDownloadFinished(); |
203 | } | 216 | } |
@@ -293,7 +306,7 @@ public class ExportVideo : MonoBehaviour { | @@ -293,7 +306,7 @@ public class ExportVideo : MonoBehaviour { | ||
293 | 306 | ||
294 | public IEnumerator WaitForResponse(WWW www, Events.RequestSuccess success, Events.RequestError error) | 307 | public IEnumerator WaitForResponse(WWW www, Events.RequestSuccess success, Events.RequestError error) |
295 | { | 308 | { |
296 | - yield return Methods.WaitForResponse(www, 60f, success, error); | 309 | + yield return Methods.WaitForResponse(www, 60*5f, success, error); |
297 | 310 | ||
298 | } | 311 | } |
299 | 312 |
Assets/Scripts/Export Video/MediaShareAndroid.cs
@@ -17,6 +17,7 @@ | @@ -17,6 +17,7 @@ | ||
17 | using UnityEngine; | 17 | using UnityEngine; |
18 | using System.Collections; | 18 | using System.Collections; |
19 | using System.IO; | 19 | using System.IO; |
20 | +using System; | ||
20 | 21 | ||
21 | 22 | ||
22 | 23 | ||
@@ -24,37 +25,32 @@ public class MediaShareAndroid : MonoBehaviour | @@ -24,37 +25,32 @@ public class MediaShareAndroid : MonoBehaviour | ||
24 | { | 25 | { |
25 | 26 | ||
26 | private string MediaType = "video/*"; | 27 | private string MediaType = "video/*"; |
27 | - private string TitleMessage = "Compartilhar Vídeo"; | 28 | + |
28 | private string SubtitleMessage = "VLibras"; | 29 | private string SubtitleMessage = "VLibras"; |
29 | 30 | ||
30 | private string AndroidPath = AndroidJavaUti.CurrentSDCardPath; | 31 | private string AndroidPath = AndroidJavaUti.CurrentSDCardPath; |
31 | - private string Vlibras = "/VLibras"; | ||
32 | - private string FileName = "/VLibrasVideo_"; | ||
33 | - | ||
34 | - | ||
35 | - /*Makes sure that Vlibras Folder gets created and write the video bytes in it.*/ | ||
36 | - | ||
37 | - private void WriteOnAndroid(byte[] videoContent) | ||
38 | - { | ||
39 | - if(!Directory.Exists(AndroidPath + Vlibras)) | ||
40 | - { | ||
41 | - Directory.CreateDirectory(AndroidPath + Vlibras); | ||
42 | - } | ||
43 | - if (!Directory.Exists(AndroidPath + Vlibras + FileName)) | ||
44 | - File.WriteAllBytes(AndroidPath + Vlibras + FileName, videoContent); | 32 | + |
33 | + private string destination = ""; | ||
34 | + private string Vlibras = "VLibras"; | ||
35 | + private string FileName = "VLibrasVideo_"; | ||
45 | 36 | ||
37 | + private byte[] videoContent; | ||
38 | + private int bytes; | ||
46 | 39 | ||
47 | 40 | ||
48 | - } | 41 | + /*Makes sure that Vlibras Folder gets created and write the video bytes in it.*/ |
49 | 42 | ||
50 | /* Creates the sharing activity and shows the chooser to the user*/ | 43 | /* Creates the sharing activity and shows the chooser to the user*/ |
51 | 44 | ||
52 | - public void ShareActivity(byte[] videoContent, string CurrentTime) | 45 | + public void ShareActivity(byte[] videoContent,int bytes, string CurrentTime) |
53 | { | 46 | { |
54 | 47 | ||
55 | #if UNITY_ANDROID | 48 | #if UNITY_ANDROID |
49 | + this.videoContent = videoContent; | ||
50 | + this.bytes = bytes; | ||
56 | FileName += CurrentTime + ".mp4"; | 51 | FileName += CurrentTime + ".mp4"; |
57 | - WriteOnAndroid(videoContent); | 52 | + ShareIntent(); |
53 | + /* | ||
58 | // Create Refernece of AndroidJavaClass class for intent | 54 | // Create Refernece of AndroidJavaClass class for intent |
59 | AndroidJavaClass intentClass = new AndroidJavaClass("android.content.Intent"); | 55 | AndroidJavaClass intentClass = new AndroidJavaClass("android.content.Intent"); |
60 | // Create Refernece of AndroidJavaObject class intent | 56 | // Create Refernece of AndroidJavaObject class intent |
@@ -67,18 +63,18 @@ public class MediaShareAndroid : MonoBehaviour | @@ -67,18 +63,18 @@ public class MediaShareAndroid : MonoBehaviour | ||
67 | //Set title of action or intent | 63 | //Set title of action or intent |
68 | intentObject.Call<AndroidJavaObject>("putExtra", intentClass.GetStatic<string>("EXTRA_TITLE"), TitleMessage); | 64 | intentObject.Call<AndroidJavaObject>("putExtra", intentClass.GetStatic<string>("EXTRA_TITLE"), TitleMessage); |
69 | 65 | ||
70 | - /* | 66 | + /* |
71 | // Set actual data which you want to share | 67 | // Set actual data which you want to share |
72 | intentObject.Call<AndroidJavaObject>("putExtra", intentClass.GetStatic<string>("EXTRA_TEXT"), Media); | 68 | intentObject.Call<AndroidJavaObject>("putExtra", intentClass.GetStatic<string>("EXTRA_TEXT"), Media); |
73 | AndroidJavaClass unity = new AndroidJavaClass("com.unity3d.player.UnityPlayer"); | 69 | AndroidJavaClass unity = new AndroidJavaClass("com.unity3d.player.UnityPlayer"); |
74 | AndroidJavaObject currentActivity = unity.GetStatic<AndroidJavaObject>("currentActivity"); | 70 | AndroidJavaObject currentActivity = unity.GetStatic<AndroidJavaObject>("currentActivity"); |
75 | // Invoke android activity for passing intent to share data | 71 | // Invoke android activity for passing intent to share data |
76 | currentActivity.Call("startActivity", intentObject); | 72 | currentActivity.Call("startActivity", intentObject); |
77 | - */ | 73 | + |
78 | 74 | ||
79 | AndroidJavaClass uriClass = new AndroidJavaClass("android.net.Uri"); | 75 | AndroidJavaClass uriClass = new AndroidJavaClass("android.net.Uri"); |
80 | 76 | ||
81 | - AndroidJavaObject fileObject = new AndroidJavaObject("java.io.File", AndroidPath + Vlibras + FileName);// Set Image Path Here | 77 | + AndroidJavaObject fileObject = new AndroidJavaObject("java.io.File", Path.Combine(AndroidPath + Vlibras, FileName));// Set Image Path Here |
82 | AndroidJavaObject uriObject = uriClass.CallStatic<AndroidJavaObject>("fromFile", fileObject); | 78 | AndroidJavaObject uriObject = uriClass.CallStatic<AndroidJavaObject>("fromFile", fileObject); |
83 | // string uriPath = uriObject.Call("getPath"); | 79 | // string uriPath = uriObject.Call("getPath"); |
84 | bool fileExist = fileObject.Call<bool>("exists"); | 80 | bool fileExist = fileObject.Call<bool>("exists"); |
@@ -89,10 +85,59 @@ public class MediaShareAndroid : MonoBehaviour | @@ -89,10 +85,59 @@ public class MediaShareAndroid : MonoBehaviour | ||
89 | AndroidJavaClass unity = new AndroidJavaClass("com.unity3d.player.UnityPlayer"); | 85 | AndroidJavaClass unity = new AndroidJavaClass("com.unity3d.player.UnityPlayer"); |
90 | AndroidJavaObject currentActivity = unity.GetStatic<AndroidJavaObject>("currentActivity"); | 86 | AndroidJavaObject currentActivity = unity.GetStatic<AndroidJavaObject>("currentActivity"); |
91 | currentActivity.Call("startActivity", intentObject); | 87 | currentActivity.Call("startActivity", intentObject); |
92 | - new AndroidToast().showToast("Vídeo salvo em /Vlibras"); | ||
93 | - | 88 | + |
89 | + */ | ||
90 | + | ||
94 | #endif | 91 | #endif |
95 | } | 92 | } |
93 | + | ||
94 | + private void ShareIntent() | ||
95 | + { | ||
96 | + destination = Path.Combine(AndroidPath, Vlibras); | ||
97 | + DirectoryInfo dir = new DirectoryInfo(destination); | ||
98 | + new AndroidToast().showToast(destination); | ||
99 | + if (!dir.Exists) | ||
100 | + { | ||
101 | + dir.Create(); | ||
102 | + } | ||
103 | + | ||
104 | + dir = new DirectoryInfo(Path.Combine(destination, FileName)); | ||
105 | + if (!dir.Exists) | ||
106 | + { | ||
107 | + FileStream SourceStream = new FileStream(Path.Combine(destination, FileName), FileMode.OpenOrCreate); | ||
108 | + if (SourceStream.CanWrite) | ||
109 | + { | ||
110 | + SourceStream.Write(videoContent, 0, bytes); | ||
111 | + SourceStream.Close(); | ||
112 | + | ||
113 | + } | ||
114 | + else | ||
115 | + { | ||
116 | + new AndroidToast().showToast("Erro ao escrever arquivo"); | ||
117 | + } | ||
118 | + | ||
119 | + } | ||
120 | + | ||
121 | + | ||
122 | + // block to open the file and share it ------------START | ||
123 | + AndroidJavaClass intentClass = new AndroidJavaClass("android.content.Intent"); | ||
124 | + AndroidJavaObject intentObject = new AndroidJavaObject("android.content.Intent"); | ||
125 | + intentObject.Call<AndroidJavaObject>("setAction", intentClass.GetStatic<string>("ACTION_SEND")); | ||
126 | + AndroidJavaClass uriClass = new AndroidJavaClass("android.net.Uri"); | ||
127 | + AndroidJavaObject uriObject = uriClass.CallStatic<AndroidJavaObject>("parse", "file://" + Path.Combine(destination,FileName)); | ||
128 | + intentObject.Call<AndroidJavaObject>("putExtra", intentClass.GetStatic<string>("EXTRA_STREAM"), uriObject); | ||
129 | + intentObject.Call<AndroidJavaObject>("setType", MediaType); | ||
130 | + //add data to be passed to the other activity i.e., the data to be sent | ||
131 | + intentObject.Call<AndroidJavaObject>("putExtra", intentClass.GetStatic<string>("EXTRA_SUBJECT"), SubtitleMessage); | ||
132 | + intentObject.Call<AndroidJavaObject>("putExtra", intentClass.GetStatic<string>("EXTRA_TEXT"), "Vlibras Video"); | ||
133 | + intentObject.Call<AndroidJavaObject>("setType", "video/mp4"); | ||
134 | + AndroidJavaClass unity = new AndroidJavaClass("com.unity3d.player.UnityPlayer"); | ||
135 | + AndroidJavaObject jChooser = intentClass.CallStatic<AndroidJavaObject>("createChooser", intentObject, "Compartilhar via"); | ||
136 | + AndroidJavaObject currentActivity = unity.GetStatic<AndroidJavaObject>("currentActivity"); | ||
137 | + currentActivity.Call("startActivity", jChooser); | ||
138 | + | ||
139 | + | ||
140 | + } | ||
96 | } | 141 | } |
97 | 142 | ||
98 | 143 |
Assets/Scripts/UI/ScreenManager.cs
@@ -33,6 +33,7 @@ public class ScreenManager : MonoBehaviour { | @@ -33,6 +33,7 @@ public class ScreenManager : MonoBehaviour { | ||
33 | public GameObject downloadProgressLayer; | 33 | public GameObject downloadProgressLayer; |
34 | 34 | ||
35 | private bool onLockExport = false; | 35 | private bool onLockExport = false; |
36 | + private bool onLockShare = false; | ||
36 | 37 | ||
37 | 38 | ||
38 | 39 | ||
@@ -333,7 +334,7 @@ public class ScreenManager : MonoBehaviour { | @@ -333,7 +334,7 @@ public class ScreenManager : MonoBehaviour { | ||
333 | setTranslateButtonActive( ! playing); | 334 | setTranslateButtonActive( ! playing); |
334 | setPauseMenuState(playing && paused); | 335 | setPauseMenuState(playing && paused); |
335 | setRepeatLayerState( ! playing && repeatable); | 336 | setRepeatLayerState( ! playing && repeatable); |
336 | - if(!onLockExport) | 337 | + if(!onLockExport && !onLockShare) |
337 | changeExportStates(ExportLayers.ExportLayer.All, !playing && repeatable); | 338 | changeExportStates(ExportLayers.ExportLayer.All, !playing && repeatable); |
338 | 339 | ||
339 | 340 | ||
@@ -345,28 +346,33 @@ public class ScreenManager : MonoBehaviour { | @@ -345,28 +346,33 @@ public class ScreenManager : MonoBehaviour { | ||
345 | switch (layers) | 346 | switch (layers) |
346 | { | 347 | { |
347 | case ExportLayers.ExportLayer.Export_Layer: | 348 | case ExportLayers.ExportLayer.Export_Layer: |
349 | + onLockShare = false; | ||
348 | onLockExport = false; | 350 | onLockExport = false; |
349 | setExportContainerState(show_Layer); | 351 | setExportContainerState(show_Layer); |
350 | setExportLayerState(show_Layer); | 352 | setExportLayerState(show_Layer); |
351 | break; | 353 | break; |
352 | case ExportLayers.ExportLayer.Progress_Layer: | 354 | case ExportLayers.ExportLayer.Progress_Layer: |
353 | onLockExport = true; | 355 | onLockExport = true; |
356 | + onLockShare = true; | ||
354 | setExportContainerState(show_Layer); | 357 | setExportContainerState(show_Layer); |
355 | setProgressLayerState(show_Layer); | 358 | setProgressLayerState(show_Layer); |
356 | break; | 359 | break; |
357 | case ExportLayers.ExportLayer.Download_Layer: | 360 | case ExportLayers.ExportLayer.Download_Layer: |
358 | onLockExport = true; | 361 | onLockExport = true; |
362 | + onLockShare = true; | ||
359 | setExportContainerState(show_Layer); | 363 | setExportContainerState(show_Layer); |
360 | setDownloadLayerState(show_Layer); | 364 | setDownloadLayerState(show_Layer); |
361 | break; | 365 | break; |
362 | case ExportLayers.ExportLayer.Progress_Download_Layer: | 366 | case ExportLayers.ExportLayer.Progress_Download_Layer: |
363 | onLockExport = true; | 367 | onLockExport = true; |
368 | + onLockShare = true; | ||
364 | setExportContainerState(show_Layer); | 369 | setExportContainerState(show_Layer); |
365 | setDownloadProgressLayerState(show_Layer); | 370 | setDownloadProgressLayerState(show_Layer); |
366 | 371 | ||
367 | break; | 372 | break; |
368 | case ExportLayers.ExportLayer.Share_Layer: | 373 | case ExportLayers.ExportLayer.Share_Layer: |
369 | - onLockExport = true; | 374 | + onLockExport = true; |
375 | + onLockShare = false; | ||
370 | setExportContainerState(show_Layer); | 376 | setExportContainerState(show_Layer); |
371 | setShareLayerState(show_Layer); | 377 | setShareLayerState(show_Layer); |
372 | break; | 378 | break; |
@@ -374,6 +380,7 @@ public class ScreenManager : MonoBehaviour { | @@ -374,6 +380,7 @@ public class ScreenManager : MonoBehaviour { | ||
374 | onLockExport = show_Layer; | 380 | onLockExport = show_Layer; |
375 | break; | 381 | break; |
376 | default: | 382 | default: |
383 | + onLockShare = false; | ||
377 | onLockExport = false; | 384 | onLockExport = false; |
378 | setExportContainerState(show_Layer); | 385 | setExportContainerState(show_Layer); |
379 | setExportLayerState(show_Layer); | 386 | setExportLayerState(show_Layer); |
ProjectSettings/ProjectSettings.asset
@@ -111,7 +111,7 @@ PlayerSettings: | @@ -111,7 +111,7 @@ PlayerSettings: | ||
111 | iPhoneScriptCallOptimization: 0 | 111 | iPhoneScriptCallOptimization: 0 |
112 | iPhoneBuildNumber: 0 | 112 | iPhoneBuildNumber: 0 |
113 | ForceInternetPermission: 0 | 113 | ForceInternetPermission: 0 |
114 | - ForceSDCardPermission: 0 | 114 | + ForceSDCardPermission: 1 |
115 | CreateWallpaper: 0 | 115 | CreateWallpaper: 0 |
116 | APKExpansionFiles: 0 | 116 | APKExpansionFiles: 0 |
117 | preloadShaders: 0 | 117 | preloadShaders: 0 |