Skip to content

Commit 577b303

Browse files
authored
Merge pull request #106 from VocaDB/develop
Develop
2 parents 34a4719 + e7b069a commit 577b303

30 files changed

Lines changed: 589 additions & 19 deletions

android/app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ android {
6565
signingConfig signingConfigs.release
6666

6767
minifyEnabled true
68+
shrinkResources false
6869
useProguard true
6970

7071
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1007 Bytes
Loading
1.01 KB
Loading
1.16 KB
Loading
916 Bytes
Loading

android/fastlane/Appfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
json_key_file("./google-play-service-account.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
2+
package_name("com.coolappz.Vocadb") # e.g. com.krausefx.app

android/fastlane/Fastfile

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# This file contains the fastlane.tools configuration
2+
# You can find the documentation at https://docs.fastlane.tools
3+
#
4+
# For a list of all available actions, check out
5+
#
6+
# https://docs.fastlane.tools/actions
7+
#
8+
# For a list of all available plugins, check out
9+
#
10+
# https://docs.fastlane.tools/plugins/available-plugins
11+
#
12+
13+
# Uncomment the line if you want fastlane to automatically update itself
14+
# update_fastlane
15+
16+
default_platform(:android)
17+
18+
platform :android do
19+
desc "Submit to Beta"
20+
lane :beta do
21+
upload_to_play_store(track: 'internal',
22+
skip_upload_apk: true,
23+
skip_upload_metadata: true,
24+
skip_upload_changelogs: true,
25+
skip_upload_images: true,
26+
skip_upload_screenshots: true,
27+
aab: './../build/app/outputs/bundle/release/app.aab')
28+
end
29+
end

android/fastlane/README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
fastlane documentation
2+
================
3+
# Installation
4+
5+
Make sure you have the latest version of the Xcode command line tools installed:
6+
7+
```
8+
xcode-select --install
9+
```
10+
11+
Install _fastlane_ using
12+
```
13+
[sudo] gem install fastlane -NV
14+
```
15+
or alternatively using `brew cask install fastlane`
16+
17+
# Available Actions
18+
## Android
19+
### android beta
20+
```
21+
fastlane android beta
22+
```
23+
Submit to Beta
24+
25+
----
26+
27+
This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
28+
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
29+
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).

assets/i18n/en.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@
121121
"topArtists": "Top artists",
122122
"version": "Version",
123123
"search": "Search",
124-
"parentTag": "Parent"
124+
"parentTag": "Parent",
125+
"map": "Map"
125126
},
126127
"error": {
127128
"emptyFavoriteSongs": "No favorite songs",

assets/i18n/ja.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,8 @@
119119
"topArtists": "トップアーティスト",
120120
"version": "バージョン",
121121
"search": "サーチ",
122-
"parentTag": "Parent"
122+
"parentTag": "Parent",
123+
"map": "会場"
123124
},
124125
"error": {
125126
"emptyFavoriteSongs": "何もないです(´・д・`)…",

0 commit comments

Comments
 (0)