Skip to content

Commit

Permalink
Merge pull request #68 from apptentive/xcframework
Browse files Browse the repository at this point in the history
Replace static library with xcframework
  • Loading branch information
frankus authored Sep 16, 2020
2 parents b1c6db5 + fdd36ae commit 08cb9a6
Show file tree
Hide file tree
Showing 305 changed files with 3,210 additions and 2,351 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ This document lets you know what has changed in the Cordova plugin. For changes
- [Android Changelog](https://github.com/apptentive/apptentive-android/blob/master/CHANGELOG.md)
- [iOS Changelog](https://github.com/apptentive/apptentive-ios/blob/master/CHANGELOG.md)

# 2020-09-16 - v5.5.2

- Apptentive Android SDK: 5.5.4
- Apptentive iOS SDK: 5.3.1

# 2020-09-08 - v5.5.1

- Apptentive Android SDK: 5.5.4
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "apptentive-cordova",
"version": "5.5.1",
"version": "5.5.2",
"description": "Apptentive Plugin For Cordova",
"cordova": {
"id": "apptentive-cordova",
Expand Down
5 changes: 1 addition & 4 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,6 @@
<source-file src="src/ios/ApptentiveBridge.m" target-dir="Apptentive"/>

<!-- Apptentive SDK -->
<source-file src="src/ios/apptentive_ios_sdk/libapptentive-ios.a" framework="true" target-dir="apptentive_ios_sdk"/>
<resource-file src="src/ios/apptentive_ios_sdk/ApptentiveResources.bundle" target-dir="apptentive_ios_sdk"/>
<header-file src="src/ios/apptentive_ios_sdk/include/Apptentive.h" target-dir="apptentive_ios_sdk"/>
<header-file src="src/ios/apptentive_ios_sdk/include/ApptentiveStyleSheet.h" target-dir="apptentive_ios_sdk"/>
<resource-file src="src/ios/ApptentiveStyles.plist"/>

<!-- required system frameworks -->
Expand All @@ -99,6 +95,7 @@
<framework src="Storekit.framework" weak="true"/>
<framework src="SystemConfiguration.framework" weak="true"/>
<framework src="UIKit.framework" weak="true"/>
<framework src="src/ios/Apptentive.xcframework" custom="true"/>
</platform>

</plugin>
42 changes: 42 additions & 0 deletions src/ios/Apptentive.xcframework/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AvailableLibraries</key>
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>Apptentive.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>Apptentive.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
</dict>
</array>
<key>CFBundlePackageType</key>
<string>XFWK</string>
<key>XCFrameworkFormatVersion</key>
<string>1.0</string>
</dict>
</plist>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
//
// Apptentive.h
// Apptentive
//
// Created by Frank Schmitt on 9/15/20.
// Copyright © 2020 Apptentive, Inc. All rights reserved.
//

#ifndef Apptentive_h
#define Apptentive_h

#import <Apptentive/ApptentiveMain.h>
#import <Apptentive/ApptentiveStyleSheet.h>

#endif /* Apptentive_h */
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ FOUNDATION_EXPORT double ApptentiveVersionNumber;
FOUNDATION_EXPORT const unsigned char ApptentiveVersionString[];

/** The version number of the Apptentive SDK. */
#define kApptentiveVersionString @"5.2.14"
#define kApptentiveVersionString @"5.3.0"

/** The version number of the Apptentive API platform. */
#define kApptentiveAPIVersionString @"9"
Expand Down Expand Up @@ -884,12 +884,6 @@ typedef NSString *ApptentiveStyleIdentifier NS_EXTENSIBLE_STRING_ENUM;

@end

NS_ASSUME_NONNULL_END

#import "ApptentiveStyleSheet.h"

NS_ASSUME_NONNULL_BEGIN

/// The text style for the title text of the greeting view in Message Center.
extern ApptentiveStyleIdentifier ApptentiveTextStyleBody NS_SWIFT_NAME(body);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
// Copyright © 2016 Apptentive, Inc. All rights reserved.
//

#import "Apptentive.h"
#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
framework module Apptentive {
umbrella header "Apptentive.h"

export *
module * { export * }
}
Binary file not shown.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
//
// Apptentive.h
// Apptentive
//
// Created by Frank Schmitt on 9/15/20.
// Copyright © 2020 Apptentive, Inc. All rights reserved.
//

#ifndef Apptentive_h
#define Apptentive_h

#import <Apptentive/ApptentiveMain.h>
#import <Apptentive/ApptentiveStyleSheet.h>

#endif /* Apptentive_h */
Loading

0 comments on commit 08cb9a6

Please sign in to comment.