Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit 0d6ae55

Browse files
authored
Merge branch 'ubbop42:main' into main
2 parents 3082f9d + 1f56720 commit 0d6ae55

File tree

16 files changed

+25
-224
lines changed

16 files changed

+25
-224
lines changed

LICENSE

Lines changed: 0 additions & 202 deletions
This file was deleted.

LICENSE.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2021 HOMEXLABS
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Makefile

Lines changed: 0 additions & 2 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ functions supported:
1515
[`trackEvent`](https://docs.developers.optimizely.com/full-stack/docs/get-all-feature-variables-android).
1616

1717
```dart
18-
import 'package:optimizely_plugin/optimizely_plugin.dart';
18+
import 'package:optimizely_dart/optimizely_dart.dart';
1919
...
2020
await OptimizelyPlugin.initOptimizelyManager('your_optimizely_sdk_key');
2121
bool featureEnabled = await OptimizelyPlugin.isFeatureEnabled('your_flag', 'some_user@xyz.com');

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
group 'com.policygenius.optimizely_plugin'
1+
group 'com.homexlabs.optimizely_dart'
22
version '1.0-SNAPSHOT'
33

44
buildscript {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.policygenius.optimizely_plugin">
2+
package="com.homexlabs.optimizely_dart">
33
</manifest>

android/src/main/kotlin/com/policygenius/optimizely_plugin/OptimizelyPlugin.kt renamed to android/src/main/kotlin/com/homexlabs/optimizely_dart/OptimizelyPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.policygenius.optimizely_plugin
1+
package com.homexlabs.optimizely_dart
22

33
import android.app.Activity
44
import androidx.annotation.NonNull

example/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# optimizely_plugin_example
1+
# optimizely_dart_example
22

3-
Demonstrates how to use the optimizely_plugin plugin.
3+
Demonstrates how to use the optimizely_dart plugin.
44

55
## Getting Started
66

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ android {
3838

3939
defaultConfig {
4040
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
41-
applicationId "com.policygenius.optimizely_plugin_example"
41+
applicationId "com.homexlabs.optimizely_dart_example"
4242
minSdkVersion 16
4343
targetSdkVersion 28
4444
versionCode flutterVersionCode.toInteger()

example/android/app/src/debug/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.policygenius.optimizely_plugin_example">
2+
package="com.homexlabs.optimizely_dart_example">
33
<!-- Flutter needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->

0 commit comments

Comments
 (0)