Skip to content

Commit 65b57a9

Browse files
committed
fix: fastfile change
1 parent 8da2b12 commit 65b57a9

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

examples/SampleApp/android/build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,17 @@ allprojects {
3838
}
3939
}
4040

41+
project(':app') {
42+
afterEvaluate {
43+
if (tasks.findByName("preBuild")) {
44+
tasks.preBuild.doFirst {
45+
exec {
46+
workingDir rootDir
47+
commandLine './gradlew', 'generateCodegenArtifactsFromSchema'
48+
}
49+
}
50+
}
51+
}
52+
}
53+
4154
apply plugin: "com.facebook.react.rootproject"

examples/SampleApp/fastlane/Fastfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ lane :deploy_to_testflight_qa do |options|
3333
xcodeproj: xcode_project
3434
)
3535

36-
xcversion(version: "16.1")
37-
3836
current_build_number = app_store_build_number(
3937
api_key: appstore_api_key,
4038
live: false,

0 commit comments

Comments
 (0)