Skip to content

Commit 0e67f95

Browse files
authored
Merge pull request #192 from adobe/optimize
Optimize
2 parents 64bdeb2 + d4015da commit 0e67f95

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

apps/AEPSampleApp/android/app/src/main/java/com/aepsampleapp/MainApplication.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ public void onCreate() {
127127
Signal.registerExtension();
128128
Consent.registerExtension();
129129
Assurance.registerExtension();
130+
Optimize.registerExtension();
130131
} catch (InvalidInitException e) {
131132
e.printStackTrace();
132133
}

apps/AEPSampleApp/ios/AEPSampleApp/AppDelegate.mm

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
/*
22
Copyright 2022 Adobe. All rights reserved.
3-
This file is licensed to you under the Apache License, Version 2.0 (the "License");
4-
you may not use this file except in compliance with the License. You may obtain a copy
5-
of the License at http://www.apache.org/licenses/LICENSE-2.0
6-
Unless required by applicable law or agreed to in writing, software distributed under
7-
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
8-
OF ANY KIND, either express or implied. See the License for the specific language
9-
governing permissions and limitations under the License.
3+
This file is licensed to you under the Apache License, Version 2.0 (the
4+
"License"); you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
7+
or agreed to in writing, software distributed under the License is distributed
8+
on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, either
9+
express or implied. See the License for the specific language governing
10+
permissions and limitations under the License.
1011
*/
1112

1213
#import "AppDelegate.h"
@@ -73,7 +74,8 @@ - (BOOL)application:(UIApplication *)application
7374
[self.window makeKeyAndVisible];
7475
[AEPMobileCore setLogLevel:AEPLogLevelTrace];
7576
[AEPMobileCore registerExtensions:@[
76-
AEPMobileEdgeIdentity.class, AEPMobileEdge.class, AEPMobileMessaging.class,
77+
AEPMobileEdgeIdentity.class, AEPMobileEdge.class,
78+
AEPMobileEdgeConsent.class, AEPMobileMessaging.class,
7779
AEPMobileOptimize.class
7880
]
7981
completion:^{

packages/messaging/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ npm install {path to messaging package}
2828
## IOS Setup
2929

3030
**Podfile setup for `@adobe/react-native-aepmessaging` v1.0.0-beta.2 with in-app messaging support**
31-
The In app Message APIs depends on the AEP Messaging iOS SDK v1.1.0. This version is not yet published to the Cocoapods but is available in the public [github repository](https://github.com/adobe/aepsdk-messaging-ios/tree/staging). Add the following pod dependency in your applications Podfile under the application target.
31+
The In app Message APIs depends on the AEP Messaging iOS SDK v1.1.0-beta. This version is not yet published to the Cocoapods but is available in the public [github repository](https://github.com/adobe/aepsdk-messaging-ios/tree/staging). Add the following pod dependency in your applications Podfile under the application target.
3232

3333
```ruby
3434
target 'AEPSampleApp' do

0 commit comments

Comments
 (0)