Not to able make run apple tv app in real device - tvos

I am facing problem when trying to run an Apple TV application on the real device. It is working perfectly when I run it in simulator but when I try to run the same code on the real device I receive the following error: "appTV[161:4731] Failed to load "
No idea why it is showing like this .
Thanks in advance.

Yea, it seems an issue of certificate than code. It works fine for us.

Are you sure you are using the latest Apple TV? It should work with the USB C cable. One way to test is to make a beta release and install it with TestFlight.

Related

Agora.io: android.permission.CAMERA not compatible with Oculus device

I'm developing an VR Video Chat application using Agora.io api and Unity3D Engine, in which a main user streams his webcam from a standalone Pc to users equippped with an Oculus device.
As soon as I try to upload the VR app to the Oculus Server, I got that error:
This app uses permission(s) that are not compatible with this device: android.permission.CAMERA.
How do I overcome that issue?
Any suggestions?
I haven't programmed for Oculus yet but here are some ideas:
First you may try just to set android:required=“false” in the manifest to see what happens?
Secondly check the official Oculus documentation here to see if helps? https://developer.oculus.com/blog/tech-note-android-plugins-and-permissions/?locale=en_US
"You will need to modify your Android Manifest file. Because the Oculus Quest doesn’t have cameras (well, none that can be used for this demo) we will get rid of the camera use requirement ( ) located on line 9 in the folder Assets/Plugins/Android/AgoraRtcEngineKit.plugin "
This is a quote from this quick start tutorial which will get you up and running with Agora.io Video chat and Oculus Quest. It explains how to stream your webcam from a standalone PC to Oculus Quest. https://medium.com/#jake_agora.io/live-realtime-video-to-vr-oculus-quest-6bbb74e4fc63
Just in case anyone else falls into this. The solution posted where you remove the entry from the Agora included manifest doesn't work anymore, and I can't identify where its being added from, perhaps Agora can post a solution. The only way around it is to export from Unity, edit the Manifest to remove the unwanted camera permissions and then build in Android Studio.

Adobe AIR After Build Issue

I created a Desktop AIR in Adobe Animate CC 2017 with AIR 23, when Test everything works, after Build in my pc everything works, when test to VirtualBox (Application with runtime embedded) it run but some features like buttons events and url events doesn't works, what is problem?
After review codes and test for many times i found correct issue, when a hidden runtime error occurred some related part doesn't works properly, I used try() catch() for handle errors and external video playback instead embedded, now build works on other computers without problem.

as3 worker message issue

I found this example on as3 worker: http://esdot.ca/site/2012/intro-to-as3-workers-part-2-image-processing
it works great on air 3.4 but with greater versions it stops working, no error, or message. how to fix this?
and are there other example on image prcessing working with newer APis.
regards
There is an issue with the WorkersAPI when ran on ADL (Android Debug Launcher)
Kindly check my recent post
AS3 using Workers
fount it, the air20 package does not debug on this installation, I linked the airglobal.swc to debug this version.
one more issue: when I'm init the worker outside of the main constructor... nothing happens. why? I found no information on this...

3dr quadcopter cannot take off by using Dronekit-Android example code

I'm a starter by using Dronekit and Android. When I download the example on Github and run it on my Android phone, it can be connected to my 3dr quadcopter successfully however, it won't take off. I would appreciate if somebody would like to help me. Thanks a lot.
Connect to the quadcopter using a different ground control station and try to arm it. Everything sends the same arming and takeoff commands, so it's probably safe to assume that those GCSs will also fail. But they should give you a reason for failure. Once you know the reason, you can google the specific error message.

Using GCController with tvOS Simulator

I don't have a new Apple TV, but am working on prototyping a game for it using the simulator. Unfortunately, I can't seem to get GCController to list the Siri remote as an available controller, as the tvOS docs indicate. My list of controllers is always 0 elements long, even if I call startWirelessControllerDiscoveryWithCompletionHandler().
Does anyone have any suggestion or sample code for getting input from the Siri remote?
The current version of the tvOS simulator apparently does not support this functionality. I was able to try my code on a friend's dev kit, and it registered the remote as a Game Controller as expected. For now, the answer appears to be "use real hardware" or "wait for an updated to the tvOS simulator".
You might take a look at https://github.com/csgulley/AppleTVSimulatorController. It is an implementation of Game Controller that I wrote to allow testing with the Apple TV simulator.