Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dusken-client
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
EDB
dusken-client
Commits
bc790ffc
Commit
bc790ffc
authored
May 05, 2019
by
Nikolai R Kristiansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New beta release for android
parent
d9ee2e50
Pipeline
#712
failed with stage
in 1 minute and 43 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
9 deletions
+7
-9
README.md
README.md
+2
-2
android/app/build.gradle
android/app/build.gradle
+2
-2
android/fastlane/Fastfile
android/fastlane/Fastfile
+3
-5
No files found.
README.md
View file @
bc790ffc
...
...
@@ -41,13 +41,13 @@ This avoids alot of issues resulting from poor cocoapods support by react native
DUSKEN_RELEASE_KEY_PASSWORD=
# Build
yarn build
-
android # Output is in android/app/build/outputs/apk
yarn build
:
android # Output is in android/app/build/outputs/apk
# Note: Make sure you have the file android/google_play.json
# Ref: https://docs.fastlane.tools/actions/supply/#setup
# Publish android build to the Google Play beta track
yarn release
-
android
yarn release
:
android
## Libraries
...
...
android/app/build.gradle
View file @
bc790ffc
...
...
@@ -106,8 +106,8 @@ android {
applicationId
"no.neuf.chateau"
minSdkVersion
rootProject
.
ext
.
minSdkVersion
targetSdkVersion
rootProject
.
ext
.
targetSdkVersion
versionCode
2
1
versionName
"1.
2.2
"
versionCode
2
2
versionName
"1.
3.0
"
}
splits
{
abi
{
...
...
android/fastlane/Fastfile
View file @
bc790ffc
# https://docs.fastlane.tools/actions/
# Change the syntax highlighting to Ruby
# update_fastlane
default_platform
(
:android
)
platform
:android
do
desc
"Submit a new build to the Google Play Beta track"
lane
:beta
do
# build the release variant
gradle
(
task:
"assembleRelease"
)
gradle
(
task:
"assemble
"
,
build_type:
"
Release"
)
# upload to Google Play
supply
(
track:
"beta"
)
upload_to_play_store
(
track:
"beta"
,
skip_upload_images:
true
)
slack
(
message:
"Chateau Neuf app build uploaded to Google Play"
)
end
lane
:build
do
gradle
(
task:
"assembleRelease"
)
gradle
(
task:
"assemble
"
,
build_type:
"
Release"
)
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment