“wangdongchao” пре 1 година
родитељ
комит
4ab9c0d0e0

+ 1 - 6
Asteria/AppDelegate.m

@@ -9,8 +9,6 @@
 #import "AS_TabBarViewController.h"
 #import <YTKNetwork/YTKNetwork.h>
 
-#import <PayPal-iOS-SDK/PayPalMobile.h>
-
 @interface AppDelegate ()
 
 //@property (nonatomic, strong, readonly) UIWindow *window;
@@ -27,10 +25,7 @@
     } else {
         // Fallback on earlier versions
     }
-    
-    // 设置PayPal环境,可以是 sandbox 或 live
-    [PayPalMobile initializeWithClientIdsForEnvironments:@{PayPalEnvironmentProduction:@"AT88L7L2ZI0mUNNamuY6VRVtuH8Fik6kUrKC-0HtIEpC79wJA56U8Il9iC-FJKXUtxoGkbn7DtdE8skD",PayPalEnvironmentSandbox:@"ASThYYeLhhglcED1R5LrwwjNLpyLYA5yp_8tHTYimlhojmKeC3_FFD2wS2fQp-LlfQalgJFawbEAA5Bu"}];
-    
+        
     [ASCurrencyManager.shared getAllCurrencyData];
 //    [self xxx_ytkNetConfig];
     [PPNetworkHelper openLog];

+ 2 - 60
Asteria/Fuction/Cart/Cart_CheckoutC.m

@@ -19,10 +19,8 @@
 
 #import "ASAddGiftGoodsView.h"
 
-#import <PayPal-iOS-SDK/PayPalMobile.h>
-#import <PayPal-iOS-SDK/PayPalConfiguration.h>
 
-@interface Cart_CheckoutC ()<RY_baseVMprotocol, PayPalPaymentDelegate>
+@interface Cart_CheckoutC ()<RY_baseVMprotocol>
 
 @property (nonatomic, strong) CartVM *VM;
 
@@ -53,72 +51,16 @@
 @property (nonatomic, assign) int index;
 @property (nonatomic, assign) int giftShowCount;
 
-//paypal支付
-@property (nonatomic, strong) PayPalConfiguration *payPalConfiguration;
-
 
 @end
 
 @implementation Cart_CheckoutC
 
