added ExcludeArch statement
authorYounho Park <younho.park@samsung.com>
Thu, 15 Dec 2016 00:31:12 +0000 (09:31 +0900)
committerYounho Park <younho.park@samsung.com>
Thu, 15 Dec 2016 01:04:28 +0000 (10:04 +0900)
- modified wrong class name

Change-Id: I1adb59ddeb26bfd1dc954c3168bef88709dad36c
Signed-off-by: Younho Park <younho.park@samsung.com>
packaging/csapi-account-manager.spec [changed mode: 0755->0644]
src/Tizen.Account.AccountManager/Tizen.Account.AccountManager.Net45.csproj
src/Tizen.Account.AccountManager/Tizen.Account.AccountManager.csproj
src/Tizen.Account.AccountManager/Tizen.Account.AccountManager/AccountService.cs
src/Tizen.Account.AccountManager/Tizen.Account.AccountManager/AccountSubscriberEventArgs.cs [moved from src/Tizen.Account.AccountManager/Tizen.Account.AccountManager/AccountSucriberEventArgs.cs with 94% similarity]

old mode 100755 (executable)
new mode 100644 (file)
index 5577314..0c12d25
@@ -8,7 +8,7 @@
 
 Name:       csapi-account-manager
 Summary:    Tizen account manager API for C#
-Version:    1.0.1
+Version:    1.0.2
 Release:    1
 Group:      Development/Libraries
 License:    Apache-2.0
@@ -17,6 +17,7 @@ Source0:    %{name}-%{version}.tar.gz
 Source1:    %{name}.manifest
 
 AutoReqProv: no
+ExcludeArch: %{ix86} aarch64
 
 BuildRequires: mono-compiler
 BuildRequires: mono-devel
index 659ca68..787cfc1 100644 (file)
@@ -50,7 +50,7 @@
     <Compile Include="Tizen.Account.AccountManager\AccountErrorFactory.cs" />
     <Compile Include="Tizen.Account.AccountManager\AccountService.cs" />
     <Compile Include="Tizen.Account.AccountManager\AccountProvider.cs" />
-    <Compile Include="Tizen.Account.AccountManager\AccountSucriberEventArgs.cs" />
+    <Compile Include="Tizen.Account.AccountManager\AccountSubscriberEventArgs.cs" />
   </ItemGroup>
   <ItemGroup>
     <None Include="Tizen.Account.AccountManager.snk" />
index 6a54d6c..69e059f 100644 (file)
@@ -63,7 +63,7 @@
     <Compile Include="Tizen.Account.AccountManager\AccountErrorFactory.cs" />
     <Compile Include="Tizen.Account.AccountManager\AccountService.cs" />
     <Compile Include="Tizen.Account.AccountManager\AccountProvider.cs" />
-    <Compile Include="Tizen.Account.AccountManager\AccountSucriberEventArgs.cs" />
+    <Compile Include="Tizen.Account.AccountManager\AccountSubscriberEventArgs.cs" />
   </ItemGroup>
   <ItemGroup />
   <Import Project="$(MSBuildExtensionsPath)\Tizen\Tizen.CSharp.GBS.targets" Condition="Exists('$(MSBuildExtensionsPath)\Tizen\Tizen.CSharp.GBS.targets')" />
index 4f3f3ae..368bb54 100644 (file)
@@ -518,14 +518,14 @@ namespace Tizen.Account.AccountManager
 
         private static readonly Interop.AccountService.SubscribeCallback s_accountUpdatedCallback = (string eventType, int accountId, IntPtr userData) =>
         {
-            AccountSucriberEventArgs eventArgs = new AccountSucriberEventArgs(eventType, accountId);
+            AccountSubscriberEventArgs eventArgs = new AccountSubscriberEventArgs(eventType, accountId);
             s_accountUpdated?.Invoke(null, eventArgs);
             return true;
         };
 
         private static Interop.AccountService.SafeAccountSubscriberHandle s_subscriberHandle;
 
-        private static event EventHandler<AccountSucriberEventArgs> s_accountUpdated;
+        private static event EventHandler<AccountSubscriberEventArgs> s_accountUpdated;
         /// <summary>
         /// ContentUpdated event is triggered when the media item info from DB changes.
         /// </summary>
@@ -538,7 +538,7 @@ namespace Tizen.Account.AccountManager
         /// <exception cref="InvalidOperationException">In case of any DB error </exception>
         /// <exception cref="ArgumentException"> In case of invalid parameter</exception>
         /// <exception cref="UnauthorizedAccessException"> In case of privilege not defined.</exception>
-        public static event EventHandler<AccountSucriberEventArgs> AccountUpdated
+        public static event EventHandler<AccountSubscriberEventArgs> AccountUpdated
         {
             add
             {
@@ -21,13 +21,13 @@ namespace Tizen.Account.AccountManager
     /// <summary>
     /// Event arguments passed when Event is triggered to notify that account is updated/removed from the account database.
     /// </summary>
-    public class AccountSucriberEventArgs : EventArgs
+    public class AccountSubscriberEventArgs : EventArgs
     {
         private const string NotiInsert = "insert";
         private const string NotiDelete = "delete";
         private const string NotiUpdate = "update";
         private const string NotiSyncUpdate = "sync_update";
-        internal AccountSucriberEventArgs(string eventType, int accountId)
+        internal AccountSubscriberEventArgs(string eventType, int accountId)
         {
             if (eventType.CompareTo(NotiInsert) == 0)
             {