Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F7159897
Fastfile
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
Fastfile
View Options
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
fastlane_version '2.140.0'
#before_all do
# ensure_git_branch
# ensure_git_status_clean
# git_pull
#end
default_platform(:ios)
platform :ios do
desc "Push a new beta build to TestFlight"
lane :beta do
increment_build_number(xcodeproj: "./ios/sylk.xcodeproj")
build_app(export_xcargs: "-allowProvisioningUpdates", workspace: "./ios/sylk.xcworkspace", scheme: "sylk")
upload_to_testflight
end
end
platform :android do
desc "Push a new beta build to Google Play Store"
lane :beta do
gradle(task: 'clean', project_dir: "android/") # <- Fixes it
next_version_code = increment_version_code(
app_project_dir: '**/app'
)
UI.message(next_version_code)
set_value_in_build(
key: 'versionCode',
value: next_version_code
)
next_version_name = increment_version_name(
app_project_dir: '**/app',
bump_type: 'minor'
)
UI.message(next_version_name)
set_value_in_build(
key: 'versionName',
value: next_version_name
)
gradle(task: 'bundle', build_type: 'Release', project_dir: './android/', properties: {
"android.enableJetifier" => "true",
"android.useAndroidX" => "true"
})
upload_to_play_store(track: 'beta', package_name: 'com.agprojects.sylk', skip_upload_apk: true)
end
end
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Nov 23, 2:19 PM (23 h, 8 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3409243
Default Alt Text
Fastfile (1 KB)
Attached To
Mode
rSYLKWRTCM Sylk WebRTC mobile
Attached
Detach File
Event Timeline
Log In to Comment