Skip to content

Commit 880ec3f

Browse files
committed
Change name of example from llama to llm
1 parent da0ecc2 commit 880ec3f

File tree

103 files changed

+394
-283
lines changed

Some content is hidden

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

103 files changed

+394
-283
lines changed

.github/workflows/build-android-llama-example.yml renamed to .github/workflows/build-android-llm-example.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
name: Llama Example app Android build check
1+
name: LLM Example app Android build check
22
on:
33
pull_request:
44
paths:
5-
- .github/workflows/build-android-llama-example.yml
5+
- .github/workflows/build-android-llm-example.yml
66
- android/**
77
- third-party/android/**
8-
- examples/llama/package.json
9-
- examples/llama/android/**
8+
- examples/llm/package.json
9+
- examples/llm/android/**
1010
push:
1111
branches:
1212
- main
1313
paths:
14-
- .github/workflows/build-android-llama-example.yml
14+
- .github/workflows/build-android-llm-example.yml
1515
- android/**
1616
- third-party/android/**
17-
- examples/llama/package.json
18-
- examples/llama/android/**
17+
- examples/llm/package.json
18+
- examples/llm/android/**
1919
jobs:
2020
build:
2121
if: github.repository == 'software-mansion/react-native-executorch'
2222
runs-on: ubuntu-latest
2323
env:
24-
WORKING_DIRECTORY: examples/llama
24+
WORKING_DIRECTORY: examples/llm
2525
concurrency:
2626
group: android-${{ github.ref }}
2727
cancel-in-progress: true

.github/workflows/build-ios-llama-example.yml renamed to .github/workflows/build-ios-llm-example.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
name: Llama Example app iOS build check
1+
name: LLM Example app iOS build check
22
on:
33
push:
44
branches:
55
- main
66
paths:
7-
- '.github/workflows/build-ios-llama-example.yml'
7+
- '.github/workflows/build-ios-llm-example.yml'
88
- '*.podspec'
9-
- 'examples/llama/ios/**'
10-
- 'examples/llama/package.json'
9+
- 'examples/llm/ios/**'
10+
- 'examples/llm/package.json'
1111
pull_request:
1212
paths:
13-
- '.github/workflows/build-ios-llama-example.yml'
13+
- '.github/workflows/build-ios-llm-example.yml'
1414
- '*.podspec'
15-
- 'examples/llama/ios/**'
16-
- 'examples/llama/package.json'
15+
- 'examples/llm/ios/**'
16+
- 'examples/llm/package.json'
1717
jobs:
1818
build:
1919
if: github.repository == 'software-mansion/react-native-executorch'
@@ -25,17 +25,17 @@ jobs:
2525
- name: Check out Git repository
2626
uses: actions/checkout@v4
2727
- name: Install node dependencies
28-
working-directory: examples/llama
28+
working-directory: examples/llm
2929
run: yarn
3030
- name: Install pods
31-
working-directory: examples/llama/ios
31+
working-directory: examples/llm/ios
3232
run: pod install
3333
- name: Build app
34-
working-directory: examples/llama/ios
34+
working-directory: examples/llm/ios
3535
run: |
3636
set -o pipefail && xcodebuild \
37-
-workspace llama.xcworkspace \
38-
-scheme llama \
37+
-workspace llm.xcworkspace \
38+
-scheme llm \
3939
-sdk iphonesimulator \
4040
-configuration Debug \
4141
-destination 'platform=iOS Simulator,name=iPhone 16 Pro' \

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,7 @@ lib/
8080
# React Native Codegen
8181
ios/generated
8282
android/generated
83+
84+
# custom
85+
*.tgz
86+
Makefile

README.md

Lines changed: 2 additions & 2 deletions

examples/llama/ios/llama/Info.plist

Lines changed: 0 additions & 79 deletions
This file was deleted.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ android {
8686
buildToolsVersion rootProject.ext.buildToolsVersion
8787
compileSdk rootProject.ext.compileSdkVersion
8888

89-
namespace 'com.anonymous.llama'
89+
namespace 'com.anonymous.llm'
9090
defaultConfig {
91-
applicationId 'com.anonymous.llama'
91+
applicationId 'com.anonymous.llm'
9292
minSdkVersion rootProject.ext.minSdkVersion
9393
targetSdkVersion rootProject.ext.targetSdkVersion
9494
versionCode 1

0 commit comments

Comments
 (0)