LoginSignup
0
0

More than 5 years have passed since last update.

calabash android on windows

Posted at

install

install ruby

Install ruby runtime from https://rubyinstaller.org/.
I installed ruby 2.4.1 x64 and msys2 with dev kit.

install ansicon

Download archive from below URL.
https://github.com/adoxa/ansicon/downloads

And extract it. Then move to x64 dir in extract dir and type below command to automatically start ansicon.

$ ansicon.exe -i

install bundler

$ gem install bundler

run

prepare calabash

Make Gemfile in Android project root as below.

# Contents of Gemfile
source "https://rubygems.org"

gem 'calabash-android'
gem 'cucumber'

And run bundle install command

$ bundle install

sign apk

$ bundle exec calabash-android resign ${apk_path}

run

bundle exec calabash-android run ${apk_path}

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0