File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ fastlane_version '2.102.0'
22
33# iOS Lanes 🍏
44platform :ios do
5-
65 desc 'Fetch certificates and provisioning profiles'
76 lane :certificates do
87 match ( app_identifier : 'io.sevenlabs.app' , type : 'development' , readonly : true )
@@ -50,13 +49,11 @@ platform :ios do
5049 submission_information : { add_id_info_uses_idfa : false } ,
5150 )
5251 end
53-
5452end
5553
5654
5755# Android Lanes 🤖
5856platform :android do
59-
6057 desc 'Build the Android application apk.'
6158 lane :apk do
6259 gradle ( task : 'clean' , project_dir : 'android/' )
@@ -68,23 +65,21 @@ platform :android do
6865 desc 'Ship to PlayStore.'
6966 lane :prod do
7067 git_check
71- build
68+ apk
7269 supply (
7370 track : 'production' ,
7471 )
7572 end
76-
7773end
7874
79- ## Bump
75+ ## Bump
8076desc 'Android: Increment versionCode and set versionName to package.json version.'
8177package = load_json ( json_path : "./package.json" )
8278
8379private_lane :inc_ver_and do
8480 increment_version_code (
8581 gradle_file_path : "./android/app/build.gradle" ,
8682 )
87-
8883 increment_version_name (
8984 gradle_file_path : "./android/app/build.gradle" ,
9085 version_name : package [ 'version' ]
9590desc 'iOS: Increment build number and set the version to package.json version.'
9691private_lane :inc_ver_ios do
9792package = load_json ( json_path : "./package.json" )
98-
9993 increment_build_number (
10094 xcodeproj : './ios/App/App.xcodeproj'
10195 )
You can’t perform that action at this time.
0 commit comments