Add button to take pictures or load images from gallery

At the moment not functional and nothing is done with the data
This commit is contained in:
Roland Geider
2021-05-07 13:49:15 +02:00
parent 431f749674
commit b9229b0ea3
6 changed files with 170 additions and 50 deletions

View File

@@ -68,7 +68,7 @@ android {
defaultConfig {
// Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "de.wger.flutter"
minSdkVersion 16
minSdkVersion 21
targetSdkVersion 30
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName

View File

@@ -10,6 +10,9 @@
<action android:name="android.intent.action.VIEW" />
<data android:scheme="https" />
</intent>
<intent>
<action android:name="android.media.action.IMAGE_CAPTURE" />
</intent>
</queries>
<application android:usesCleartextTraffic="true"/>
</manifest>