fastlane-plugin-appicon 0.12.0 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1d837a5eb5f97a04836ee13f22602e2d611ad0c
|
|
4
|
+
data.tar.gz: b538ce5bcc2644864b86ca97111908f1e8fcb778
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f8c1c0c24632050a09dd46cd161350fa7d88129a9586b3ced292172ca3ea25ff19d1b0b3bce4473a76272594da1b8c20468ce16e659f8a50a29d5c4605383b08
|
|
7
|
+
data.tar.gz: a4a6d9064eaaeb7f08b003b524a56844e382e4c2ff13cc2c9d140fd1dd6d93e7afdda9dbf1a409e2afb6f72a4e71fb3acf1d329468ef2da31da44e866137169a
|
data/README.md
CHANGED
|
@@ -12,6 +12,12 @@ This project is a [fastlane](https://github.com/fastlane/fastlane) plugin. To ge
|
|
|
12
12
|
fastlane add_plugin appicon
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
+
Please note that this plugin uses the GraphicsMagick library. If you do not have it, you can install it via Homebrew:
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
brew install graphicsmagick
|
|
19
|
+
```
|
|
20
|
+
|
|
15
21
|
## About appicon
|
|
16
22
|
|
|
17
23
|
Generate required icon sizes and iconset from a master application icon.
|
|
@@ -56,7 +62,7 @@ lane :android do
|
|
|
56
62
|
appicon_image_file: 'spec/fixtures/ThemojiNotification.png',
|
|
57
63
|
appicon_icon_types: [:notification],
|
|
58
64
|
appicon_path: 'app/res/drawable',
|
|
59
|
-
|
|
65
|
+
appicon_filename: 'ic_notification'
|
|
60
66
|
)
|
|
61
67
|
end
|
|
62
68
|
```
|
|
@@ -84,7 +84,7 @@ module Fastlane
|
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
require 'json'
|
|
87
|
-
File.write(File.join(basepath, 'Contents.json'), JSON.
|
|
87
|
+
File.write(File.join(basepath, 'Contents.json'), JSON.pretty_generate(contents))
|
|
88
88
|
UI.success("Successfully stored app icon at '#{basepath}'")
|
|
89
89
|
end
|
|
90
90
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-appicon
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Boris Bügling
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-01
|
|
11
|
+
date: 2018-05-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mini_magick
|