You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,14 @@ npx cap sync
11
11
12
12
#### Android
13
13
14
+
The barcode scanner plugin requires a minimum Android SDK target of 26. This is higher than the default that comes with your Capacitor application. You can update this value in your `android/variables.gradle` file.
15
+
16
+
```gradle
17
+
ext {
18
+
minSdkVersion = 26
19
+
}
20
+
```
21
+
14
22
You will need to modify the `allprojects > repositories` section in your `android/build.gradle` file to include the Outsystems repository. Your `android/build.gradle` file should look similar to this after adding the repository.
15
23
16
24
```gradle
@@ -33,6 +41,10 @@ allprojects {
33
41
}
34
42
```
35
43
44
+
#### iOS
45
+
46
+
The barcode scanner uses the camera on the device. Ensure you configure the Privacy - Camera Usage Description in your Info.plist file so that your application can access the device's camera.
Copy file name to clipboardExpand all lines: plugin/README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,14 @@ npx cap sync
11
11
12
12
#### Android
13
13
14
+
The barcode scanner plugin requires a minimum Android SDK target of 26. This is higher than the default that comes with your Capacitor application. You can update this value in your `android/variables.gradle` file.
15
+
16
+
```gradle
17
+
ext {
18
+
minSdkVersion = 26
19
+
}
20
+
```
21
+
14
22
You will need to modify the `allprojects > repositories` section in your `android/build.gradle` file to include the Outsystems repository. Your `android/build.gradle` file should look similar to this after adding the repository.
15
23
16
24
```gradle
@@ -33,6 +41,10 @@ allprojects {
33
41
}
34
42
```
35
43
44
+
#### iOS
45
+
46
+
The barcode scanner uses the camera on the device. Ensure you configure the Privacy - Camera Usage Description in your Info.plist file so that your application can access the device's camera.
0 commit comments