Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Room Park Android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vladislav Bogdashkin
Room Park Android
Commits
41d0c803
Commit
41d0c803
authored
May 15, 2020
by
Vladislav Bogdashkin
🎣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix build pipeline
parent
7fce221f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
23 deletions
+7
-23
build.gradle
app/build.gradle
+7
-23
No files found.
app/build.gradle
View file @
41d0c803
...
...
@@ -80,35 +80,19 @@ android {
}
}
}
//
// applicationVariants.all { variant ->
// variant.outputs.all {
// outputFileName = new File(keystoreProperties['outputFolder'])
// }
// }
task
copyReleaseBundle
(
type:
Copy
)
{
from
'build\\outputs\\bundle\\release'
into
'..'
// folder above the app folder
include
'**/*release.aab'
}
task
renameBundle
(
type:
Copy
)
{
from
"$buildDir/outputs/bundle/release"
into
"../../"
task
renameBundle
(
type:
Copy
)
{
from
"$buildDir/outputs/bundle/release"
into
"../../"
rename
'app-release.aab'
,
"roomParkBundle.aab"
}
String
name
=
findProperty
(
'newBundleName'
)
rename
'app-release.aab'
,
"${name}.aab"
}
task
publishRelease
(
type:
GradleBuild
)
{
tasks
=
[
'bundleRelease'
,
'renameBundle'
]
tasks
=
[
'bundleRelease'
]
}
afterEvaluate
{
packageRelease
.
finalizedBy
(
copyReleaseBundle
)
}
androidExtensions
{
experimental
=
true
...
...
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