-- (void)initPayPalConfiguration{
-    _payPalConfiguration = [[PayPalConfiguration alloc] init];
-    _payPalConfiguration.merchantName = @"龙熠科技有限公司";//公司名称
-    _payPalConfiguration.acceptCreditCards = NO;
-    _payPalConfiguration.payPalShippingAddressOption = PayPalShippingAddressOptionPayPal;
-}
-
-//amount:金额
-//currencyCode:获取单位 比如:USD
-//shortDescription:商品标题 简短描述
-- (void)PayPalWithAmount:(NSString *)amount currencyCode:(NSString *)currencyCode shortDescription:(NSString *)shortDescription{
-    
-    PayPalPayment *payment = [[PayPalPayment alloc] init];
-    payment.amount = [[NSDecimalNumber alloc] initWithString:amount];
-    payment.currencyCode = currencyCode;
-    payment.shortDescription = @"购买商品购买商品购买商品";
-    payment.items = nil;  // if not including multiple items, then leave payment.items as nil
-    payment.paymentDetails = nil; // if not including payment details, then leave payment.paymentDetails as nil
-    payment.intent = PayPalPaymentIntentSale;
-    if (!payment.processable) {
-        NSLog(@"-------------");
-    }
-    
-    PayPalPaymentViewController *paymentViewController = [[PayPalPaymentViewController alloc] initWithPayment:payment configuration:self.payPalConfiguration delegate:self];
-    [self presentViewController:paymentViewController animated:YES completion:nil];
-}
-
-#pragma mark - PayPalPaymentDelegate methods
- 
-- (void)payPalPaymentViewController:(nonnull PayPalPaymentViewController *)paymentViewController
-                 didCompletePayment:(nonnull PayPalPayment *)completedPayment {
-    // 支付成功,可以处理你的支付逻辑
-    NSLog(@"支付成功: %@", completedPayment.confirmation);
-    [self dismissViewControllerAnimated:YES completion:nil];
-}
-
-- (void)payPalPaymentDidCancel:(nonnull PayPalPaymentViewController *)paymentViewController {
-    NSLog(@"支付取消");
-    [self dismissViewControllerAnimated:YES completion:nil];
-}
-
-
-- (void)viewWillAppear:(BOOL)animated {
-    [super viewWillAppear:animated];
-    
-    [PayPalMobile preconnectWithEnvironment:PayPalEnvironmentSandbox];
-
-}
 
 - (void)viewDidLoad {
     [super viewDidLoad];
     self.title = @"Checkout";
     
-//    [PayPalMobile preconnectWithEnvironment:PayPalEnvironmentSandbox];
-//    [ PayPalMobile clearAllUserData];
-    
-    [self initPayPalConfiguration];
-    
     //获取支付方式
     [self requestPaymentMode];
     //获取运输方式
@@ -536,7 +478,7 @@
             NSString *code = MM_str(dic[@"code"]);
             if ([code isEqualToString:@"grand_total"]){ //subBottomV
                 NSString *priceStr = [NSString stringWithFormat:@"%@",dic[@"value"]];
-                [self PayPalWithAmount:priceStr currencyCode:ASCurrencyManager.shared.currentCur shortDescription:@"购买商品"];
+//                [self PayPalWithAmount:priceStr currencyCode:ASCurrencyManager.shared.currentCur shortDescription:@"购买商品"];
                 return;
 
             }

+ 0 - 9
Asteria/Fuction/Cart/PayManager/ASPaypalManager.m

@@ -7,15 +7,6 @@
 
 #import "ASPaypalManager.h"
 
-#import <PayPal-iOS-SDK/PayPalMobile.h>
-#import <PayPal-iOS-SDK/PayPalConfiguration.h>
-
-@interface ASPaypalManager()
-
-//paypal支付
-@property (nonatomic, strong) PayPalConfiguration *payPalConfiguration;
-
-@end
 
 @implementation ASPaypalManager
 

+ 1 - 1
Podfile

@@ -62,7 +62,7 @@ target 'Asteria' do
   
   pod 'LookinServer', :configurations => ['Debug']
   
-  pod 'PayPal-iOS-SDK'
+#  pod 'PayPal-iOS-SDK'
 
 pod 'OneSignalXCFramework', '>= 3.0.0', '< 4.0'
 

+ 1 - 13
Podfile.lock

@@ -636,7 +636,6 @@ PODS:
   - BRPickerView/StringPickerView (2.8.1):
     - BRPickerView/Base
   - Bugly (2.5.93)
-  - CardIO (5.4.1)
   - CTMediator (48)
   - FBAEMKit (16.1.0):
     - FBSDKCoreKit_Basics (= 16.1.0)
@@ -833,12 +832,6 @@ PODS:
     - OneSignalXCFramework/OneSignalOutcomes
   - OneSignalXCFramework/OneSignalOutcomes (3.12.5):
     - OneSignalXCFramework/OneSignalCore
-  - PayPal-iOS-SDK (2.18.1):
-    - PayPal-iOS-SDK/CardIO (= 2.18.1)
-    - PayPal-iOS-SDK/Core (= 2.18.1)
-  - PayPal-iOS-SDK/CardIO (2.18.1):
-    - CardIO (~> 5.4.1)
-  - PayPal-iOS-SDK/Core (2.18.1)
   - PPBadgeView (3.1.0)
   - PromisesObjC (2.2.0)
   - QMUIKit (4.6.0):
@@ -1180,7 +1173,6 @@ DEPENDENCIES:
   - MJRefresh
   - MKNetworkKit
   - OneSignalXCFramework (< 4.0, >= 3.0.0)
-  - PayPal-iOS-SDK
   - PPBadgeView
   - Reachability
   - SDWebImage
@@ -1195,7 +1187,6 @@ SPEC REPOS:
     - BoringSSL-GRPC
     - BRPickerView
     - Bugly
-    - CardIO
     - CTMediator
     - FBAEMKit
     - FBSDKCoreKit
@@ -1228,7 +1219,6 @@ SPEC REPOS:
     - MKNetworkKit
     - nanopb
     - OneSignalXCFramework
-    - PayPal-iOS-SDK
     - PPBadgeView
     - PromisesObjC
     - QMUIKit
@@ -1249,7 +1239,6 @@ SPEC CHECKSUMS:
   BoringSSL-GRPC: 3175b25143e648463a56daeaaa499c6cb86dad33
   BRPickerView: 2531a2d4d0fea0b57a1c738de215af0f88863a2f
   Bugly: b8715e6ec4004b7f7fbffab0643ba80545aee3da
-  CardIO: 56983b39b62f495fc6dae9ad7cf875143df06443
   CTMediator: 3f3578b525b3a46a7a2f92a99922ec40363f4269
   FBAEMKit: c7efe06720a8b15b1d25b68921ba46dee20996e0
   FBSDKCoreKit: ca77d40d46786157b7b31ad3516f5ad9c2315339
@@ -1282,7 +1271,6 @@ SPEC CHECKSUMS:
   MKNetworkKit: 1171bfac5c3a1cd7fea9a027f29359e1b4cab705
   nanopb: b552cce312b6c8484180ef47159bc0f65a1f0431
   OneSignalXCFramework: 4afdd14f6fa769eadf141209037e3eac5890beb9
-  PayPal-iOS-SDK: 70d56697aef502c130b9840e31dea5c6b8a350e1
   PPBadgeView: b50a223638970fd0781e8753250385864b6dd2fe
   PromisesObjC: 09985d6d70fbe7878040aa746d78236e6946d2ef
   QMUIKit: 6321cf1124623d686a9ec0a79a7cc59d0d64a52c
@@ -1293,6 +1281,6 @@ SPEC CHECKSUMS:
   YTKNetwork: c16be90b06be003de9e9cd0d3b187cc8eaf35c04
   YYCache: 8105b6638f5e849296c71f331ff83891a4942952
 
-PODFILE CHECKSUM: 6aef0f7cd78a40d6def250c7fc3efd31bc54ffac
+PODFILE CHECKSUM: cdbf4b2a6abee6a2649d69677514b5e1d89bdba9
 
 COCOAPODS: 1.15.2

+ 1 - 13
Pods/Manifest.lock

@@ -636,7 +636,6 @@ PODS:
   - BRPickerView/StringPickerView (2.8.1):
     - BRPickerView/Base
   - Bugly (2.5.93)
-  - CardIO (5.4.1)
   - CTMediator (48)
   - FBAEMKit (16.1.0):
     - FBSDKCoreKit_Basics (= 16.1.0)
@@ -833,12 +832,6 @@ PODS:
     - OneSignalXCFramework/OneSignalOutcomes
   - OneSignalXCFramework/OneSignalOutcomes (3.12.5):
     - OneSignalXCFramework/OneSignalCore
-  - PayPal-iOS-SDK (2.18.1):
-    - PayPal-iOS-SDK/CardIO (= 2.18.1)
-    - PayPal-iOS-SDK/Core (= 2.18.1)
-  - PayPal-iOS-SDK/CardIO (2.18.1):
-    - CardIO (~> 5.4.1)
-  - PayPal-iOS-SDK/Core (2.18.1)
   - PPBadgeView (3.1.0)
   - PromisesObjC (2.2.0)
   - QMUIKit (4.6.0):
@@ -1180,7 +1173,6 @@ DEPENDENCIES:
   - MJRefresh
   - MKNetworkKit
   - OneSignalXCFramework (< 4.0, >= 3.0.0)
-  - PayPal-iOS-SDK
   - PPBadgeView
   - Reachability
   - SDWebImage
@@ -1195,7 +1187,6 @@ SPEC REPOS:
     - BoringSSL-GRPC
     - BRPickerView
     - Bugly
-    - CardIO
     - CTMediator
     - FBAEMKit
     - FBSDKCoreKit
@@ -1228,7 +1219,6 @@ SPEC REPOS:
     - MKNetworkKit
     - nanopb
     - OneSignalXCFramework
-    - PayPal-iOS-SDK
     - PPBadgeView
     - PromisesObjC
     - QMUIKit
@@ -1249,7 +1239,6 @@ SPEC CHECKSUMS:
   BoringSSL-GRPC: 3175b25143e648463a56daeaaa499c6cb86dad33
   BRPickerView: 2531a2d4d0fea0b57a1c738de215af0f88863a2f
   Bugly: b8715e6ec4004b7f7fbffab0643ba80545aee3da
-  CardIO: 56983b39b62f495fc6dae9ad7cf875143df06443
   CTMediator: 3f3578b525b3a46a7a2f92a99922ec40363f4269
   FBAEMKit: c7efe06720a8b15b1d25b68921ba46dee20996e0
   FBSDKCoreKit: ca77d40d46786157b7b31ad3516f5ad9c2315339
@@ -1282,7 +1271,6 @@ SPEC CHECKSUMS:
   MKNetworkKit: 1171bfac5c3a1cd7fea9a027f29359e1b4cab705
   nanopb: b552cce312b6c8484180ef47159bc0f65a1f0431
   OneSignalXCFramework: 4afdd14f6fa769eadf141209037e3eac5890beb9
-  PayPal-iOS-SDK: 70d56697aef502c130b9840e31dea5c6b8a350e1
   PPBadgeView: b50a223638970fd0781e8753250385864b6dd2fe
   PromisesObjC: 09985d6d70fbe7878040aa746d78236e6946d2ef
   QMUIKit: 6321cf1124623d686a9ec0a79a7cc59d0d64a52c
@@ -1293,6 +1281,6 @@ SPEC CHECKSUMS:
   YTKNetwork: c16be90b06be003de9e9cd0d3b187cc8eaf35c04
   YYCache: 8105b6638f5e849296c71f331ff83891a4942952
 
-PODFILE CHECKSUM: 6aef0f7cd78a40d6def250c7fc3efd31bc54ffac
+PODFILE CHECKSUM: cdbf4b2a6abee6a2649d69677514b5e1d89bdba9
 
 COCOAPODS: 1.15.2

Разлика између датотеке није приказан због своје велике величине
+ 27194 - 27436
Pods/Pods.xcodeproj/project.pbxproj


+ 0 - 59
Pods/Target Support Files/Pods-Asteria-NotificationServiceExtension/Pods-Asteria-NotificationServiceExtension-acknowledgements.markdown

@@ -520,33 +520,6 @@ Copyright (C) 2017 Tencent Bugly, Inc. All rights reserved.
 MIT
 
 
-## CardIO
-
-All files are released under the MIT License:
-
-    The MIT License (MIT)
-
-    Copyright (c) 2013-2016 PayPal Holdings, Inc.
-
-    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:
-
-    The above copyright notice and this permission notice shall be included in
-    all copies or substantial portions of the Software.
-
-    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.
-
-
 ## FBAEMKit
 
 Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved.
@@ -2970,38 +2943,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
 
 
-## PayPal-iOS-SDK
-
-The PayPalMobile header files and the PayPal iOS SDK Sample App are released under the BSD License:
-
-    Copyright (c) 2014-2016 PayPal Holdings, Inc.
-    All rights reserved.
-
-    Redistribution and use in source and binary forms, with or without
-    modification, are permitted provided that the following conditions are met:
-
-    1. Redistributions of source code must retain the above copyright notice, this
-       list of conditions and the following disclaimer.
-    2. Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-
-    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
-    ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-    The views and conclusions contained in the software and documentation are those
-    of the authors and should not be interpreted as representing official policies,
-    either expressed or implied, of the FreeBSD Project.
-
-
 ## PromisesObjC
 
 

+ 0 - 71
Pods/Target Support Files/Pods-Asteria-NotificationServiceExtension/Pods-Asteria-NotificationServiceExtension-acknowledgements.plist

@@ -567,39 +567,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 			<key>Type</key>
 			<string>PSGroupSpecifier</string>
 		</dict>
-		<dict>
-			<key>FooterText</key>
-			<string>All files are released under the MIT License:
-
-    The MIT License (MIT)
-
-    Copyright (c) 2013-2016 PayPal Holdings, Inc.
-
-    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:
-
-    The above copyright notice and this permission notice shall be included in
-    all copies or substantial portions of the Software.
-
-    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.
-</string>
-			<key>License</key>
-			<string>MIT</string>
-			<key>Title</key>
-			<string>CardIO</string>
-			<key>Type</key>
-			<string>PSGroupSpecifier</string>
-		</dict>
 		<dict>
 			<key>FooterText</key>
 			<string>Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved.
@@ -3191,44 +3158,6 @@ SOFTWARE.
 			<key>Type</key>
 			<string>PSGroupSpecifier</string>
 		</dict>
-		<dict>
-			<key>FooterText</key>
-			<string>The PayPalMobile header files and the PayPal iOS SDK Sample App are released under the BSD License:
-
-    Copyright (c) 2014-2016 PayPal Holdings, Inc.
-    All rights reserved.
-
-    Redistribution and use in source and binary forms, with or without
-    modification, are permitted provided that the following conditions are met:
-
-    1. Redistributions of source code must retain the above copyright notice, this
-       list of conditions and the following disclaimer.
-    2. Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-
-    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
-    ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-    The views and conclusions contained in the software and documentation are those
-    of the authors and should not be interpreted as representing official policies,
-    either expressed or implied, of the FreeBSD Project.
-</string>
-			<key>License</key>
-			<string>BSD</string>
-			<key>Title</key>
-			<string>PayPal-iOS-SDK</string>
-			<key>Type</key>
-			<string>PSGroupSpecifier</string>
-		</dict>
 		<dict>
 			<key>FooterText</key>
 			<string>

Разлика између датотеке није приказан због своје велике величине
+ 3 - 3
Pods/Target Support Files/Pods-Asteria-NotificationServiceExtension/Pods-Asteria-NotificationServiceExtension.debug.xcconfig


Разлика између датотеке није приказан због своје велике величине
+ 3 - 3
Pods/Target Support Files/Pods-Asteria-NotificationServiceExtension/Pods-Asteria-NotificationServiceExtension.release.xcconfig


+ 0 - 59
Pods/Target Support Files/Pods-Asteria/Pods-Asteria-acknowledgements.markdown

@@ -520,33 +520,6 @@ Copyright (C) 2017 Tencent Bugly, Inc. All rights reserved.
 MIT
 
 
-## CardIO
-
-All files are released under the MIT License:
-
-    The MIT License (MIT)
-
-    Copyright (c) 2013-2016 PayPal Holdings, Inc.
-
-    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:
-
-    The above copyright notice and this permission notice shall be included in
-    all copies or substantial portions of the Software.
-
-    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.
-
-
 ## FBAEMKit
 
 Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved.
@@ -2970,38 +2943,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
 
 
-## PayPal-iOS-SDK
-
-The PayPalMobile header files and the PayPal iOS SDK Sample App are released under the BSD License:
-
-    Copyright (c) 2014-2016 PayPal Holdings, Inc.
-    All rights reserved.
-
-    Redistribution and use in source and binary forms, with or without
-    modification, are permitted provided that the following conditions are met:
-
-    1. Redistributions of source code must retain the above copyright notice, this
-       list of conditions and the following disclaimer.
-    2. Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-
-    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
-    ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-    The views and conclusions contained in the software and documentation are those
-    of the authors and should not be interpreted as representing official policies,
-    either expressed or implied, of the FreeBSD Project.
-
-
 ## PromisesObjC
 
 

+ 0 - 71
Pods/Target Support Files/Pods-Asteria/Pods-Asteria-acknowledgements.plist

@@ -567,39 +567,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 			<key>Type</key>
 			<string>PSGroupSpecifier</string>
 		</dict>
-		<dict>
-			<key>FooterText</key>
-			<string>All files are released under the MIT License:
-
-    The MIT License (MIT)
-
-    Copyright (c) 2013-2016 PayPal Holdings, Inc.
-
-    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:
-
-    The above copyright notice and this permission notice shall be included in
-    all copies or substantial portions of the Software.
-
-    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.
-</string>
-			<key>License</key>
-			<string>MIT</string>
-			<key>Title</key>
-			<string>CardIO</string>
-			<key>Type</key>
-			<string>PSGroupSpecifier</string>
-		</dict>
 		<dict>
 			<key>FooterText</key>
 			<string>Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved.
@@ -3191,44 +3158,6 @@ SOFTWARE.
 			<key>Type</key>
 			<string>PSGroupSpecifier</string>
 		</dict>
-		<dict>
-			<key>FooterText</key>
-			<string>The PayPalMobile header files and the PayPal iOS SDK Sample App are released under the BSD License:
-
-    Copyright (c) 2014-2016 PayPal Holdings, Inc.
-    All rights reserved.
-
-    Redistribution and use in source and binary forms, with or without
-    modification, are permitted provided that the following conditions are met:
-
-    1. Redistributions of source code must retain the above copyright notice, this
-       list of conditions and the following disclaimer.
-    2. Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-
-    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
-    ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-    The views and conclusions contained in the software and documentation are those
-    of the authors and should not be interpreted as representing official policies,
-    either expressed or implied, of the FreeBSD Project.
-</string>
-			<key>License</key>
-			<string>BSD</string>
-			<key>Title</key>
-			<string>PayPal-iOS-SDK</string>
-			<key>Type</key>
-			<string>PSGroupSpecifier</string>
-		</dict>
 		<dict>
 			<key>FooterText</key>
 			<string>

Разлика између датотеке није приказан због своје велике величине
+ 3 - 3
Pods/Target Support Files/Pods-Asteria/Pods-Asteria.debug.xcconfig


Разлика између датотеке није приказан због своје велике величине
+ 3 - 3
Pods/Target Support Files/Pods-Asteria/Pods-Asteria.release.xcconfig