Korean lang support 67/283567/1 accepted/tizen_8.0_unified tizen_8.0 accepted/tizen/8.0/unified/20231005.095749 accepted/tizen/unified/20221116.120935 accepted/tizen/unified/20221116.164448 accepted/tizen/unified/riscv/20231226.211813 tizen_8.0_m2_release
authoreswari <r.palacharla@samsung.com>
Fri, 28 Oct 2022 14:42:02 +0000 (20:12 +0530)
committereswari <r.palacharla@samsung.com>
Fri, 28 Oct 2022 14:42:02 +0000 (20:12 +0530)
Change-Id: I2052c578133065f139a753bc29d62b377f08f542

21 files changed:
.vs/ProjectSettings.json
.vs/VSWorkspaceState.json
.vs/setting-account/DesignTimeBuild/.dtbcache.v2
.vs/setting-account/v16/.suo
.vs/slnx.sqlite
Settings/MainAccount/MainAccount.cs
Settings/MainAccount/MainAccount.csproj
Settings/MainAccount/Models/AccountItems.cs [new file with mode: 0644]
Settings/MainAccount/Models/IAccountManagerAPIs.cs [new file with mode: 0644]
Settings/MainAccount/ViewManager.cs
Settings/MainAccount/res/resx/Accountresource.Designer.cs [new file with mode: 0644]
Settings/MainAccount/res/resx/Accountresource.ko-KR.resx [new file with mode: 0644]
Settings/MainAccount/res/resx/Accountresource.resx [new file with mode: 0644]
Settings/MainAccount/tizen-manifest.xml
Settings/SettingView/SettingView.csproj
Settings/SettingView/tizen-manifest.xml
packaging/org.tizen.SettingView-1.0.1.tpk [deleted file]
packaging/org.tizen.SettingView-1.0.2.tpk [new file with mode: 0644]
packaging/org.tizen.cssetting-account-1.0.1.tpk [deleted file]
packaging/org.tizen.cssetting-account-1.0.2.tpk [new file with mode: 0644]
packaging/org.tizen.cssetting-account.spec

index 0cf5ea5033df16560a10b692341ee93d0ed9f72e..f8b4888565caadc7510be75682268d6c18edd6de 100644 (file)
@@ -1,3 +1,3 @@
 {
-  "CurrentProjectSetting": "No Configurations"
+  "CurrentProjectSetting": null
 }
\ No newline at end of file
index ffd0fbf2cfc6945f839902184d48e076915aaee5..3b493ef9fe86d2b2cdcc935de90c28d9585215dc 100644 (file)
@@ -1,9 +1,9 @@
 {
   "ExpandedNodes": [
     "",
-    "\\SettingsAccount",
-    "\\SettingsAccount\\MainAccount"
+    "\\Settings",
+    "\\Settings\\MainAccount"
   ],
-  "SelectedNode": "\\SettingsAccount\\MainAccount\\tizen-manifest.xml",
+  "SelectedNode": "\\setting-account.sln",
   "PreviewInSolutionExplorer": false
 }
