Skip to content

Commit f78bea0

Browse files
authored
Remove AndroidNativeExample (#1585)
1 parent a914edb commit f78bea0

File tree

115 files changed

+22
-674
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+22
-674
lines changed

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"parser": "@typescript-eslint/parser",
1414
"parserOptions": {
15-
"project": ["./tsconfig.json", "./examples/Example/tsconfig.json"]
15+
"project": ["./tsconfig.json", "./example/tsconfig.json"]
1616
},
1717
"env": { "browser": true, "node": true, "jest/globals": true },
1818
"plugins": ["jest"],

.github/workflows/android-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
env:
13-
WORKING_DIRECTORY: examples/Example
13+
WORKING_DIRECTORY: example
1414
concurrency:
1515
group: android-${{ github.ref }}
1616
cancel-in-progress: true

.github/workflows/ios-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
runs-on: macos-latest
1212
env:
13-
WORKING_DIRECTORY: examples/Example
13+
WORKING_DIRECTORY: example
1414
concurrency:
1515
group: ios-${{ github.ref }}
1616
cancel-in-progress: true

.github/workflows/static-example-app-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: Test Example App TypeScript and Lint
22
on:
33
pull_request:
44
paths:
5-
- 'examples/Example/**'
5+
- 'example/**'
66
push:
77
branches:
88
- master
99
jobs:
1010
check:
1111
runs-on: ubuntu-latest
1212
env:
13-
WORKING_DIRECTORY: examples/Example
13+
WORKING_DIRECTORY: example
1414
concurrency:
1515
group: static-example-${{ github.ref }}
1616
cancel-in-progress: true
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/Example/android/app/build.gradle renamed to example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ dependencies {
204204
}
205205

206206
if (enableHermes) {
207-
def hermesPath = "../../node_modules/hermes-engine/android/";
207+
def hermesPath = "../node_modules/hermes-engine/android/";
208208
debugImplementation files(hermesPath + "hermes-debug.aar")
209209
releaseImplementation files(hermesPath + "hermes-release.aar")
210210
} else {

0 commit comments

Comments
 (0)