File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 0.3.0+3
2+
3+ * Log a more detailed warning at build time about the previous AndroidX
4+ migration.
5+
16## 0.3.0+2
27
38* Fix issue with calculating iOS image orientation in certain edge cases.
Original file line number Diff line number Diff line change 1+ def PLUGIN = " camera" ;
2+ def ANDROIDX_WARNING = " flutterPluginsAndroidXWarning" ;
3+ gradle. buildFinished { buildResult ->
4+ if (buildResult. failure && ! rootProject. ext. has(ANDROIDX_WARNING )) {
5+ println ' *********************************************************'
6+ println ' WARNING: This version of ' + PLUGIN + ' will break your Android build if it or its dependencies aren\' t compatible with AndroidX.'
7+ println ' See https://goo.gl/CP92wY for more information on the problem and how to fix it.'
8+ println ' This warning prints for all Android build failures. The real root cause of the error may be unrelated.'
9+ println ' *********************************************************'
10+ rootProject. ext. set(ANDROIDX_WARNING , true );
11+ }
12+ }
13+
114group ' io.flutter.plugins.camera'
215version ' 1.0-SNAPSHOT'
316
Original file line number Diff line number Diff line change 11name : camera
22description : A Flutter plugin for getting information about and controlling the
33 camera on Android and iOS. Supports previewing the camera feed and capturing images.
4- version : 0.3.0+2
4+ version : 0.3.0+3
55authors :
66 -
Flutter Team <[email protected] > 77 -
Luigi Agosti <[email protected] >
You can’t perform that action at this time.
0 commit comments