\ No newline at end of file
index 2a513df23e5a081e68817b73b55aabdf8bf136ea..c51a0b4210f0c552cddaabcee0544cea85e9f7b4 100644 (file)
Binary files a/.vs/setting-account/DesignTimeBuild/.dtbcache.v2 and b/.vs/setting-account/DesignTimeBuild/.dtbcache.v2 differ
index 81279ca9a2116897b079bba3b2829975238448a0..4e2fddcd9150b76baa6bc8f4895effa2bb65192a 100644 (file)
Binary files a/.vs/setting-account/v16/.suo and b/.vs/setting-account/v16/.suo differ
index d5a44ae0265274cab292ea783ee0b2268eaaab02..aeb0ebbc52b9f763292811b9c5c8b3dfe8e6b15a 100644 (file)
Binary files a/.vs/slnx.sqlite and b/.vs/slnx.sqlite differ
index 4aba69a4f4c484cc72f07a447173ea94063f74c5..9cd414718c29857dd8016c4b79bae844bb08376b 100644 (file)
@@ -36,7 +36,7 @@ namespace MainAccount
 
         static void Main(string[] args)
         {
-            //Tizen.Log.Info(Resources.LogTag, "Main statrted");
+            //Tizen.Log.Info(Resources.LogTag, "Main started");
             Dictionary<System.Type, string> widgetSet = new Dictionary<Type, string>();
             widgetSet.Add(typeof(SettingWidgetAccount), "account@org.tizen.cssetting-account");
             var app = new Program(widgetSet);
index 1acbf178451c9917cb512676c5e2c1e632db7060..ab48e8b4e1bfbc9a56dca2a4f5e898d8c24853e6 100644 (file)
                <Folder Include="res\theme\" />
        </ItemGroup>
 
-</Project>
+       <ItemGroup>
+         <Compile Update="res\resx\Accountresource.Designer.cs">
+           <DesignTime>True</DesignTime>
+           <AutoGen>True</AutoGen>
+           <DependentUpon>Accountresource.resx</DependentUpon>
+         </Compile>
+       </ItemGroup>
+
+       <ItemGroup>
+         <EmbeddedResource Update="res\resx\Accountresource.ko-KR.resx">
+           <Generator>PublicResXFileCodeGenerator</Generator>
+         </EmbeddedResource>
+         <EmbeddedResource Update="res\resx\Accountresource.resx">
+           <Generator>PublicResXFileCodeGenerator</Generator>
+           <LastGenOutput>Accountresource.Designer.cs</LastGenOutput>
+         </EmbeddedResource>
+       </ItemGroup>
 
+</Project>
\ No newline at end of file
diff --git a/Settings/MainAccount/Models/AccountItems.cs b/Settings/MainAccount/Models/AccountItems.cs
new file mode 100644 (file)
index 0000000..5afbba8
--- /dev/null
@@ -0,0 +1,10 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace MainAccount.Models
+{
+    class AccountItems
+    {
+    }
+}
diff --git a/Settings/MainAccount/Models/IAccountManagerAPIs.cs b/Settings/MainAccount/Models/IAccountManagerAPIs.cs
new file mode 100644 (file)
index 0000000..c2e61bd
--- /dev/null
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Threading.Tasks;
+using Tizen.Account.AccountManager;
+
+namespace MainAccount.Models
+{
+    class IAccountManagerAPIs
+    {
+        public interface AccountAPIs
+        {
+            public string name { get; set; }
+
+            int AccountAdd(AccountItems name);
+
+
+        }
+    }
+}
index b791c73718abd32c5abc6bbeb983a8557f06559b..79d5abe290721c900a2be6c5b56d915998088ddc 100644 (file)
@@ -51,8 +51,8 @@ namespace MainAccount
                CloseAccount();
             };
             appBar.NavigationContent = navigationContent;
-            RelativeLayout.SetLeftTarget(appBar.NavigationContent, appBar);
-            RelativeLayout.SetLeftRelativeOffset(appBar.NavigationContent, 0.0f);
+            //RelativeLayout.SetLeftTarget(appBar.NavigationContent, appBar);
+            //RelativeLayout.SetLeftRelativeOffset(appBar.NavigationContent, 0.0f);
             RelativeLayout.SetVerticalAlignment(appBar.NavigationContent, RelativeLayout.Alignment.Center);
             appBarStyle.Dispose();
 
@@ -75,7 +75,7 @@ namespace MainAccount
             RelativeLayout.SetLeftRelativeOffset(appBar.ActionContent, 1.0f);
             RelativeLayout.SetVerticalAlignment(appBar.ActionContent, RelativeLayout.Alignment.Center);
            */
-            TextLabel titleContent = new TextLabel("Accounts")
+            TextLabel titlecontent = new TextLabel(res.resx.Accountresource.Accounts)
             {
                 WidthSpecification = Window.Instance.Size.Width - 175.SpToPx(),
                 PixelSize = 40.SpToPx(),
@@ -83,10 +83,11 @@ namespace MainAccount
 
                 //FontStyle = Resources.FontStyleAllNormal,
             };
-            appBar.TitleContent = titleContent;
+            appBar.TitleContent = titlecontent;
             RelativeLayout.SetLeftTarget(appBar.TitleContent, appBar.NavigationContent);
             RelativeLayout.SetLeftRelativeOffset(appBar.TitleContent, 1.0f);
             RelativeLayout.SetVerticalAlignment(appBar.TitleContent, RelativeLayout.Alignment.Center);
+            RelativeLayout.SetFillHorizontal(appBar.TitleContent, true);
         }
 
         private void CloseAccount()
