Tag: adobe

“被动”连接“<appname>”访问受保护的服务被拒绝

我正在开发一个灵活的移动iOS应用程序使用空气sdk 15.app冻结,当它显示webview和启动服务器之间的通信。它的工作正常,当我直接部署应用程序通过闪光灯builder.the设备时出错,当我安装创buildipa的应用程序(使用iTunes安装) <Error>: HID: The 'Passive' connection '<appname>' access to protected services is denied. 我已经尝试了很多东西,比如更改ios sdk版本和禁用ANE,但是不工作。 backboardd[28] <Notice>: ALS: SetDisplayFactor: factor=1.0000 backboardd[28] <Notice>: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1 SpringBoard[33] <Warning>: [MPUSystemMediaControls] Enabling lock screen media controls updates for screen turning on. SpringBoard[33] <Warning>: [MPUNowPlayingController] Already registered for now playing notifications. wifid[15] <Notice>: WiFi:[436870521.165025]: Device display is ON […]

StageWebViewDisk中断iPad上的file upload(iOS?)

我正在使用Adobe Air for iPad / iPhone应用程序。 我也使用StageWebViewBridge ( https://github.com/paleozogt/StageWebViewBridge )作为主要的网页内容显示容器。 我的应用程序适用于桌面版本,但StageWebViewBridge的StageWebViewDisk打破了HTMLfile uploadfunction: <input id="user_avatar" name="user[avatar]" style="width:100%" type="file" /> 也就是说,无论何时从真实的iPad设备上浏览并selectTake Photo or Video或Choose Existing的文件,上述user_avatarinput都不会被更新。 我相信有些path被StageWebViewDisk.initialize(stage)弄乱了。 您可以在这里findStageWebViewDisk的完整源代码: https : //github.com/paleozogt/StageWebViewBridge/blob/master/StageWebViewBridge/src/es/xperiments/media/StageWebViewDisk.as 而下面的代码片段是非常可疑的: case isIPHONE : /* new iOS 5.0 Data Storage Guidelines * https://developer.apple.com/icloud/documentation/data-storage/ * https://developer.apple.com/library/ios/#qa/qa1719/_index.html */ _appCacheFile = new File(File.applicationDirectory.nativePath +"/\.\./Library/Caches"); _applicationCacheDirectory = new File( _appCacheFile.nativePath ).url; […]

用cocoapods使用AdobeMobileLibrary(用于iOS)?

我们将使用Omniture-Tracking for iOS,它是AdobeMobileLibrary的一部分。 AdobeAdobeMobileLibrary不可通过cocoapods-repo(仅适用于旧版本的Omniture)提供,但作为静态库,可以从Adobe网站下载。 我想知道是否有可能用cocoapods维护这个静态库? 我创build了一个podspec文件: Pod::Spec.new do |s| s.name = 'AdobeMobileLibrary' s.version = '4.0.2' s.license = 'Commercial' s.summary = 'Adobe Omniture SiteCatalyst analytics library for iOS.' s.homepage = 'https://developer.omniture.com/en_US/content_page/mobile/c-measuring-mobile-applications' s.author = { 'Adobe Omniture SiteCatalyst' => 'http://www.adobe.com/solutions/digital-marketing.html' } s.source_files = 'AdobeMobileLibrary/*.{json,h}' s.ios.vendored_library = 'AdobeMobileLibrary/AdobeMobileLibrary.a' s.library = 'AdobeMobileLibrary' s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/AdobeMobileLibrary"' } […]

如何创build将本机显示浮动窗口的ANE

如何在Xcode中创build本地窗口并将其与Mobile Flex应用程序集成。 本机窗口的行为与StageWebView组件的行为类似,原生内容在Flex应用程序的其余部分的矩形区域中浮动。

在Adobe AIR for iOS中获取唯一标识符(MAC地址,UDID等)

我正在尝试在Android和iOS(iPad 2)的Adobe AIR应用程序中获取用户设备的networking适配器的MAC地址。 在Android中,它可以正常工作,但在iOS中却不行。 这是我正在使用的代码: var vNetworkInterfaces:Vector.<NetworkInterface> = NetworkInfo.networkInfo.findInterfaces(); for each (var networkInterface:NetworkInterface in vNetworkInterfaces) { trace(networkInterface.hardwareAddress); } 这在Android中起作用,但是在iOS中我在运行findInterfaces()时得到了这个: 错误#1009:无法访问空对象引用的属性或方法。 所以看来networkInfo.findInterfaces()没有在iOS中实现。 我试图得到的价值: NetworkInfo.isSupported 而Android的价值是真实的,但在iPad 2中是错误的。所以看起来iOS不支持NetworkInfo iOS中有没有其他方式获得设备的唯一标识符? (它不一定是MAC;我只是想唯一标识用户的设备)