Skip to content

Commit

Permalink
Revert "Enhances App Compatibility: Adds Support for CarPlay (#95)"
Browse files Browse the repository at this point in the history
This reverts commit 6a84342.
  • Loading branch information
phanan committed Jun 7, 2024
1 parent 3cf9d34 commit c56647d
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 48 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Unit Tests
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
run:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
- run: flutter pub get
- run: flutter test
2 changes: 1 addition & 1 deletion ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment this line to define a global platform for your project
platform :ios, '14.0'
platform :ios, '12.0'

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
Expand Down
5 changes: 3 additions & 2 deletions ios/Runner/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import Flutter
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
return true
}
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}
28 changes: 0 additions & 28 deletions ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -57,31 +57,3 @@
<string>Require acces to camera to support login via QR code</string>
</dict>
</plist>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationSupportsMultipleScenes</key>
<true />
<key>UISceneConfigurations</key>
<dict>
<key>CPTemplateApplicationSceneSessionRoleApplication</key>
<array>
<dict>
<key>UISceneConfigurationName</key>
<string>CarPlay Configuration</string>
<key>UISceneDelegateClassName</key>
<string>flutter_carplay.FlutterCarPlaySceneDelegate</string>
</dict>
</array>
<key>UIWindowSceneSessionRoleApplication</key>
<array>
<dict>
<key>UISceneConfigurationName</key>
<string>Default Configuration</string>
<key>UISceneDelegateClassName</key>
<string>$(PRODUCT_MODULE_NAME).SceneDelegate</string>
<key>UISceneStoryboardFile</key>
<string>Main</string>
</dict>
</array>
</dict>
</dict>
17 changes: 0 additions & 17 deletions ios/Runner/SceneDelegate.swift

This file was deleted.

0 comments on commit c56647d

Please sign in to comment.