-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from vrtdev/feature/nullsafety-dio4
Migrate to nullsatefy and Dio 4
- Loading branch information
Showing
27 changed files
with
404 additions
and
389 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
13 changes: 0 additions & 13 deletions
13
example/android/app/src/main/java/com/example/example/MainActivity.java
This file was deleted.
Oops, something went wrong.
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,8 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar"> | ||
<!-- Show a splash screen on the activity. Automatically removed when | ||
Flutter draws its first frame --> | ||
<item name="android:windowBackground">@drawable/launch_background</item> | ||
</style> | ||
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar"> | ||
</style> | ||
</resources> |
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,18 @@ | ||
# | ||
# NOTE: This podspec is NOT to be published. It is only used as a local source! | ||
# This is a generated file; do not edit or check into version control. | ||
# | ||
|
||
Pod::Spec.new do |s| | ||
s.name = 'Flutter' | ||
s.version = '1.0.0' | ||
s.summary = 'High-performance, high-fidelity mobile apps.' | ||
s.homepage = 'https://flutter.io' | ||
s.license = { :type => 'MIT' } | ||
s.author = { 'Flutter Dev Team' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s } | ||
s.ios.deployment_target = '8.0' | ||
# Framework linking is handled by Flutter tooling, not CocoaPods. | ||
# Add a placeholder to satisfy `s.dependency 'Flutter'` plugin podspecs. | ||
s.vendored_frameworks = 'path/to/nothing' | ||
end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
PODS: | ||
- Flutter (1.0.0) | ||
- FMDB (2.7.5): | ||
- FMDB/standard (= 2.7.5) | ||
- FMDB/standard (2.7.5) | ||
- sqflite (0.0.2): | ||
- Flutter | ||
- FMDB (>= 2.7.5) | ||
|
||
DEPENDENCIES: | ||
- Flutter (from `Flutter`) | ||
- sqflite (from `.symlinks/plugins/sqflite/ios`) | ||
|
||
SPEC REPOS: | ||
trunk: | ||
- FMDB | ||
|
||
EXTERNAL SOURCES: | ||
Flutter: | ||
:path: Flutter | ||
sqflite: | ||
:path: ".symlinks/plugins/sqflite/ios" | ||
|
||
SPEC CHECKSUMS: | ||
Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c | ||
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a | ||
sqflite: 6d358c025f5b867b29ed92fc697fd34924e11904 | ||
|
||
PODFILE CHECKSUM: 4f075935f8d51cabd6114ffcdb57f90115d955bd | ||
|
||
COCOAPODS: 1.10.1 |
Oops, something went wrong.