fastlane-plugin-amazon_app_submission 0.2.0 → 0.2.1
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 +4 -4
- data/README.md +39 -1
- data/lib/fastlane/plugin/amazon_app_submission/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d6b0ca6817ddc895e42435402ee7de0131598c86f6f26d7ce577611457235cf
|
4
|
+
data.tar.gz: 69e525141edf1f0fc2daba3ef049dde65d2efc74bd6da09d1e29cae06534dda7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|