@@ -117,14 +118,14 @@ namespace MainAccount
                     VerticalAlignment = VerticalAlignment.Center,
                     TextColor = Color.Black,
                     PointSize = 15.0f,
-                    Text = "Account provider not available",
+                    Text = res.resx.Accountresource.Account_provider_not_available,
+                    //Text = "Account provider not available",
                     HeightResizePolicy = ResizePolicyType.FillToParent,
                     WidthResizePolicy = ResizePolicyType.FillToParent,
                 }
             };
         }
 
-
         public void UpdateView()
         {
             Tizen.Log.Info("TESTAPP", "UpdateVIew");
@@ -132,5 +133,5 @@ namespace MainAccount
             contentPage.Size2D = new Size2D(Window.Instance.Size.Width, Window.Instance.Size.Height);
             appBar.TitleContent.WidthSpecification = Window.Instance.Size.Width - 175.SpToPx();
         }
-    }   
+    }
 }
\ No newline at end of file
diff --git a/Settings/MainAccount/res/resx/Accountresource.Designer.cs b/Settings/MainAccount/res/resx/Accountresource.Designer.cs
new file mode 100644 (file)
index 0000000..9889d56
--- /dev/null
@@ -0,0 +1,81 @@
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     This code was generated by a tool.
+//     Runtime Version:4.0.30319.42000
+//
+//     Changes to this file may cause incorrect behavior and will be lost if
+//     the code is regenerated.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+namespace MainAccount.res.resx {
+    using System;
+    
+    
+    /// <summary>
+    ///   A strongly-typed resource class, for looking up localized strings, etc.
+    /// </summary>
+    // This class was auto-generated by the StronglyTypedResourceBuilder
+    // class via a tool like ResGen or Visual Studio.
+    // To add or remove a member, edit your .ResX file then rerun ResGen
+    // with the /str option, or rebuild your VS project.
+    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+    public class Accountresource {
+        
+        private static global::System.Resources.ResourceManager resourceMan;
+        
+        private static global::System.Globalization.CultureInfo resourceCulture;
+        
+        [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+        internal Accountresource() {
+        }
+        
+        /// <summary>
+        ///   Returns the cached ResourceManager instance used by this class.
+        /// </summary>
+        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+        public static global::System.Resources.ResourceManager ResourceManager {
+            get {
+                if (object.ReferenceEquals(resourceMan, null)) {
+                    global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MainAccount.res.resx.Accountresource", typeof(Accountresource).Assembly);
+                    resourceMan = temp;
+                }
+                return resourceMan;
+            }
+        }
+        
+        /// <summary>
+        ///   Overrides the current thread's CurrentUICulture property for all
+        ///   resource lookups using this strongly typed resource class.
+        /// </summary>
+        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+        public static global::System.Globalization.CultureInfo Culture {
+            get {
+                return resourceCulture;
+            }
+            set {
+                resourceCulture = value;
+            }
+        }
+        
+        /// <summary>
+        ///   Looks up a localized string similar to Account provider not available.
+        /// </summary>
+        public static string Account_provider_not_available {
+            get {
+                return ResourceManager.GetString("Account provider not available", resourceCulture);
+            }
+        }
+        
+        /// <summary>
+        ///   Looks up a localized string similar to Accounts.
+        /// </summary>
+        public static string Accounts {
+            get {
+                return ResourceManager.GetString("Accounts", resourceCulture);
+            }
+        }
+    }
+}
\ No newline at end of file
diff --git a/Settings/MainAccount/res/resx/Accountresource.ko-KR.resx b/Settings/MainAccount/res/resx/Accountresource.ko-KR.resx
new file mode 100644 (file)
index 0000000..8bf3adf
--- /dev/null
@@ -0,0 +1,128 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 2.0
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">2.0</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+        <comment>This is a comment</comment>
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used for serialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="metadata">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
+              </xsd:sequence>
+              <xsd:attribute name="name" use="required" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="assembly">
+            <xsd:complexType>
+              <xsd:attribute name="alias" type="xsd:string" />
+              <xsd:attribute name="name" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>2.0</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <data name="Account provider not available" xml:space="preserve">
+    <value>계정 공급자를 사용할 수 없음</value>
+    <comment>Description</comment>
+  </data>
+  <data name="Accounts" xml:space="preserve">
+    <value>계정</value>
+    <comment>Title</comment>
+  </data>
+</root>
\ No newline at end of file
diff --git a/Settings/MainAccount/res/resx/Accountresource.resx b/Settings/MainAccount/res/resx/Accountresource.resx
new file mode 100644 (file)
index 0000000..4498faf
--- /dev/null
@@ -0,0 +1,128 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 2.0
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">2.0</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+        <comment>This is a comment</comment>
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used for serialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="metadata">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
+              </xsd:sequence>
+              <xsd:attribute name="name" use="required" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="assembly">
+            <xsd:complexType>
+              <xsd:attribute name="alias" type="xsd:string" />
+              <xsd:attribute name="name" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>2.0</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <data name="Account provider not available" xml:space="preserve">
+    <value>Account provider not available</value>
+    <comment>Description</comment>
+  </data>
+  <data name="Accounts" xml:space="preserve">
+    <value>Accounts</value>
+    <comment>Title of project</comment>
+  </data>
+</root>
\ No newline at end of file
index 612754842fbd1ed444b57bb18a5c6c456706f0ad..1051c10aad77ca55429d888b0480bb8e835aa049 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns="http://tizen.org/ns/packages" api-version="7" package="org.tizen.cssetting-account" version="1.0.1">
+<manifest xmlns="http://tizen.org/ns/packages" api-version="7" package="org.tizen.cssetting-account" version="1.0.2">
        <profile name="common" />
        <widget-application appid="org.tizen.cssetting-account" exec="MainAccount.dll" type="dotnet" multiple="false" taskmanage="true" nodisplay="false" launch_mode="single">
                <icon>MainAccount.png</icon>
