Skip to content

Commit

Permalink
chore(lib): fix android pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Doko-Demo-Doa committed Sep 20, 2024
1 parent c145a09 commit edf9549
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ jobs:
- name: Setup Android SDK
uses: android-actions/setup-android@v3

# https://github.com/react-native-community/cli/issues/2498
- name: Fix CLI build
run: chmod u+x node_modules/@react-native-community/cli/build/*.js

- name: Finalize Android SDK
run: /bin/bash -c "yes | $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager --licenses > /dev/null"

Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@
"root": true,
"extends": [
"@react-native",
"prettier/prettier"
],
"plugins": [
"prettier"
],
"rules": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { NativeModules, NativeEventEmitter, Platform } from 'react-native';

const LINKING_ERROR =
`The package 'react-native-shake' doesn't seem to be linked. Make sure: \n\n` +
"The package 'react-native-shake' doesn't seem to be linked. Make sure: \n\n" +
Platform.select({ ios: "- You have run 'pod install'\n", default: '' }) +
'- You rebuilt the app after installing the package\n' +
'- You are not using Expo Go\n';
Expand Down

0 comments on commit edf9549

Please sign in to comment.