Skip to content
Merged

Sync #2188

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 9 additions & 3 deletions .github/workflows/all_plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
name: integration test (iOS)
needs: [analyze, test]
timeout-minutes: 60
runs-on: macos-14
runs-on: macos-15
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
Expand All @@ -85,6 +85,11 @@ jobs:
node-version: 16
cache: 'yarn'
cache-dependency-path: example/server/yarn.lock

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable

- name: "Install Tools"
run: |
./.github/workflows/scripts/install-tools.sh
Expand All @@ -111,7 +116,7 @@ jobs:

- name: "Start iOS Simulator"
run: |
xcrun simctl boot "iPhone 15"
xcrun simctl boot "iPhone 16"

- name: "Run Flutter Driver tests on iOS"
working-directory: example
Expand All @@ -121,7 +126,7 @@ jobs:
name: integration test (Android)
needs: [analyze, test]
timeout-minutes: 60
runs-on: macos-13
runs-on: macos-15
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
Expand Down Expand Up @@ -167,6 +172,7 @@ jobs:
with:
api-level: 34
arch: x86_64
emulator-boot-timeout: 1400
working-directory: example
script: |
sleep 15;
Expand Down
2 changes: 1 addition & 1 deletion example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ flutter {

dependencies {
implementation 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:6.7.0'
implementation 'com.google.android.gms:play-services-wallet:19.1.0'
implementation 'com.google.android.gms:play-services-wallet:19.3.0'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
2 changes: 1 addition & 1 deletion example/ios/Flutter/AppFrameworkInfo.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>12.0</string>
<string>13.0</string>
</dict>
</plist>

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
shouldUseLaunchSchemeArgsEnv = "YES">
<MacroExpansion>
<BuildableReference
Expand Down Expand Up @@ -71,6 +72,7 @@
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions example/ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<dict>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>CFBundleAllowMixedLocalizations</key>
<string>true</string>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
Expand Down Expand Up @@ -39,13 +41,13 @@
<true/>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>CFBundleAllowMixedLocalizations</key>
<string>true</string>
<key>NSCameraUsageDescription</key>
<string>Scan your card to add it automatically</string>
<key>NSCameraUsageDescription
&lt;string&gt;To scan cards&lt;/string&gt;</key>
<string>To scan cards</string>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
Expand All @@ -65,7 +67,5 @@
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
</dict>
</plist>
92 changes: 0 additions & 92 deletions example/lib/screens/regional_payment_methods/sofort_screen.dart

This file was deleted.

7 changes: 0 additions & 7 deletions example/lib/screens/screens.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import 'package:stripe_example/screens/regional_payment_methods/klarna_screen.da
import 'package:stripe_example/screens/regional_payment_methods/p24_screen.dart';
import 'package:stripe_example/screens/regional_payment_methods/paypal_screen.dart';
import 'package:stripe_example/screens/regional_payment_methods/revolutpay_screen.dart';
import 'package:stripe_example/screens/regional_payment_methods/sofort_screen.dart';
import 'package:stripe_example/screens/regional_payment_methods/us_bank_account_direct_debit_screen.dart';
import 'package:stripe_example/screens/regional_payment_methods/us_bank_account_screen.dart';
import 'package:stripe_example/screens/setup_future_payments/setup_future_payments_screen.dart';
Expand Down Expand Up @@ -291,12 +290,6 @@ class Example extends StatelessWidget {
),
builder: (context) => IdealScreen(),
),
Example(
title: 'Sofort',
leading: SizedBox(),
builder: (context) => SofortScreen(),
platformsSupported: [DevicePlatform.android, DevicePlatform.ios],
),
Example(
title: 'Aubecs',
builder: (context) => AubecsExample(),
Expand Down
Loading
Loading