index 1acbf178451c9917cb512676c5e2c1e632db7060..cc6e5bf7318049538223309c1b15b3d0d070f22b 100644 (file)
@@ -29,5 +29,4 @@
                <Folder Include="res\theme\" />
        </ItemGroup>
 
-</Project>
-
+</Project>
\ No newline at end of file
index c84b75cc1301055de700f4410b22550f6bbf3b6e..9e27754242313a6d29be374294b37f442e4e602a 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns="http://tizen.org/ns/packages" api-version="7" package="org.tizen.SettingView" version="1.0.1">
+<manifest xmlns="http://tizen.org/ns/packages" api-version="7" package="org.tizen.SettingView" version="1.0.2">
   <profile name="common" />
   <ui-application appid="org.tizen.SettingView" exec="SettingView.dll" type="dotnet" multiple="false" taskmanage="true" nodisplay="false" launch_mode="single">
     <icon>SettingView.png</icon>
diff --git a/packaging/org.tizen.SettingView-1.0.1.tpk b/packaging/org.tizen.SettingView-1.0.1.tpk
deleted file mode 100644 (file)
index 9a984d3..0000000
Binary files a/packaging/org.tizen.SettingView-1.0.1.tpk and /dev/null differ
diff --git a/packaging/org.tizen.SettingView-1.0.2.tpk b/packaging/org.tizen.SettingView-1.0.2.tpk
new file mode 100644 (file)
index 0000000..2d2e66a
Binary files /dev/null and b/packaging/org.tizen.SettingView-1.0.2.tpk differ
diff --git a/packaging/org.tizen.cssetting-account-1.0.1.tpk b/packaging/org.tizen.cssetting-account-1.0.1.tpk
deleted file mode 100644 (file)
index ca8f947..0000000
Binary files a/packaging/org.tizen.cssetting-account-1.0.1.tpk and /dev/null differ
diff --git a/packaging/org.tizen.cssetting-account-1.0.2.tpk b/packaging/org.tizen.cssetting-account-1.0.2.tpk
new file mode 100644 (file)
index 0000000..2b0cd0f
Binary files /dev/null and b/packaging/org.tizen.cssetting-account-1.0.2.tpk differ
index 839bccdb8d849540f5ccf384f42c7a8108cd751c..50236ca17ff2a03e5e2012e9d53ade76fac1f975 100644 (file)
@@ -1,6 +1,6 @@
 Name:       org.tizen.cssetting-account
 Summary:    org.tizen.cssetting-account
-Version:    1.0.1
+Version:    1.0.2
 Release:    1
 Group:      N/A
 License:    Apache-2.0