Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Apkforfastlane
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Karthik Shetty
Apkforfastlane
Compare revisions
e2d792987be835397d94edd1c919a53bc91dd177 to 63f5c46926ea09d735c63c0c31d84e42b83e99e6
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
karthik.shetty/apkforfastlane
Select target project
No results found
63f5c46926ea09d735c63c0c31d84e42b83e99e6
Select Git revision
Branches
development
master
2 results
Swap
Target
karthik.shetty/apkforfastlane
Select target project
karthik.shetty/apkforfastlane
1 result
e2d792987be835397d94edd1c919a53bc91dd177
Select Git revision
Branches
development
master
2 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
updated the gradle command in fastfile to use bundle format instead of apk
· 85cb6542
Krishna Prasad
authored
1 year ago
85cb6542
resovled merge conflict
· 63f5c469
Krishna Prasad
authored
1 year ago
63f5c469
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
Jenkinsfile
+2
-2
2 additions, 2 deletions
Jenkinsfile
app/build.gradle.kts
+13
-0
13 additions, 0 deletions
app/build.gradle.kts
app/fastlane.jks
+0
-0
0 additions, 0 deletions
app/fastlane.jks
fastlane/Fastfile
+4
-4
4 additions, 4 deletions
fastlane/Fastfile
with
19 additions
and
6 deletions
Jenkinsfile
View file @
63f5c469
...
...
@@ -46,7 +46,7 @@ pipeline {
}
}
stage
(
'Playstore Alpha'
)
{
stage
(
'Playstore Alpha
Testing
'
)
{
steps
{
script
{
// Use absolute path to Fastlane
...
...
@@ -54,7 +54,7 @@ pipeline {
env
.
PATH
=
"${fastlanePath}:${env.PATH}"
// Run Fastlane deploy for Firebase App distribution
sh
'fastlane deployTo
p
lay'
sh
'fastlane deployTo
P
lay
storeAlpha
'
}
}
}
...
...
This diff is collapsed.
Click to expand it.
app/build.gradle.kts
View file @
63f5c469
...
...
@@ -7,6 +7,16 @@ android {
namespace
=
"com.kp.testapp"
compileSdk
=
34
// Signing configurations
signingConfigs
{
create
(
"release"
)
{
keyAlias
=
"fastlane"
keyPassword
=
"niveus@123"
storeFile
=
file
(
"fastlane.jks"
)
storePassword
=
"niveus@123"
}
}
defaultConfig
{
applicationId
=
"com.kp.testapp"
minSdk
=
25
...
...
@@ -22,8 +32,11 @@ android {
buildTypes
{
release
{
signingConfig
=
signingConfigs
.
getByName
(
"release"
)
isMinifyEnabled
=
false
proguardFiles
(
getDefaultProguardFile
(
"proguard-android-optimize.txt"
),
"proguard-rules.pro"
)
// Enable bundle generation for release
}
}
compileOptions
{
...
...
This diff is collapsed.
Click to expand it.
app/fastlane.jks
0 → 100644
View file @
63f5c469
File added
This diff is collapsed.
Click to expand it.
fastlane/Fastfile
View file @
63f5c469
...
...
@@ -24,8 +24,8 @@ platform :android do
######## FIREBASE DISTRIBUTION ########
desc
"Submit a new Google Test Build to Firebase App Distribution"
lane
:distributeViaFirebase
do
|
options
|
gradle
(
task:
"bundleRelease"
)
# gradle(task: "clean assembleRelease")
gradle
(
task:
"clean assembleRelease -PstoreFile=/home/karthik_shetty_niveussolutions_c/fastlane.jks -PstorePassword=niveus@123 -PkeyAlias=fastlane -PkeyPassword=niveus@123"
)
# gradle(task: "clean assembleDebug")
# find apk path
...
...
@@ -63,7 +63,7 @@ platform :android do
desc
"Deploy a new version to the Google Play - Alpha"
lane
:deployToplay
do
gradle
(
task:
"clean assembleDebug"
)
upload_to_
play_store
(
upload_to_
google_play
(
track:
"alpha"
,
json_key:
"/home/karthik_shetty_niveussolutions_c/prj-common-services-01-0c9b948542c2.json"
,
package_name:
"com.kp.testapp"
,
...
...
This diff is collapsed.
Click to expand it.