fastlane-plugin-amazon_app_submission 0.2.0 → 0.2.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
  SHA256:
3
- metadata.gz: 91d110e787d9b378a8ee45632bc6437a3527c373be5e20a3af723fed43e71737
4
- data.tar.gz: eb8965c6f69a51b561dd42bcda3775f531597118bcd978ecb1832a67bc9402b4
3
+ metadata.gz: 4d6b0ca6817ddc895e42435402ee7de0131598c86f6f26d7ce577611457235cf
4
+ data.tar.gz: 69e525141edf1f0fc2daba3ef049dde65d2efc74bd6da09d1e29cae06534dda7
5
5
  SHA512:
6
- metadata.gz: d38c40afad80cde84cd62c6a2a25b166f4ff56963072325638ca1bf720f417a0ad2d397f3c8d8384986f9cc9aa075e05948a45f2585f5157dc569582342aeebe
7
- data.tar.gz: bc499eda4df532380def700a045bbb186a80cf7a5c6a91232698301ac2671ad29d68ad9e05b8ccec4d264351488af704fe765796e51d27f98c053a0e3ae7a213
6
+ metadata.gz: d894abef62b67aaa63a8d08eb17e90e45f97505d52d8e5ed14b54dcab4c0a4ee38c5b50a1e7d76fb1ed15faa92dbcc4788ad784f37ab046623c8d5ad30e26687
7
+ data.tar.gz: ca1ae61153f9816f8d633e09d52448e961886ecfb6b0053232f679f8e41a048107072102daf06457c9d1c42fd3b8bdd1fe86bb2e89362f712c74caed2cb2dd95
data/README.md CHANGED
@@ -1 +1,39 @@
1
- # amazon-app-store-submission
1
+ # amazon-app-store-submission
2
+
3
+ ## Getting Started
4
+
5
+ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `amazon-app-store-submission`, add it to your project by running:
6
+
7
+ ```bash
8
+ fastlane add_plugin amazon-app-store-submission
9
+ ```
10
+
11
+ ## About amazon_appstore
12
+
13
+ Upload the apk to the Amazon Appstore using the [App Submission API](https://developer.amazon.com/docs/app-submission-api/overview.html).
14
+ * App Submission API Reference is [App Submission RESTFUL API](https://developer.amazon.com/docs/app-submission-api/appsub-api-ref.html).
15
+
16
+ ## Usage
17
+
18
+ Following the [guide](https://developer.amazon.com/docs/app-submission-api/auth.html), you will need to generate `client_id` and `client_secret` to access the console in advance.
19
+
20
+ For `app_id` you can get it from Amazon app dashboard
21
+ Please set the apk path to `apk_path` field
22
+
23
+ Call `amazon_app_submission` in your Fastfile.
24
+
25
+ ```ruby
26
+ amazon_app_submission(
27
+ client_id: "<CLIENT_ID>",
28
+ client_secret: "<CLIENT_SECRET>",
29
+ app_id: "<APP_ID>",
30
+ apk_path: "<APK_PATH>"
31
+ )
32
+ ```
33
+
34
+ ## Testing
35
+
36
+ For testing the plugin locally you have to get `client_id`, `client_secret`, `app_id` and `apk_path` in fastlane/Fastfile
37
+ please check Usage step to see how you can get them.
38
+
39
+ Then call `bundle exec fastlane test` in your terminal
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module AmazonAppSubmission
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-amazon_app_submission
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - mohammedhemaid