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

Commit 8f89f84

Browse files
committed
test for macos successfull
1 parent 27bf63e commit 8f89f84

File tree

6 files changed

+26
-10
lines changed

6 files changed

+26
-10
lines changed

packages/in_app_purchase/in_app_purchase/example/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
platform :ios, '9.0'
2+
platform :ios, '11.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

packages/in_app_purchase/in_app_purchase/example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@
351351
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
352352
GCC_WARN_UNUSED_FUNCTION = YES;
353353
GCC_WARN_UNUSED_VARIABLE = YES;
354-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
354+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
355355
MTL_ENABLE_DEBUG_INFO = YES;
356356
ONLY_ACTIVE_ARCH = YES;
357357
SDKROOT = iphoneos;
@@ -401,7 +401,7 @@
401401
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
402402
GCC_WARN_UNUSED_FUNCTION = YES;
403403
GCC_WARN_UNUSED_VARIABLE = YES;
404-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
404+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
405405
MTL_ENABLE_DEBUG_INFO = NO;
406406
SDKROOT = iphoneos;
407407
TARGETED_DEVICE_FAMILY = "1,2";

packages/in_app_purchase/in_app_purchase/example/ios/Runner/Configuration.storekit

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
2+
"identifier" : "B64995DE",
3+
"nonRenewingSubscriptions" : [
4+
5+
],
26
"products" : [
37
{
48
"displayPrice" : "0.99",
@@ -45,6 +49,9 @@
4549
{
4650
"adHocOffers" : [
4751

52+
],
53+
"codeOffers" : [
54+
4855
],
4956
"displayPrice" : "3.99",
5057
"familyShareable" : false,
@@ -67,6 +74,9 @@
6774
{
6875
"adHocOffers" : [
6976

77+
],
78+
"codeOffers" : [
79+
7080
],
7181
"displayPrice" : "5.99",
7282
"familyShareable" : false,
@@ -90,7 +100,7 @@
90100
}
91101
],
92102
"version" : {
93-
"major" : 1,
103+
"major" : 2,
94104
"minor" : 0
95105
}
96106
}

packages/in_app_purchase/in_app_purchase_storekit/example/lib/main.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// found in the LICENSE file.
44

55
import 'dart:async';
6+
import 'dart:io';
67

78
import 'package:flutter/material.dart';
89
import 'package:in_app_purchase_platform_interface/in_app_purchase_platform_interface.dart';

packages/in_app_purchase/in_app_purchase_storekit/example/macos/Runner.xcodeproj/project.pbxproj

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
04DDE7A8284F229A00721DD0 /* ProductRequestHandlerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 04DDE7A7284F229A00721DD0 /* ProductRequestHandlerTests.m */; };
3030
04DDE7AB284F22EF00721DD0 /* Stubs.m in Sources */ = {isa = PBXBuildFile; fileRef = 04DDE7AA284F22EF00721DD0 /* Stubs.m */; };
3131
04DDE7AD284F230E00721DD0 /* TranslatorTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 04DDE7AC284F230E00721DD0 /* TranslatorTests.m */; };
32-
04DDE7B2284F308100721DD0 /* Configuration.storekit in Resources */ = {isa = PBXBuildFile; fileRef = 04DDE7B1284F308100721DD0 /* Configuration.storekit */; };
3332
335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; };
3433
33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; };
3534
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
@@ -70,6 +69,7 @@
7069
/* End PBXCopyFilesBuildPhase section */
7170

7271
/* Begin PBXFileReference section */
72+
0449B24328DF2F550068BEAA /* Configuration.storekit */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = Configuration.storekit; path = ../../../in_app_purchase/example/ios/Runner/Configuration.storekit; sourceTree = "<group>"; };
7373
04DDE793284F209500721DD0 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
7474
04DDE79D284F20E000721DD0 /* FIAPPaymentQueueDeleteTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FIAPPaymentQueueDeleteTests.m; sourceTree = "<group>"; };
7575
04DDE79F284F212000721DD0 /* FIATransactionCacheTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FIATransactionCacheTests.m; sourceTree = "<group>"; };
@@ -157,6 +157,7 @@
157157
33CC10E42044A3C60003C045 = {
158158
isa = PBXGroup;
159159
children = (
160+
0449B24328DF2F550068BEAA /* Configuration.storekit */,
160161
33FAB671232836740065AC1E /* Runner */,
161162
33CEB47122A05771004F2AC0 /* Flutter */,
162163
04DDE794284F209500721DD0 /* RunnerTests */,
@@ -295,7 +296,6 @@
295296
33CC10EC2044A3C60003C045 = {
296297
CreatedOnToolsVersion = 9.2;
297298
LastSwiftMigration = 1100;
298-
ProvisioningStyle = Automatic;
299299
SystemCapabilities = {
300300
com.apple.Sandbox = {
301301
enabled = 1;
@@ -342,7 +342,6 @@
342342
buildActionMask = 2147483647;
343343
files = (
344344
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */,
345-
04DDE7B2284F308100721DD0 /* Configuration.storekit in Resources */,
346345
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */,
347346
);
348347
runOnlyForDeploymentPostprocessing = 0;
@@ -663,8 +662,11 @@
663662
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
664663
CLANG_ENABLE_MODULES = YES;
665664
CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
665+
CODE_SIGN_IDENTITY = "Apple Development";
666+
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "-";
666667
CODE_SIGN_STYLE = Automatic;
667668
COMBINE_HIDPI_IMAGES = YES;
669+
DEVELOPMENT_TEAM = "";
668670
FRAMEWORK_SEARCH_PATHS = (
669671
"$(inherited)",
670672
"$(PROJECT_DIR)/Flutter/ephemeral",
@@ -795,8 +797,11 @@
795797
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
796798
CLANG_ENABLE_MODULES = YES;
797799
CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
800+
CODE_SIGN_IDENTITY = "Apple Development";
801+
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "-";
798802
CODE_SIGN_STYLE = Automatic;
799803
COMBINE_HIDPI_IMAGES = YES;
804+
DEVELOPMENT_TEAM = "";
800805
FRAMEWORK_SEARCH_PATHS = (
801806
"$(inherited)",
802807
"$(PROJECT_DIR)/Flutter/ephemeral",
@@ -821,8 +826,11 @@
821826
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
822827
CLANG_ENABLE_MODULES = YES;
823828
CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements;
829+
CODE_SIGN_IDENTITY = "Apple Development";
830+
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "-";
824831
CODE_SIGN_STYLE = Automatic;
825832
COMBINE_HIDPI_IMAGES = YES;
833+
DEVELOPMENT_TEAM = "";
826834
FRAMEWORK_SEARCH_PATHS = (
827835
"$(inherited)",
828836
"$(PROJECT_DIR)/Flutter/ephemeral",

packages/in_app_purchase/in_app_purchase_storekit/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@
6060
ReferencedContainer = "container:Runner.xcodeproj">
6161
</BuildableReference>
6262
</BuildableProductRunnable>
63-
<StoreKitConfigurationFileReference
64-
identifier = "../../../../../../../../Configuration.storekit">
65-
</StoreKitConfigurationFileReference>
6663
</LaunchAction>
6764
<ProfileAction
6865
buildConfiguration = "Release"

0 commit comments

Comments
 (0)