Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example/app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = () => {
return {
name: 'klaviyo plugin example',
slug: 'klaviyo-plugin-example',
version: '0.4.0',
version: '1.0.0',
orientation: 'portrait',
icon: './assets/images/icon.png',
scheme: 'expoexample',
Expand Down
4 changes: 2 additions & 2 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "example",
"main": "expo-router/entry",
"version": "0.4.0",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"android": "expo run:android",
Expand Down Expand Up @@ -29,7 +29,7 @@
"expo-status-bar": "~3.0.8",
"expo-task-manager": "~14.0.8",
"klaviyo-expo-plugin": "file:../",
"klaviyo-react-native-sdk": "2.3.0",
"klaviyo-react-native-sdk": "2.5.0",
"memoize-one": "^6.0.0",
"react": "19.1.0",
"react-dom": "19.1.0",
Expand Down
2 changes: 1 addition & 1 deletion ios/klaviyo-plugin-configuration.plist
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
<key>klaviyo_sdk_plugin_name_override</key>
<string>klaviyo-expo</string>
<key>klaviyo_sdk_plugin_version_override</key>
<string>0.4.0</string>
<string>1.0.0</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "klaviyo-expo-plugin",
"version": "0.4.0",
"version": "1.0.0",
"main": "dist/plugin/withKlaviyo.js",
"types": "dist/plugin/withKlaviyo.d.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion plugin/withKlaviyoAndroid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ export const withKlaviyoPluginNameVersion: ConfigPlugin = config => {
}

setStringResource('klaviyo_sdk_plugin_name_override', 'klaviyo-expo');
setStringResource('klaviyo_sdk_plugin_version_override', '0.4.0');
setStringResource('klaviyo_sdk_plugin_version_override', '1.0.0');

return config;
});
Expand Down
6 changes: 3 additions & 3 deletions tests/withKlaviyoAndroid.internal.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ describe('withKlaviyoAndroid Internal Functions', () => {
const result = modifier(testConfig);
expect(result.modResults.resources.string).toContainEqual({
$: { name: 'klaviyo_sdk_plugin_version_override' },
_: '0.4.0'
_: '1.0.0'
});
return result;
});
Expand Down Expand Up @@ -288,7 +288,7 @@ describe('withKlaviyoAndroid Internal Functions', () => {
});
expect(result.modResults.resources.string).toContainEqual({
$: { name: 'klaviyo_sdk_plugin_version_override' },
_: '0.4.0'
_: '1.0.0'
});

return result;
Expand Down Expand Up @@ -426,7 +426,7 @@ describe('withKlaviyoAndroid Internal Functions', () => {
expect(nameString).toBeDefined();
expect(nameString._).toBe('klaviyo-expo');
expect(versionString).toBeDefined();
expect(versionString._).toBe('0.4.0');
expect(versionString._).toBe('1.0.0');

return result;
});
Expand Down
Loading