-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: react native expo failing builds (#281)
* fix: react native expo failing builds * chore: update CHANGELOG * fix: makefile
- Loading branch information
Showing
137 changed files
with
946 additions
and
962 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
platform :ios, '16.0' | ||
|
||
target 'PostHogExampleWithPods' do | ||
pod 'PostHog', :path => '../' | ||
end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,8 @@ | |
// | ||
// Author: Skal ([email protected]) | ||
|
||
#include "utils.h" | ||
#include "dsp.h" | ||
#include "./utils.h" | ||
#include "./dsp.h" | ||
|
||
// Tables can be faster on some platform but incur some extra binary size (~2k). | ||
#if !defined(USE_TABLES_FOR_ALPHA_MULT) | ||
|
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 |
---|---|---|
|
@@ -11,11 +11,11 @@ | |
// | ||
// Author: Skal ([email protected]) | ||
|
||
#include "dsp.h" | ||
#include "./dsp.h" | ||
|
||
#if defined(WEBP_USE_NEON) | ||
|
||
#include "neon.h" | ||
#include "./neon.h" | ||
|
||
//------------------------------------------------------------------------------ | ||
|
||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
// | ||
// Author: Skal ([email protected]) | ||
|
||
#include "dsp.h" | ||
#include "./dsp.h" | ||
|
||
#if defined(WEBP_USE_SSE2) | ||
#include <emmintrin.h> | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
// | ||
// Author: Skal ([email protected]) | ||
|
||
#include "dsp.h" | ||
#include "./dsp.h" | ||
|
||
#if defined(WEBP_USE_SSE41) | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,16 +10,16 @@ | |
// Author: Jyrki Alakuijala ([email protected]) | ||
// | ||
|
||
#include "backward_references_enc.h" | ||
|
||
#include "dsp.h" | ||
#include "lossless.h" | ||
#include "lossless_common.h" | ||
#include "histogram_enc.h" | ||
#include "vp8i_enc.h" | ||
#include "color_cache_utils.h" | ||
#include "utils.h" | ||
#include "encode.h" | ||
#include "./backward_references_enc.h" | ||
|
||
#include "./dsp.h" | ||
#include "./lossless.h" | ||
#include "./lossless_common.h" | ||
#include "./histogram_enc.h" | ||
#include "./vp8i_enc.h" | ||
#include "./color_cache_utils.h" | ||
#include "./utils.h" | ||
#include "./encode.h" | ||
|
||
#define MIN_BLOCK_SIZE 256 // minimum block size for backward references | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,11 +12,11 @@ | |
// Author: Skal ([email protected]) | ||
|
||
#ifdef HAVE_CONFIG_H | ||
#include "config.h" | ||
#include "./config.h" | ||
#endif | ||
|
||
#include "cpu.h" | ||
#include "utils.h" | ||
#include "./cpu.h" | ||
#include "./utils.h" | ||
|
||
//------------------------------------------------------------------------------ | ||
// VP8BitReader | ||
|
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -12,10 +12,10 @@ | |
// Author: Skal ([email protected]) | ||
|
||
#ifdef HAVE_CONFIG_H | ||
#include "config.h" | ||
#include "./config.h" | ||
#endif | ||
|
||
#include "encode.h" | ||
#include "./encode.h" | ||
|
||
//------------------------------------------------------------------------------ | ||
// WebPConfig | ||
|
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 |
---|---|---|
|
@@ -9,8 +9,8 @@ | |
// | ||
// Author: Skal ([email protected]) | ||
|
||
#include "dsp.h" | ||
#include "cost_enc.h" | ||
#include "./dsp.h" | ||
#include "./cost_enc.h" | ||
|
||
//------------------------------------------------------------------------------ | ||
// Boolean-cost cost table | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
// | ||
// Author: Skal ([email protected]) | ||
|
||
#include "cost_enc.h" | ||
#include "./cost_enc.h" | ||
|
||
//------------------------------------------------------------------------------ | ||
// Level cost tables | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,14 @@ | |
// | ||
// Author: Skal ([email protected]) | ||
|
||
#include "dsp.h" | ||
#include "./dsp.h" | ||
|
||
#if defined(WEBP_USE_SSE2) | ||
#include <emmintrin.h> | ||
|
||
#include "cost_enc.h" | ||
#include "vp8i_enc.h" | ||
#include "utils.h" | ||
#include "./cost_enc.h" | ||
#include "./vp8i_enc.h" | ||
#include "./utils.h" | ||
|
||
//------------------------------------------------------------------------------ | ||
|
||
|
Oops, something went wrong.