Skip to content

Commit

Permalink
Merge pull request #2 from crowdbotics/PLAT-11232-create-validation
Browse files Browse the repository at this point in the history
PLAT-11232 Create Validation
  • Loading branch information
GaboGomezT authored Jun 27, 2023
2 parents 73dc63b + e240156 commit 0868a03
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions android/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,11 @@ platform(:android) do

response.success?
end

desc('Build Android app')
lane(:build_android) do
gradle(task: 'assemble', build_type: 'Debug')
end
end

def get_last_apk_path
Expand Down
10 changes: 10 additions & 0 deletions ios/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -180,4 +180,14 @@ platform(:ios) do

response.success?
end

desc("Build to Test Dependencies")
lane(:build_test_dependencies) do
xcodebuild(
workspace: @workspace_name,
configuration: 'Release',
sdk: 'iphonesimulator',
scheme: @base_name,
)
end
end

0 comments on commit 0868a03

Please sign in to comment.