[Problem]
1. TNINE-4668: Bluetooth item is missing in Settings main menu.
2. TNINE-4715: Wi-Fi and Bluetooth item texts are not showing properly.
[Cause & Measure]
Cause: Resource package destination have been changed from 'res/allowed' to 'res/allowed/<res-type>' from FW side.
Measure: Modified postbuild script accordingly and been built rpk with latest build tools.
Change-Id: I87f30ccb8c39009dae1cbd68671154ce3c65ebb2
Signed-off-by: Azijur Rahman Sheatu <azijur.r@samsung.com>
**/[Dd]ebug/\r
**/[Bb]uild/\r
**/.gn\r
-**/res/allowed/*.dll\r
+**/res/allowed/org.*\r
tags\r
msbuild.log\r
</EmbeddedResource>
</ItemGroup>
+ <PropertyGroup>
+ <GadgetResourceType>org.tizen.appfw.gadget.setting-bluetooth</GadgetResourceType>
+ </PropertyGroup>
+
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
- <Exec Command=":: Copy resource dll
rmdir /S /Q res\allowed\locale
mkdir res\allowed\locale
dir $(OutDir)\
xcopy /S /K /D /H /Y $(OutDir)\ res\allowed\locale
del /q res\allowed\locale\*.*
xcopy /S /K /D /H /Y res\allowed\locale\* res\allowed
rmdir /S /Q res\allowed\locale
" />
+ <Exec Command=":: Copy resource dll
rmdir /S /Q res\allowed\$(GadgetResourceType)
mkdir res\allowed\$(GadgetResourceType)
rmdir /S /Q res\allowed\locale
mkdir res\allowed\locale
dir $(OutDir)\
xcopy /S /K /D /H /Y $(OutDir)\ res\allowed\locale
del /Q res\allowed\locale\*.*
xcopy /S /K /D /H /Y res\allowed\locale\* res\allowed\$(GadgetResourceType)
rmdir /S /Q res\allowed\locale
" />
</Target>
</Project>