ripple

Multi-Device Hybrid Apps for Visual Studio: ripple emulator doesn't start after the build

杀马特。学长 韩版系。学妹 提交于 2019-12-08 11:52:18
问题 I try to build a empty project with target platform Ripple (Galaxy)/Android and but when finish the build Visual Studio open Chrome with address http://localhost:4400/___vs_to_ripple___/index.html?_enableripple=cordova-3.0.0-NexusGalaxy without run the ripple emulator, of course I get an error. Do I must set some environment variable? Thanks in advance below my output window 1>------ Inizio compilazione: Progetto: BlankCordovaApp1, Configurazione: Debug Android ------ 1>C:\Program Files (x86)

“Unable to attach. The System cannot find the file specified” from Ripple and Android emulator in VS

梦想的初衷 提交于 2019-12-08 09:01:43
问题 I am trying to build cardova project in VS while doing so i am getting a dialogue "Unable to attach. The System cannot find the file specified" while trying to run the application in ripple emulator and also getting error in the console as " A required web socket component is missing. Please refer to the documentation at http://go.microsoft.com/fwlink/?LinkID=403596. " I have installed VS in my system drive and also copied WebSocket4Net.dll file to its location C:\Program Files\Microsoft

Ripple Emulator doesn't fire events

徘徊边缘 提交于 2019-12-08 00:10:47
问题 I have newest Ripple Emulator installed (newest available in Chrome Store) and everything works just fine, except events. None of them fires (not only deviceready as in some other SO question, none). Neither manually (using Events pane) nor automatically ( deviceready ) fired. When I use manual method, Ripple writes a line to the console, that it is firing an event, but nothing actually happens. My application does not react at all. I have backbutton event bind and it is not working in Ripple

Ripple effect in pressed state + transparency in normal state

六月ゝ 毕业季﹏ 提交于 2019-12-06 07:05:15
问题 I would like the ImageView in the ViewGroup, when pressed, draws the ripple and this is working ! But when the ViewGroup is pressed, the ImageView inside it, should remain transparent otherwise the ImageView background is visible: (that color alpha-orange, you actually see, is the ripple when pressed). This happens only with devices API 21+. With devices API <21 I use a selector and the image background remains transparent as wanted when the ViewGroup is pressed. layout.xml <LinearLayout

Is it able to test PhoneGap File API with Ripple emulator

牧云@^-^@ 提交于 2019-12-06 02:25:49
问题 I am working on an application with PhoneGap (now Apache Cordova, with the version of 2.0), and using the PhoneGap File API to write file. The File API I use could be referenced at: http://docs.phonegap.com/en/2.0.0/cordova_file_file.md.html#File I use Ripple Emulator (0.9.9beta) from here: https://developer.blackberry.com/html5/download to test my application in chrome. But I find Ripple could not handle the PhoneGap File API correctly. For example: I want to create a file (root/foo.json) at

Unable to get launched browser process for Ripple

坚强是说给别人听的谎言 提交于 2019-12-05 18:10:44
问题 When I create new mobile application in visual studio, I can run it and no problems happen. But when I start running another application (created by other developer, and shared on TFS), I got the following messages: Unable to get launched browser process for Ripple. Unable to get Ripple session info for port 0. No build errors or warnings! just 2 messages!! Any idea? My environment: Visual studio 2013 community edition (with Update 4) Windows 7, x64 * EDIT: It worked by right-clicking project

not able to use facebook plugin with ripple emulator

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-05 07:34:51
I am trying to run facebook plugin 'SIMPLE example' using ripple emulator. I already included the facebook_js_sdk.js and cdv_plgin.js and cardova.js. config.xml is as follow. <plugin name="org.apache.cordova.facebook.Connect value="org.apache.cordova.facebook.ConnectPlugin"/> <gap:plugin name="FacebookConnect"> <param name="APP_ID" value="xxx" /> <param name="APP_NAME" value="app" /> </gap:plugin> I am getting error org.apache.cordova.facebook.Connect.getLoginStatus We seem to be missing some stuff :( What is kinda cool though you can fill in the textarea to pass a json object to the callback

区块链在金融领域的应用案例

谁说胖子不能爱 提交于 2019-12-05 03:00:39
区块链这一颠覆性的技术作为当下多种热门概念的交集,将在可预见的未来深刻地影响包括金融业在内的多个行业,制造跨领 域合作的机会,提高资源配置效率,助力产业转型升级。对区块链技术的积极应对或是被动接受,也将导致各行业内部的重新洗牌。在金融领域,区块链提供了一个 全新的视野来俯瞰各类传统金融业务,区块链将成为金融领域的技术重构者、业务重构者以及金融生态重构者。 案例一:布比等公司尝试区块链进行股权登记转让与清算结算 目前,证券的登记、清算和结算涉及多个主体,如图4-7所示的传统股权交易过程涉及中介机构、托管机构、第三方支 付平台、公证人、银行等,交易过程需要经过层层中介传递信息,再经权威机构公证方可完成。中间需要大量人工处理纸质材料信息,这样容易出错,交易效率低下 且交易成本较高。因为一方面,各个机构依赖于本身的IT系统和工作流程,往往需要多方进行数据的反复沟通、核对和发送等,效率较低;另一方面,中心化的系 统容易遭受攻击,对安全性投入要求非常高。 图4-7 证券交易结算流程 区块链的共享、可信、可追溯的特点在清算结算等领域具备显著的优势: (1)区块链是一个共享式的公共账本,可打通不同的系统,从而提升沟通效率,降低成本。 (2)区块链实现交易的时候,基于区块链网络的共识机制实际上可以同时实现清算和结算,这显然比许多交易所的T+1,甚至T+N效率更高。 (3

Why does including this module not override a dynamically-generated method?

雨燕双飞 提交于 2019-12-04 23:45:10
问题 I'm trying to override a dynamically-generated method by including a module. In the example below, a Ripple association adds a rows= method to Table. I want to call that method, but also do some additional stuff afterwards. I created a module to override the method, thinking that the module's row= would be able to call super to use the existing method. class Table # Ripple association - creates rows= method many :rows, :class_name => Table::Row # Hacky first attempt to use the dynamically

How to build apache cordova project from command line?

删除回忆录丶 提交于 2019-12-04 18:27:09
问题 I've setup apache cordova on my Windows/Cygwin platform. I can create project using the command - cordova create <app_name> . I have added android platform using the command - cordova platform add android I can run the sample 'html/css/js' using cordova ripple android . I can upload the project to build.phonegap and get the .apk file. I know from docs that I can setup eclipse and do the build. (I'm not looking for this) But I cannot create .apk file using the command cordova build android .