fastlane-plugin-android_emulator 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6ae1d26eff6437f47f28af479ac38c7f73e549a8
4
- data.tar.gz: b23b045f89541ecdc445ee78e1dbbdcd7f75e3ce
3
+ metadata.gz: 4abf0fd4e943f5472df569d20e2b0d895fb2f476
4
+ data.tar.gz: d6a543c47f797cfd9b97a269e4da944df14c2ef6
5
5
  SHA512:
6
- metadata.gz: 8ed7317eb7423db1d580c363a6948b7fce3d9d73319c3230cb292eff0e304c6102e2266f2c2f0e5d0b283ca10812775d819392269090eb91e47e83fb819c078a
7
- data.tar.gz: 06c221714b1856cb5cfb19f5d52f1461beabe0fb9d68f7e7ecb8d78b45d148a3e0717bbefe9faa50f46f25e3c59e1b8f8e9a5d9a15b0ebd347ee6e4ea04f4940
6
+ metadata.gz: 939b5ca5cf743f5465ea060e0ea3c8d0650aae5f1536f006c262e7cf664f9a2b2eaa7d3088738040179f2df43e136ebd57e80ac6010e8932bf84f4ea06178e32
7
+ data.tar.gz: 53d80c750a8ad8239718dca4ea55644287a4ffe156d5df01f6dd3dd52fdca348f229a51c61ba093feb8376ca3ea181eac9937e605483be11f0ef47f81ab03bd7
data/README.md CHANGED
@@ -13,6 +13,7 @@ fastlane add_plugin android_emulator
13
13
  ## About android_emulator
14
14
 
15
15
  Creates and starts a new Android Emulator (AVD)
16
+
16
17
  With additional features:
17
18
 
18
19
  * set location
@@ -39,11 +40,12 @@ ENV["AVD_PACKAGE"] = "system-images;android-24;google_apis;x86_64"
39
40
  android_sdk_update(
40
41
  additional_packages: [
41
42
  ENV["AVD_PACKAGE"],
42
- "emulator"]
43
+ "emulator"
44
+ ]
43
45
  )
44
46
 
45
47
  android_emulator(
46
- location: '9.1808 48.7771'
48
+ location: '9.1808 48.7771'
47
49
  )
48
50
  ```
49
51
 
@@ -14,6 +14,7 @@ module Fastlane
14
14
 
15
15
  UI.message("Stopping emulator")
16
16
  system("#{adb} emu kill > /dev/null 2>&1 &")
17
+ sleep(2)
17
18
 
18
19
  UI.message("Creating new emulator")
19
20
  FastlaneCore::CommandExecutor.execute(
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module AndroidEmulator
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-android_emulator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Ruhl