-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies and fix deprecation warnings for widget_toolkit_b…
…iometrics and widget_toolkit_pin
- Loading branch information
1 parent
a5ff681
commit b07fce4
Showing
24 changed files
with
375 additions
and
328 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 22 additions & 8 deletions
30
packages/widget_toolkit_biometrics/example/android/settings.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,25 @@ | ||
include ':app' | ||
pluginManagement { | ||
def flutterSdkPath = { | ||
def properties = new Properties() | ||
file("local.properties").withInputStream { properties.load(it) } | ||
def flutterSdkPath = properties.getProperty("flutter.sdk") | ||
assert flutterSdkPath != null, "flutter.sdk not set in local.properties" | ||
return flutterSdkPath | ||
}() | ||
|
||
def localPropertiesFile = new File(rootProject.projectDir, "local.properties") | ||
def properties = new Properties() | ||
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle") | ||
|
||
assert localPropertiesFile.exists() | ||
localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } | ||
repositories { | ||
google() | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
} | ||
|
||
def flutterSdkPath = properties.getProperty("flutter.sdk") | ||
assert flutterSdkPath != null, "flutter.sdk not set in local.properties" | ||
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" | ||
plugins { | ||
id "dev.flutter.flutter-plugin-loader" version "1.0.0" | ||
id "com.android.application" version "7.2.0" apply false | ||
id "org.jetbrains.kotlin.android" version "1.8.0" apply false | ||
} | ||
|
||
include ":app" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
packages/widget_toolkit_biometrics/example/ios/Podfile.lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
PODS: | ||
- app_settings (5.1.1): | ||
- Flutter | ||
- Flutter (1.0.0) | ||
- local_auth_darwin (0.0.1): | ||
- Flutter | ||
- FlutterMacOS | ||
- shared_preferences_foundation (0.0.1): | ||
- Flutter | ||
- FlutterMacOS | ||
- url_launcher_ios (0.0.1): | ||
- Flutter | ||
|
||
DEPENDENCIES: | ||
- app_settings (from `.symlinks/plugins/app_settings/ios`) | ||
- Flutter (from `Flutter`) | ||
- local_auth_darwin (from `.symlinks/plugins/local_auth_darwin/darwin`) | ||
- shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`) | ||
- url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`) | ||
|
||
EXTERNAL SOURCES: | ||
app_settings: | ||
:path: ".symlinks/plugins/app_settings/ios" | ||
Flutter: | ||
:path: Flutter | ||
local_auth_darwin: | ||
:path: ".symlinks/plugins/local_auth_darwin/darwin" | ||
shared_preferences_foundation: | ||
:path: ".symlinks/plugins/shared_preferences_foundation/darwin" | ||
url_launcher_ios: | ||
:path: ".symlinks/plugins/url_launcher_ios/ios" | ||
|
||
SPEC CHECKSUMS: | ||
app_settings: 017320c6a680cdc94c799949d95b84cb69389ebc | ||
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 | ||
local_auth_darwin: 66e40372f1c29f383a314c738c7446e2f7fdadc3 | ||
shared_preferences_foundation: fcdcbc04712aee1108ac7fda236f363274528f78 | ||
url_launcher_ios: 5334b05cef931de560670eeae103fd3e431ac3fe | ||
|
||
PODFILE CHECKSUM: c4c93c5f6502fe2754f48404d3594bf779584011 | ||
|
||
COCOAPODS: 1.15.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...et_toolkit_biometrics/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/widget_toolkit_biometrics/example/ios/Runner/AppDelegate.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.