-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-0.2.0' into main
- Loading branch information
Showing
50 changed files
with
1,092 additions
and
123 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.example.odin"> | ||
package="com.odin.odin"> | ||
<!-- Flutter needs it to communicate with the running application | ||
to allow setting breakpoints, to provide hot reload, etc. | ||
--> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
</manifest> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
</manifest> |
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,43 +1,64 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.example.odin"> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
<application | ||
android:label="Odin" | ||
android:icon="@mipmap/ic_launcher"> | ||
<activity | ||
android:name=".MainActivity" | ||
android:launchMode="singleTop" | ||
android:theme="@style/LaunchTheme" | ||
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" | ||
android:hardwareAccelerated="true" | ||
android:windowSoftInputMode="adjustResize"> | ||
<!-- Specifies an Android theme to apply to this Activity as soon as | ||
package="com.odin.odin"> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
<application | ||
android:label="Odin" | ||
android:icon="@mipmap/ic_launcher"> | ||
<activity | ||
android:name=".MainActivity" | ||
android:launchMode="singleTask" | ||
android:theme="@style/LaunchTheme" | ||
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" | ||
android:hardwareAccelerated="true" | ||
android:windowSoftInputMode="adjustResize"> | ||
<!-- Specifies an Android theme to apply to this Activity as soon as | ||
the Android process has started. This theme is visible to the user | ||
while the Flutter UI initializes. After that, this theme continues | ||
to determine the Window background behind the Flutter UI. --> | ||
<meta-data | ||
android:name="io.flutter.embedding.android.NormalTheme" | ||
android:resource="@style/NormalTheme" | ||
/> | ||
<!-- Displays an Android View that continues showing the launch screen | ||
<meta-data | ||
android:name="io.flutter.embedding.android.NormalTheme" | ||
android:resource="@style/NormalTheme" | ||
/> | ||
<!-- Displays an Android View that continues showing the launch screen | ||
Drawable until Flutter paints its first frame, then this splash | ||
screen fades out. A splash screen is useful to avoid any visual | ||
gap between the end of Android's launch screen and the painting of | ||
Flutter's first frame. --> | ||
<meta-data | ||
android:name="io.flutter.embedding.android.SplashScreenDrawable" | ||
android:resource="@drawable/launch_background" | ||
/> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN"/> | ||
<category android:name="android.intent.category.LAUNCHER"/> | ||
</intent-filter> | ||
</activity> | ||
<!-- Don't delete the meta-data below. | ||
<meta-data | ||
android:name="io.flutter.embedding.android.SplashScreenDrawable" | ||
android:resource="@drawable/launch_background" | ||
/> | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<category android:name="android.intent.category.BROWSABLE" /> | ||
<data | ||
android:scheme="https" | ||
android:host="getodin.page.link" /> | ||
</intent-filter> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<!-- Don't delete the meta-data below. | ||
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> | ||
<meta-data | ||
android:name="flutterEmbedding" | ||
android:value="2" /> | ||
</application> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
</manifest> | ||
<meta-data | ||
android:name="flutterEmbedding" | ||
android:value="2" /> | ||
<provider | ||
android:name="androidx.core.content.FileProvider" | ||
android:authorities="com.odin.odin.fileProvider" | ||
android:exported="false" | ||
android:grantUriPermissions="true" | ||
> | ||
<meta-data | ||
android:name="android.support.FILE_PROVIDER_PATHS" | ||
android:resource="@xml/filepaths" | ||
/> | ||
</provider> | ||
</application> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
</manifest> |
2 changes: 1 addition & 1 deletion
2
...n/kotlin/com/example/odin/MainActivity.kt → ...main/kotlin/com/odin/odin/MainActivity.kt
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,4 +1,4 @@ | ||
package com.example.odin | ||
package com.odin.odin | ||
|
||
import io.flutter.embedding.android.FlutterActivity | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
PODS: | ||
- DKImagePickerController/Core (4.3.2): | ||
- DKImagePickerController/ImageDataManager | ||
- DKImagePickerController/Resource | ||
- DKImagePickerController/ImageDataManager (4.3.2) | ||
- DKImagePickerController/PhotoGallery (4.3.2): | ||
- DKImagePickerController/Core | ||
- DKPhotoGallery | ||
- DKImagePickerController/Resource (4.3.2) | ||
- DKPhotoGallery (0.0.17): | ||
- DKPhotoGallery/Core (= 0.0.17) | ||
- DKPhotoGallery/Model (= 0.0.17) | ||
- DKPhotoGallery/Preview (= 0.0.17) | ||
- DKPhotoGallery/Resource (= 0.0.17) | ||
- SDWebImage | ||
- SwiftyGif | ||
- DKPhotoGallery/Core (0.0.17): | ||
- DKPhotoGallery/Model | ||
- DKPhotoGallery/Preview | ||
- SDWebImage | ||
- SwiftyGif | ||
- DKPhotoGallery/Model (0.0.17): | ||
- SDWebImage | ||
- SwiftyGif | ||
- DKPhotoGallery/Preview (0.0.17): | ||
- DKPhotoGallery/Model | ||
- DKPhotoGallery/Resource | ||
- SDWebImage | ||
- SwiftyGif | ||
- DKPhotoGallery/Resource (0.0.17): | ||
- SDWebImage | ||
- SwiftyGif | ||
- file_picker (0.0.1): | ||
- DKImagePickerController/PhotoGallery | ||
- Flutter | ||
- Flutter (1.0.0) | ||
- fluttertoast (0.0.2): | ||
- Flutter | ||
- Toast | ||
- path_provider_ios (0.0.1): | ||
- Flutter | ||
- SDWebImage (5.12.1): | ||
- SDWebImage/Core (= 5.12.1) | ||
- SDWebImage/Core (5.12.1) | ||
- shared_preferences (0.0.1): | ||
- Flutter | ||
- SwiftyGif (5.4.0) | ||
- Toast (4.0.0) | ||
- url_launcher (0.0.1): | ||
- Flutter | ||
|
||
DEPENDENCIES: | ||
- file_picker (from `.symlinks/plugins/file_picker/ios`) | ||
- Flutter (from `Flutter`) | ||
- fluttertoast (from `.symlinks/plugins/fluttertoast/ios`) | ||
- path_provider_ios (from `.symlinks/plugins/path_provider_ios/ios`) | ||
- shared_preferences (from `.symlinks/plugins/shared_preferences/ios`) | ||
- url_launcher (from `.symlinks/plugins/url_launcher/ios`) | ||
|
||
SPEC REPOS: | ||
trunk: | ||
- DKImagePickerController | ||
- DKPhotoGallery | ||
- SDWebImage | ||
- SwiftyGif | ||
- Toast | ||
|
||
EXTERNAL SOURCES: | ||
file_picker: | ||
:path: ".symlinks/plugins/file_picker/ios" | ||
Flutter: | ||
:path: Flutter | ||
fluttertoast: | ||
:path: ".symlinks/plugins/fluttertoast/ios" | ||
path_provider_ios: | ||
:path: ".symlinks/plugins/path_provider_ios/ios" | ||
shared_preferences: | ||
:path: ".symlinks/plugins/shared_preferences/ios" | ||
url_launcher: | ||
:path: ".symlinks/plugins/url_launcher/ios" | ||
|
||
SPEC CHECKSUMS: | ||
DKImagePickerController: b5eb7f7a388e4643264105d648d01f727110fc3d | ||
DKPhotoGallery: fdfad5125a9fdda9cc57df834d49df790dbb4179 | ||
file_picker: 3e6c3790de664ccf9b882732d9db5eaf6b8d4eb1 | ||
Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a | ||
fluttertoast: 6122fa75143e992b1d3470f61000f591a798cc58 | ||
path_provider_ios: 7d7ce634493af4477d156294792024ec3485acd5 | ||
SDWebImage: 4dc3e42d9ec0c1028b960a33ac6b637bb432207b | ||
shared_preferences: 5033afbb22d372e15aff8ff766df9021b845f273 | ||
SwiftyGif: 5d4af95df24caf1c570dbbcb32a3b8a0763bc6d7 | ||
Toast: 91b396c56ee72a5790816f40d3a94dd357abc196 | ||
url_launcher: b6e016d912f04be9f5bf6e8e82dc599b7ba59649 | ||
|
||
PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c | ||
|
||
COCOAPODS: 1.10.2 |
Oops, something went wrong.