-
Notifications
You must be signed in to change notification settings - Fork 956
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge 3ff7535 into sapling-pr-archive-passy
- Loading branch information
Showing
154 changed files
with
1,026 additions
and
6,941 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: facebook/flipper/build-and-deploy | ||
on: | ||
push: | ||
branches: | ||
- main | ||
env: | ||
ANDROID_PUBLISH_KEY: ${{ secrets.ANDROID_PUBLISH_KEY }} | ||
jobs: | ||
snapshot: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y sdkmanager | ||
- name: Install JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: gradle | ||
- name: Install Retry | ||
run: scripts/install-retry.sh | ||
- name: Build | ||
run: | | ||
yes | sdkmanager "platforms;android-33" || true | ||
/tmp/retry -m 3 ./gradlew :android:assembleRelease --info | ||
- name: Deploy Snapshot | ||
run: "/tmp/retry -m 3 scripts/publish-android-snapshot.sh" |
19 changes: 19 additions & 0 deletions
19
.../com/facebook/flipper/plugins/uidebugger/litho/ILithoDebugComponentDescriptorExtension.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
package com.facebook.flipper.plugins.uidebugger.litho | ||
|
||
import com.facebook.inject.statics.BoundSetStatic | ||
import com.facebook.litho.DebugComponent | ||
import kotlinx.serialization.json.JsonObject | ||
|
||
@BoundSetStatic | ||
interface ILithoDebugComponentDescriptorExtension { | ||
fun getExtraTags(node: DebugComponent): Set<String>? | ||
|
||
fun getExtraHiddenAttributes(node: DebugComponent): JsonObject? | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.