react-native-share 7.6.5 → 7.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/src/main/java/cl/json/social/InstagramStoriesShare.java +3 -1
- package/ios/EmailShare.m +1 -1
- package/ios/FacebookStories.m +6 -3
- package/ios/GenericShare.m +1 -1
- package/ios/GooglePlusShare.m +7 -2
- package/ios/InstagramShare.m +3 -3
- package/ios/InstagramStories.m +6 -3
- package/ios/TelegramShare.m +1 -1
- package/ios/ViberShare.m +1 -1
- package/ios/WhatsAppShare.m +3 -3
- package/lib/commonjs/index.js +1 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/index.js +1 -1
- package/lib/module/index.js.map +1 -1
- package/package.json +5 -2
- package/src/index.tsx +1 -1
- package/windows/.gitignore +16 -2
- package/windows/ExperimentalFeatures.props +10 -0
- package/windows/NuGet.Config +14 -0
- package/windows/ReactNativeShare/PropertySheet.props +16 -0
- package/windows/ReactNativeShare/ReactNativeModule.h +108 -0
- package/windows/ReactNativeShare/ReactNativeShare.def +3 -0
- package/windows/ReactNativeShare/ReactNativeShare.vcxproj +160 -0
- package/windows/ReactNativeShare/ReactNativeShare.vcxproj.filters +20 -0
- package/windows/ReactNativeShare/ReactPackageProvider.cpp +19 -0
- package/windows/ReactNativeShare/ReactPackageProvider.h +21 -0
- package/windows/ReactNativeShare/ReactPackageProvider.idl +9 -0
- package/windows/ReactNativeShare/packages.config +6 -0
- package/windows/ReactNativeShare/pch.cpp +1 -0
- package/windows/ReactNativeShare/pch.h +18 -0
- package/windows/ReactNativeShare.sln +156 -0
- package/windows/RNShare/Properties/AssemblyInfo.cs +0 -29
- package/windows/RNShare/Properties/RNShare.rd.xml +0 -33
- package/windows/RNShare/RNShare.csproj +0 -183
- package/windows/RNShare/RNShareModule.cs +0 -118
- package/windows/RNShare/RNSharePackage.cs +0 -53
- package/windows/RNShare/project.json +0 -16
- package/windows/RNShare.sln +0 -86
|
@@ -1,183 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
4
|
-
<PropertyGroup>
|
|
5
|
-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
6
|
-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
7
|
-
<ProjectGuid>{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}</ProjectGuid>
|
|
8
|
-
<OutputType>Library</OutputType>
|
|
9
|
-
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
10
|
-
<RootNamespace>RNShare</RootNamespace>
|
|
11
|
-
<AssemblyName>RNShare</AssemblyName>
|
|
12
|
-
<DefaultLanguage>en-US</DefaultLanguage>
|
|
13
|
-
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
|
14
|
-
<TargetPlatformVersion>10.0.10586.0</TargetPlatformVersion>
|
|
15
|
-
<TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
|
|
16
|
-
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
|
|
17
|
-
<FileAlignment>512</FileAlignment>
|
|
18
|
-
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
19
|
-
<ReactWindowsRoot>..\..\node_modules</ReactWindowsRoot>
|
|
20
|
-
</PropertyGroup>
|
|
21
|
-
<PropertyGroup Condition=" '$(Configuration)' != 'Development'">
|
|
22
|
-
<ReactWindowsRoot>..\..</ReactWindowsRoot>
|
|
23
|
-
</PropertyGroup>
|
|
24
|
-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
25
|
-
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
26
|
-
<DebugSymbols>true</DebugSymbols>
|
|
27
|
-
<DebugType>full</DebugType>
|
|
28
|
-
<Optimize>false</Optimize>
|
|
29
|
-
<OutputPath>bin\Debug\</OutputPath>
|
|
30
|
-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
31
|
-
<ErrorReport>prompt</ErrorReport>
|
|
32
|
-
<WarningLevel>4</WarningLevel>
|
|
33
|
-
</PropertyGroup>
|
|
34
|
-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
35
|
-
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
36
|
-
<DebugType>pdbonly</DebugType>
|
|
37
|
-
<Optimize>true</Optimize>
|
|
38
|
-
<OutputPath>bin\Release\</OutputPath>
|
|
39
|
-
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
40
|
-
<ErrorReport>prompt</ErrorReport>
|
|
41
|
-
<WarningLevel>4</WarningLevel>
|
|
42
|
-
</PropertyGroup>
|
|
43
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
|
44
|
-
<PlatformTarget>x86</PlatformTarget>
|
|
45
|
-
<DebugSymbols>true</DebugSymbols>
|
|
46
|
-
<OutputPath>bin\x86\Debug\</OutputPath>
|
|
47
|
-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
48
|
-
<NoWarn>;2008</NoWarn>
|
|
49
|
-
<DebugType>full</DebugType>
|
|
50
|
-
<PlatformTarget>x86</PlatformTarget>
|
|
51
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
52
|
-
<ErrorReport>prompt</ErrorReport>
|
|
53
|
-
</PropertyGroup>
|
|
54
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
|
55
|
-
<PlatformTarget>x86</PlatformTarget>
|
|
56
|
-
<OutputPath>bin\x86\Release\</OutputPath>
|
|
57
|
-
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
58
|
-
<Optimize>true</Optimize>
|
|
59
|
-
<NoWarn>;2008</NoWarn>
|
|
60
|
-
<DebugType>pdbonly</DebugType>
|
|
61
|
-
<PlatformTarget>x86</PlatformTarget>
|
|
62
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
63
|
-
<ErrorReport>prompt</ErrorReport>
|
|
64
|
-
</PropertyGroup>
|
|
65
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
|
|
66
|
-
<PlatformTarget>ARM</PlatformTarget>
|
|
67
|
-
<DebugSymbols>true</DebugSymbols>
|
|
68
|
-
<OutputPath>bin\ARM\Debug\</OutputPath>
|
|
69
|
-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
70
|
-
<NoWarn>;2008</NoWarn>
|
|
71
|
-
<DebugType>full</DebugType>
|
|
72
|
-
<PlatformTarget>ARM</PlatformTarget>
|
|
73
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
74
|
-
<ErrorReport>prompt</ErrorReport>
|
|
75
|
-
</PropertyGroup>
|
|
76
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
|
|
77
|
-
<PlatformTarget>ARM</PlatformTarget>
|
|
78
|
-
<OutputPath>bin\ARM\Release\</OutputPath>
|
|
79
|
-
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
80
|
-
<Optimize>true</Optimize>
|
|
81
|
-
<NoWarn>;2008</NoWarn>
|
|
82
|
-
<DebugType>pdbonly</DebugType>
|
|
83
|
-
<PlatformTarget>ARM</PlatformTarget>
|
|
84
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
85
|
-
<ErrorReport>prompt</ErrorReport>
|
|
86
|
-
</PropertyGroup>
|
|
87
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
|
88
|
-
<PlatformTarget>x64</PlatformTarget>
|
|
89
|
-
<DebugSymbols>true</DebugSymbols>
|
|
90
|
-
<OutputPath>bin\x64\Debug\</OutputPath>
|
|
91
|
-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
92
|
-
<NoWarn>;2008</NoWarn>
|
|
93
|
-
<DebugType>full</DebugType>
|
|
94
|
-
<PlatformTarget>x64</PlatformTarget>
|
|
95
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
96
|
-
<ErrorReport>prompt</ErrorReport>
|
|
97
|
-
</PropertyGroup>
|
|
98
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
|
99
|
-
<PlatformTarget>x64</PlatformTarget>
|
|
100
|
-
<OutputPath>bin\x64\Release\</OutputPath>
|
|
101
|
-
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
102
|
-
<Optimize>true</Optimize>
|
|
103
|
-
<NoWarn>;2008</NoWarn>
|
|
104
|
-
<DebugType>pdbonly</DebugType>
|
|
105
|
-
<PlatformTarget>x64</PlatformTarget>
|
|
106
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
107
|
-
<ErrorReport>prompt</ErrorReport>
|
|
108
|
-
</PropertyGroup>
|
|
109
|
-
<ItemGroup>
|
|
110
|
-
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included -->
|
|
111
|
-
<None Include="project.json" />
|
|
112
|
-
</ItemGroup>
|
|
113
|
-
<ItemGroup>
|
|
114
|
-
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
115
|
-
<Compile Include="RNShareModule.cs" />
|
|
116
|
-
<Compile Include="RNSharePackage.cs" />
|
|
117
|
-
<EmbeddedResource Include="Properties\RNShare.rd.xml" />
|
|
118
|
-
</ItemGroup>
|
|
119
|
-
<ItemGroup>
|
|
120
|
-
<ProjectReference Include="..\..\node_modules\react-native-windows\ReactWindows\ReactNative\ReactNative.csproj">
|
|
121
|
-
<Project>{c7673ad5-e3aa-468c-a5fd-fa38154e205c}</Project>
|
|
122
|
-
<Name>ReactNative</Name>
|
|
123
|
-
</ProjectReference>
|
|
124
|
-
</ItemGroup>
|
|
125
|
-
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '14.0' ">
|
|
126
|
-
<VisualStudioVersion>14.0</VisualStudioVersion>
|
|
127
|
-
</PropertyGroup>
|
|
128
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Development|AnyCPU'">
|
|
129
|
-
<DebugSymbols>true</DebugSymbols>
|
|
130
|
-
<OutputPath>bin\Development\</OutputPath>
|
|
131
|
-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
132
|
-
<NoStdLib>true</NoStdLib>
|
|
133
|
-
<DebugType>full</DebugType>
|
|
134
|
-
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
135
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
136
|
-
<ErrorReport>prompt</ErrorReport>
|
|
137
|
-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
138
|
-
</PropertyGroup>
|
|
139
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Development|x86'">
|
|
140
|
-
<DebugSymbols>true</DebugSymbols>
|
|
141
|
-
<OutputPath>bin\x86\Development\</OutputPath>
|
|
142
|
-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
143
|
-
<NoWarn>;2008</NoWarn>
|
|
144
|
-
<NoStdLib>true</NoStdLib>
|
|
145
|
-
<DebugType>full</DebugType>
|
|
146
|
-
<PlatformTarget>x86</PlatformTarget>
|
|
147
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
148
|
-
<ErrorReport>prompt</ErrorReport>
|
|
149
|
-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
150
|
-
</PropertyGroup>
|
|
151
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Development|ARM'">
|
|
152
|
-
<DebugSymbols>true</DebugSymbols>
|
|
153
|
-
<OutputPath>bin\ARM\Development\</OutputPath>
|
|
154
|
-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
155
|
-
<NoWarn>;2008</NoWarn>
|
|
156
|
-
<NoStdLib>true</NoStdLib>
|
|
157
|
-
<DebugType>full</DebugType>
|
|
158
|
-
<PlatformTarget>ARM</PlatformTarget>
|
|
159
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
160
|
-
<ErrorReport>prompt</ErrorReport>
|
|
161
|
-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
162
|
-
</PropertyGroup>
|
|
163
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Development|x64'">
|
|
164
|
-
<DebugSymbols>true</DebugSymbols>
|
|
165
|
-
<OutputPath>bin\x64\Development\</OutputPath>
|
|
166
|
-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
167
|
-
<NoWarn>;2008</NoWarn>
|
|
168
|
-
<NoStdLib>true</NoStdLib>
|
|
169
|
-
<DebugType>full</DebugType>
|
|
170
|
-
<PlatformTarget>x64</PlatformTarget>
|
|
171
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
172
|
-
<ErrorReport>prompt</ErrorReport>
|
|
173
|
-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
174
|
-
</PropertyGroup>
|
|
175
|
-
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
|
176
|
-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
177
|
-
Other similar extension points exist, see Microsoft.Common.targets.
|
|
178
|
-
<Target Name="BeforeBuild">
|
|
179
|
-
</Target>
|
|
180
|
-
<Target Name="AfterBuild">
|
|
181
|
-
</Target>
|
|
182
|
-
-->
|
|
183
|
-
</Project>
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
using Newtonsoft.Json.Linq;
|
|
2
|
-
using ReactNative.Bridge;
|
|
3
|
-
using System;
|
|
4
|
-
using System.Collections.Generic;
|
|
5
|
-
using Windows.ApplicationModel.Core;
|
|
6
|
-
using Windows.ApplicationModel.DataTransfer;
|
|
7
|
-
using Windows.UI.Core;
|
|
8
|
-
|
|
9
|
-
namespace Cl.Json.RNShare
|
|
10
|
-
{
|
|
11
|
-
/// <summary>
|
|
12
|
-
/// A module that allows JS to share data.
|
|
13
|
-
/// </summary>
|
|
14
|
-
class RNShareModule : NativeModuleBase
|
|
15
|
-
{
|
|
16
|
-
private readonly DataTransferManager _dataTransferManager;
|
|
17
|
-
private readonly Queue<RequestData> _queue;
|
|
18
|
-
|
|
19
|
-
/// <summary>
|
|
20
|
-
/// Instantiates the <see cref="RNShareModule"/>.
|
|
21
|
-
/// </summary>
|
|
22
|
-
internal RNShareModule()
|
|
23
|
-
{
|
|
24
|
-
_dataTransferManager = DataTransferManager.GetForCurrentView();
|
|
25
|
-
_dataTransferManager.DataRequested += DataRequested;
|
|
26
|
-
|
|
27
|
-
_queue = new Queue<RequestData>();
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/// <summary>
|
|
31
|
-
/// The name of the native module.
|
|
32
|
-
/// </summary>
|
|
33
|
-
public override string Name
|
|
34
|
-
{
|
|
35
|
-
get
|
|
36
|
-
{
|
|
37
|
-
return "RNShare";
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
/// <summary>
|
|
42
|
-
/// Open Share UI and provide data for sharing.
|
|
43
|
-
/// </summary>
|
|
44
|
-
/// <param name="options"></param>
|
|
45
|
-
[ReactMethod]
|
|
46
|
-
public void open(JObject options, ICallback errorCallback, ICallback successCallback)
|
|
47
|
-
{
|
|
48
|
-
if (options != null)
|
|
49
|
-
{
|
|
50
|
-
var requestData = new RequestData
|
|
51
|
-
{
|
|
52
|
-
Title = options.Value<string>("title"),
|
|
53
|
-
Text = options.Value<string>("share_text"),
|
|
54
|
-
Url = options.Value<string>("share_URL"),
|
|
55
|
-
};
|
|
56
|
-
|
|
57
|
-
if (requestData.Text == null && requestData.Title == null && requestData.Url == null)
|
|
58
|
-
{
|
|
59
|
-
return;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
RunOnDispatcher(() =>
|
|
63
|
-
{
|
|
64
|
-
lock (_queue)
|
|
65
|
-
{
|
|
66
|
-
_queue.Enqueue(requestData);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
try
|
|
70
|
-
{
|
|
71
|
-
DataTransferManager.ShowShareUI();
|
|
72
|
-
successCallback.Invoke("OK");
|
|
73
|
-
}
|
|
74
|
-
catch
|
|
75
|
-
{
|
|
76
|
-
errorCallback.Invoke("not_available");
|
|
77
|
-
}
|
|
78
|
-
});
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
private void DataRequested(DataTransferManager sender, DataRequestedEventArgs e)
|
|
83
|
-
{
|
|
84
|
-
var requestData = default(RequestData);
|
|
85
|
-
lock (_queue)
|
|
86
|
-
{
|
|
87
|
-
requestData = _queue.Dequeue();
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
if (requestData.Title != null)
|
|
91
|
-
{
|
|
92
|
-
e.Request.Data.Properties.Title = requestData.Title;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
if (requestData.Text != null)
|
|
96
|
-
{
|
|
97
|
-
e.Request.Data.SetText(requestData.Text);
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
if (requestData.Url != null)
|
|
101
|
-
{
|
|
102
|
-
e.Request.Data.SetUri(new Uri(requestData.Url));
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
private static async void RunOnDispatcher(DispatchedHandler action)
|
|
107
|
-
{
|
|
108
|
-
await CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(CoreDispatcherPriority.Normal, action);
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
private struct RequestData
|
|
112
|
-
{
|
|
113
|
-
public string Title;
|
|
114
|
-
public string Text;
|
|
115
|
-
public string Url;
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
}
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
using ReactNative.Bridge;
|
|
2
|
-
using ReactNative.Modules.Core;
|
|
3
|
-
using ReactNative.UIManager;
|
|
4
|
-
using System;
|
|
5
|
-
using System.Collections.Generic;
|
|
6
|
-
|
|
7
|
-
namespace Cl.Json.RNShare
|
|
8
|
-
{
|
|
9
|
-
/// <summary>
|
|
10
|
-
/// Package defining core framework modules (e.g., <see cref="UIManagerModule"/>).
|
|
11
|
-
/// It should be used for modules that require special integration with
|
|
12
|
-
/// other framework parts (e.g., with the list of packages to load view
|
|
13
|
-
/// managers from).
|
|
14
|
-
/// </summary>
|
|
15
|
-
public class RNSharePackage : IReactPackage
|
|
16
|
-
{
|
|
17
|
-
/// <summary>
|
|
18
|
-
/// Creates the list of native modules to register with the react
|
|
19
|
-
/// instance.
|
|
20
|
-
/// </summary>
|
|
21
|
-
/// <param name="reactContext">The react application context.</param>
|
|
22
|
-
/// <returns>The list of native modules.</returns>
|
|
23
|
-
public IReadOnlyList<INativeModule> CreateNativeModules(ReactContext reactContext)
|
|
24
|
-
{
|
|
25
|
-
return new List<INativeModule>
|
|
26
|
-
{
|
|
27
|
-
new RNShareModule(),
|
|
28
|
-
};
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
/// <summary>
|
|
32
|
-
/// Creates the list of JavaScript modules to register with the
|
|
33
|
-
/// react instance.
|
|
34
|
-
/// </summary>
|
|
35
|
-
/// <returns>The list of JavaScript modules.</returns>
|
|
36
|
-
public IReadOnlyList<Type> CreateJavaScriptModulesConfig()
|
|
37
|
-
{
|
|
38
|
-
return new List<Type>(0);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
/// <summary>
|
|
42
|
-
/// Creates the list of view managers that should be registered with
|
|
43
|
-
/// the <see cref="UIManagerModule"/>.
|
|
44
|
-
/// </summary>
|
|
45
|
-
/// <param name="reactContext">The react application context.</param>
|
|
46
|
-
/// <returns>The list of view managers.</returns>
|
|
47
|
-
public IReadOnlyList<IViewManager> CreateViewManagers(
|
|
48
|
-
ReactContext reactContext)
|
|
49
|
-
{
|
|
50
|
-
return new List<IViewManager>(0);
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"dependencies": {
|
|
3
|
-
"Microsoft.NETCore.UniversalWindowsPlatform": "5.2.2"
|
|
4
|
-
},
|
|
5
|
-
"frameworks": {
|
|
6
|
-
"uap10.0": {}
|
|
7
|
-
},
|
|
8
|
-
"runtimes": {
|
|
9
|
-
"win10-arm": {},
|
|
10
|
-
"win10-arm-aot": {},
|
|
11
|
-
"win10-x86": {},
|
|
12
|
-
"win10-x86-aot": {},
|
|
13
|
-
"win10-x64": {},
|
|
14
|
-
"win10-x64-aot": {}
|
|
15
|
-
}
|
|
16
|
-
}
|
package/windows/RNShare.sln
DELETED
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
3
|
-
# Visual Studio 14
|
|
4
|
-
VisualStudioVersion = 14.0.25420.1
|
|
5
|
-
MinimumVisualStudioVersion = 10.0.40219.1
|
|
6
|
-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RNShare", "RNShare\RNShare.csproj", "{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}"
|
|
7
|
-
EndProject
|
|
8
|
-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReactNative", "..\node_modules\react-native-windows\ReactWindows\ReactNative\ReactNative.csproj", "{C7673AD5-E3AA-468C-A5FD-FA38154E205C}"
|
|
9
|
-
EndProject
|
|
10
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ChakraBridge", "..\node_modules\react-native-windows\ReactWindows\ChakraBridge\ChakraBridge.vcxproj", "{4B72C796-16D5-4E3A-81C0-3E36F531E578}"
|
|
11
|
-
EndProject
|
|
12
|
-
Global
|
|
13
|
-
GlobalSection(SharedMSBuildProjectFiles) = preSolution
|
|
14
|
-
..\node_modules\react-native-windows\ReactWindows\ReactNative.Shared\ReactNative.Shared.projitems*{c7673ad5-e3aa-468c-a5fd-fa38154e205c}*SharedItemsImports = 4
|
|
15
|
-
EndGlobalSection
|
|
16
|
-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
17
|
-
Debug|ARM = Debug|ARM
|
|
18
|
-
Debug|x64 = Debug|x64
|
|
19
|
-
Debug|x86 = Debug|x86
|
|
20
|
-
Development|ARM = Development|ARM
|
|
21
|
-
Development|x64 = Development|x64
|
|
22
|
-
Development|x86 = Development|x86
|
|
23
|
-
Release|ARM = Release|ARM
|
|
24
|
-
Release|x64 = Release|x64
|
|
25
|
-
Release|x86 = Release|x86
|
|
26
|
-
EndGlobalSection
|
|
27
|
-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
28
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Debug|ARM.ActiveCfg = Debug|ARM
|
|
29
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Debug|ARM.Build.0 = Debug|ARM
|
|
30
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Debug|x64.ActiveCfg = Debug|x64
|
|
31
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Debug|x64.Build.0 = Debug|x64
|
|
32
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Debug|x86.ActiveCfg = Debug|x86
|
|
33
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Debug|x86.Build.0 = Debug|x86
|
|
34
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Development|ARM.ActiveCfg = Development|ARM
|
|
35
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Development|ARM.Build.0 = Development|ARM
|
|
36
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Development|x64.ActiveCfg = Development|x64
|
|
37
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Development|x64.Build.0 = Development|x64
|
|
38
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Development|x86.ActiveCfg = Development|x86
|
|
39
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Development|x86.Build.0 = Development|x86
|
|
40
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Release|ARM.ActiveCfg = Release|ARM
|
|
41
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Release|ARM.Build.0 = Release|ARM
|
|
42
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Release|x64.ActiveCfg = Release|x64
|
|
43
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Release|x64.Build.0 = Release|x64
|
|
44
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Release|x86.ActiveCfg = Release|x86
|
|
45
|
-
{4ACDD44C-E556-423E-BD74-B4CEF3E67FF0}.Release|x86.Build.0 = Release|x86
|
|
46
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Debug|ARM.ActiveCfg = Debug|ARM
|
|
47
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Debug|ARM.Build.0 = Debug|ARM
|
|
48
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Debug|x64.ActiveCfg = Debug|x64
|
|
49
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Debug|x64.Build.0 = Debug|x64
|
|
50
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Debug|x86.ActiveCfg = Debug|x86
|
|
51
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Debug|x86.Build.0 = Debug|x86
|
|
52
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Development|ARM.ActiveCfg = Debug|ARM
|
|
53
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Development|ARM.Build.0 = Debug|ARM
|
|
54
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Development|x64.ActiveCfg = Debug|x64
|
|
55
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Development|x64.Build.0 = Debug|x64
|
|
56
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Development|x86.ActiveCfg = Debug|x86
|
|
57
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Development|x86.Build.0 = Debug|x86
|
|
58
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Release|ARM.ActiveCfg = Release|ARM
|
|
59
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Release|ARM.Build.0 = Release|ARM
|
|
60
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Release|x64.ActiveCfg = Release|x64
|
|
61
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Release|x64.Build.0 = Release|x64
|
|
62
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Release|x86.ActiveCfg = Release|x86
|
|
63
|
-
{C7673AD5-E3AA-468C-A5FD-FA38154E205C}.Release|x86.Build.0 = Release|x86
|
|
64
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Debug|ARM.ActiveCfg = Debug|ARM
|
|
65
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Debug|ARM.Build.0 = Debug|ARM
|
|
66
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Debug|x64.ActiveCfg = Debug|x64
|
|
67
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Debug|x64.Build.0 = Debug|x64
|
|
68
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Debug|x86.ActiveCfg = Debug|Win32
|
|
69
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Debug|x86.Build.0 = Debug|Win32
|
|
70
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Development|ARM.ActiveCfg = Debug|ARM
|
|
71
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Development|ARM.Build.0 = Debug|ARM
|
|
72
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Development|x64.ActiveCfg = Debug|x64
|
|
73
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Development|x64.Build.0 = Debug|x64
|
|
74
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Development|x86.ActiveCfg = Debug|Win32
|
|
75
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Development|x86.Build.0 = Debug|Win32
|
|
76
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Release|ARM.ActiveCfg = Release|ARM
|
|
77
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Release|ARM.Build.0 = Release|ARM
|
|
78
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Release|x64.ActiveCfg = Release|x64
|
|
79
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Release|x64.Build.0 = Release|x64
|
|
80
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Release|x86.ActiveCfg = Release|Win32
|
|
81
|
-
{4B72C796-16D5-4E3A-81C0-3E36F531E578}.Release|x86.Build.0 = Release|Win32
|
|
82
|
-
EndGlobalSection
|
|
83
|
-
GlobalSection(SolutionProperties) = preSolution
|
|
84
|
-
HideSolutionNode = FALSE
|
|
85
|
-
EndGlobalSection
|
|
86
|
-
EndGlobal
|