Hi Chris,
This is the exact things I did.
I created a new project using the following step:
fuse create app sample
Then I copied the following code to MainView.ux
<App>
<DockPanel>
<StatusBarBackground Dock="Top" />
<ScrollView ClipToBounds="true">
<StackPanel>
<Text FontSize="30">Hello, world!</Text>
<Slider />
<Button Text="Button" />
<Switch Alignment="Left" />
</StackPanel>
</ScrollView>
</DockPanel>
</App>
I tried to run the project using the following comment:
fuse build --target=android --run
it was showing the error
ERROR: supportv4.jar was not found. Please run 'fuse install android' in your shell and then restart your build
So I tried to run using gradle with following command:
fuse preview -t=android Sample -DGRADLE
but it again throwing the error:
/Users/unnikrishnan.b/Documents/workarea/sample/build/Android/Preview/sample/app/build/intermediates/res/merged/arm7/debug/values-v24/values-v24.xml:3: AAPT: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Borderless.Colored'.
/Users/unnikrishnan.b/Documents/workarea/sample/build/Android/Preview/sample/app/build/intermediates/res/merged/arm7/debug/values-v24/values-v24.xml:4: AAPT: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Colored'.
FAILURE: Build failed with an exception.
/* What went wrong: Execution failed for task ':app:processArm7DebugResources'. \> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/Users/unnikrishnan.b/Library/Android/sdk/build-tools/23.0.1/aapt'' finished with non-zero exit value 1
/* Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
Could you please look into this issue.
Thanks,