@carviz/capacitor-camera-preview 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CarvizCapacitorCameraPreview.podspec +17 -0
- package/LICENSE +22 -0
- package/README.md +229 -0
- package/android/.project +17 -0
- package/android/build.gradle +57 -0
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +8 -0
- package/android/gradle.properties +18 -0
- package/android/gradlew +248 -0
- package/android/gradlew.bat +92 -0
- package/android/proguard-rules.pro +21 -0
- package/android/settings.gradle +2 -0
- package/android/src/androidTest/java/com/getcapacitor/android/ExampleInstrumentedTest.java +26 -0
- package/android/src/main/AndroidManifest.xml +5 -0
- package/android/src/main/java/com/ahm/capacitor/camera/preview/CameraActivity.java +831 -0
- package/android/src/main/java/com/ahm/capacitor/camera/preview/CameraPreview.java +396 -0
- package/android/src/main/java/com/ahm/capacitor/camera/preview/CustomSurfaceView.java +23 -0
- package/android/src/main/java/com/ahm/capacitor/camera/preview/CustomTextureView.java +29 -0
- package/android/src/main/java/com/ahm/capacitor/camera/preview/Preview.java +384 -0
- package/android/src/main/java/com/ahm/capacitor/camera/preview/TapGestureDetector.java +24 -0
- package/android/src/main/res/layout/bridge_layout_main.xml +15 -0
- package/android/src/main/res/layout/camera_activity.xml +68 -0
- package/android/src/main/res/values/camera_ids.xml +4 -0
- package/android/src/main/res/values/camera_theme.xml +9 -0
- package/android/src/main/res/values/colors.xml +3 -0
- package/android/src/main/res/values/strings.xml +3 -0
- package/android/src/main/res/values/styles.xml +3 -0
- package/android/src/test/java/com/getcapacitor/ExampleUnitTest.java +18 -0
- package/dist/esm/definitions.d.ts +86 -0
- package/dist/esm/definitions.js +2 -0
- package/dist/esm/definitions.js.map +1 -0
- package/dist/esm/index.d.ts +4 -0
- package/dist/esm/index.js +7 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/web.d.ts +24 -0
- package/dist/esm/web.js +120 -0
- package/dist/esm/web.js.map +1 -0
- package/dist/plugin.cjs.js +134 -0
- package/dist/plugin.cjs.js.map +1 -0
- package/dist/plugin.js +137 -0
- package/dist/plugin.js.map +1 -0
- package/ios/Plugin/CameraController.swift +483 -0
- package/ios/Plugin/Info.plist +24 -0
- package/ios/Plugin/Plugin.h +10 -0
- package/ios/Plugin/Plugin.m +16 -0
- package/ios/Plugin/Plugin.swift +324 -0
- package/ios/Plugin/UIImage.swift +56 -0
- package/ios/Plugin.xcodeproj/project.pbxproj +599 -0
- package/ios/Plugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/ios/Plugin.xcworkspace/contents.xcworkspacedata +10 -0
- package/ios/Plugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/ios/PluginTests/Info.plist +22 -0
- package/ios/PluginTests/PluginTests.swift +16 -0
- package/ios/Podfile +16 -0
- package/ios/Podfile.lock +22 -0
- package/package.json +85 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
require 'json'
|
|
2
|
+
|
|
3
|
+
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
4
|
+
|
|
5
|
+
Pod::Spec.new do |s|
|
|
6
|
+
s.name = 'CarvizCapacitorCameraPreview'
|
|
7
|
+
s.version = package['version']
|
|
8
|
+
s.summary = package['description']
|
|
9
|
+
s.license = package['license']
|
|
10
|
+
s.homepage = 'https://github.com/GetCarviz/capacitor-camera-preview.git'
|
|
11
|
+
s.author = package['author']
|
|
12
|
+
s.source = { :git => 'https://github.com/GetCarviz/capacitor-camera-preview.git', :tag => s.version.to_s }
|
|
13
|
+
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
|
|
14
|
+
s.ios.deployment_target = '13.0'
|
|
15
|
+
s.dependency 'Capacitor'
|
|
16
|
+
s.swift_version = '5.1'
|
|
17
|
+
end
|
package/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Ariel Hernandez Musa
|
|
4
|
+
Copyright (c) 2024 Michael Wolz
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
<h1 align="center">📷</h1>
|
|
2
|
+
|
|
3
|
+
<h3 align="center">Capacitor Camera Preview</h3>
|
|
4
|
+
<p align="center"><strong><code>@carviz/capacitor-camera-preview</code></strong></p>
|
|
5
|
+
<br>
|
|
6
|
+
<p align="center"><strong>CAPACITOR 7</strong></p><br>
|
|
7
|
+
|
|
8
|
+
<p align="center">
|
|
9
|
+
Capacitor plugin that allows camera interaction from Javascript and HTML<br>(based on <a href="https://github.com/capacitor-community/camera-preview" target="_blank">@capacitor-community/camera-preview</a> which itself was based on cordova-plugin-camera-preview).
|
|
10
|
+
|
|
11
|
+
This fork focuses on the camera functionality of the plugin by enabling high resolution photo output and better focus handling for new iPhone models.
|
|
12
|
+
</p>
|
|
13
|
+
|
|
14
|
+
<br>
|
|
15
|
+
|
|
16
|
+
Version 7 of this plugin requires Capacitor 7.
|
|
17
|
+
|
|
18
|
+
**PR's are greatly appreciated.**
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
# Installation
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
yarn add @carviz/capacitor-camera-preview
|
|
25
|
+
|
|
26
|
+
or
|
|
27
|
+
|
|
28
|
+
npm install @carviz/capacitor-camera-preview
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Then run
|
|
32
|
+
```
|
|
33
|
+
npx cap sync
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Extra Android installation steps
|
|
37
|
+
**Important** `camera-preview` 3+ requires Gradle 8. If you are using Gradle 4, please use [version 2](https://github.com/capacitor-community/camera-preview/tree/v2.1.0) of this plugin.
|
|
38
|
+
|
|
39
|
+
Open `android/app/src/main/AndroidManifest.xml` and above the closing `</manifest>` tag add this line to request the CAMERA permission:
|
|
40
|
+
```xml
|
|
41
|
+
<uses-permission android:name="android.permission.CAMERA" />
|
|
42
|
+
```
|
|
43
|
+
For more help consult the [Capacitor docs](https://capacitorjs.com/docs/android/configuration#configuring-androidmanifestxml).
|
|
44
|
+
|
|
45
|
+
### Variables
|
|
46
|
+
|
|
47
|
+
This plugin will use the following project variables (defined in your app's `variables.gradle` file):
|
|
48
|
+
|
|
49
|
+
- `androidxExifInterfaceVersion`: version of `androidx.exifinterface:exifinterface` (default: `1.3.6`)
|
|
50
|
+
|
|
51
|
+
## Extra iOS installation steps
|
|
52
|
+
|
|
53
|
+
You will need to add two permissions to `Info.plist`. Follow the [Capacitor docs](https://capacitorjs.com/docs/ios/configuration#configuring-infoplist) and add permissions with the raw keys `NSCameraUsageDescription`.
|
|
54
|
+
|
|
55
|
+
## Extra Web installation steps
|
|
56
|
+
|
|
57
|
+
Add `import { CameraPreview } from '@capacitor-community/camera-preview';` in the file where you want to use the plugin.
|
|
58
|
+
|
|
59
|
+
then in html add `<div id="cameraPreview"></div>`
|
|
60
|
+
|
|
61
|
+
and `CameraPreview.start({ parent: "cameraPreview"});` will work.
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
# Methods
|
|
65
|
+
|
|
66
|
+
### start(options)
|
|
67
|
+
|
|
68
|
+
Starts the camera preview instance.
|
|
69
|
+
<br>
|
|
70
|
+
|
|
71
|
+
| Option | values | descriptions |
|
|
72
|
+
|------------------------------|--------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
73
|
+
| position | front \ rear | Show front or rear camera when start the preview. Defaults to front |
|
|
74
|
+
| width | number | The preview width in pixels, default window.screen.width (applicable to the android and ios platforms only) |
|
|
75
|
+
| height | number | The preview height in pixels, default window.screen.height (applicable to the android and ios platforms only) |
|
|
76
|
+
| x | number | The x origin, default 0 (applicable to the android and ios platforms only) |
|
|
77
|
+
| y | number | The y origin, default 0 (applicable to the android and ios platforms only) |
|
|
78
|
+
| toBack | boolean | Brings your html in front of your preview, default false (applicable to the android and ios platforms only) |
|
|
79
|
+
| paddingBottom | number | The preview bottom padding in pixes. Useful to keep the appropriate preview sizes when orientation changes (applicable to the android and ios platforms only) |
|
|
80
|
+
| rotateWhenOrientationChanged | boolean | Rotate preview when orientation changes (applicable to the ios platforms only; default value is true) |
|
|
81
|
+
| storeToFile | boolean | Capture images to a file and return back the file path instead of returning base64 encoded data, default false. |
|
|
82
|
+
| disableExifHeaderStripping | boolean | Disable automatic rotation of the image, and let the browser deal with it, default true (applicable to the android and ios platforms only) |
|
|
83
|
+
| enableHighResolution | boolean | Defaults to false - iOS only - Activate high resolution image capture so that output images are from the highest resolution on the device (photo quality) |
|
|
84
|
+
| lockAndroidOrientation | boolean | Locks device orientation when camera is showing, default false. (applicable to Android only) |
|
|
85
|
+
| enableOpacity | boolean | Make the camera preview see-through. Ideal for augmented reality uses. Default false (applicable to Android and web only) |
|
|
86
|
+
| enableZoom | boolean | Set if you can pinch to zoom. Default false (applicable to the android and ios platforms only) |
|
|
87
|
+
|
|
88
|
+
```javascript
|
|
89
|
+
import { CameraPreview, CameraPreviewOptions } from '@capacitor-community/camera-preview';
|
|
90
|
+
|
|
91
|
+
const cameraPreviewOptions: CameraPreviewOptions = {
|
|
92
|
+
position: 'rear',
|
|
93
|
+
height: 1920,
|
|
94
|
+
width: 1080
|
|
95
|
+
};
|
|
96
|
+
CameraPreview.start(cameraPreviewOptions);
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Remember to add the style below on your app's HTML or body element:
|
|
100
|
+
|
|
101
|
+
```css
|
|
102
|
+
ion-content {
|
|
103
|
+
--background: transparent;
|
|
104
|
+
}
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
Take into account that this will make transparent all ion-content on application, if you want to show camera preview only in one page, just add a custom class to your ion-content and make it transparent:
|
|
108
|
+
|
|
109
|
+
```css
|
|
110
|
+
.my-custom-camera-preview-content {
|
|
111
|
+
--background: transparent;
|
|
112
|
+
}
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
If the camera preview is not displaying after applying the above styles, apply transparent background color to the root div element of the parent component
|
|
116
|
+
Ex: VueJS >> App.vue component
|
|
117
|
+
```html
|
|
118
|
+
<template>
|
|
119
|
+
<ion-app id="app">
|
|
120
|
+
<ion-router-outlet />
|
|
121
|
+
</ion-app>
|
|
122
|
+
</template>
|
|
123
|
+
|
|
124
|
+
<style>
|
|
125
|
+
#app {
|
|
126
|
+
background-color: transparent !important;
|
|
127
|
+
}
|
|
128
|
+
<style>
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
### stop()
|
|
133
|
+
|
|
134
|
+
<info>Stops the camera preview instance.</info><br/>
|
|
135
|
+
|
|
136
|
+
```javascript
|
|
137
|
+
CameraPreview.stop();
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
### flip()
|
|
141
|
+
<info>Switch between rear and front camera only for android and ios, web is not supported</info>
|
|
142
|
+
```javascript
|
|
143
|
+
CameraPreview.flip()
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
### capture(options)
|
|
147
|
+
|
|
148
|
+
| Option | values | descriptions |
|
|
149
|
+
|----------------------|---------------|-------------------------------------------------------------------------------------------------|
|
|
150
|
+
| quality | number | (optional) The picture quality, 0 - 100, default 85 |
|
|
151
|
+
| width | number | (optional) The picture width, best fit respecting the aspect ratio of the device (Android only) |
|
|
152
|
+
| height | number | (optional) The picture height, best fit the aspect ratio of the device (Android only) |
|
|
153
|
+
|
|
154
|
+
<info>Take the picture. If width and height are not specified or are 0 it will use the defaults. If width and height are specified, it will choose a supported photo size that is closest to width and height specified and has closest aspect ratio to the preview (only on Android). The argument `quality` defaults to `85` and specifies the quality/compression value: `0=max compression`, `100=max quality`.</info>
|
|
155
|
+
|
|
156
|
+
```javascript
|
|
157
|
+
import { CameraPreviewPictureOptions } from '@capacitor-community/camera-preview';
|
|
158
|
+
|
|
159
|
+
const cameraPreviewPictureOptions: CameraPreviewPictureOptions = {
|
|
160
|
+
quality: 50
|
|
161
|
+
};
|
|
162
|
+
|
|
163
|
+
const result = await CameraPreview.capture(cameraPreviewPictureOptions);
|
|
164
|
+
const base64PictureData = result.value;
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
### captureSample(options)
|
|
168
|
+
|
|
169
|
+
| Option | values | descriptions |
|
|
170
|
+
|----------|---------------|----------------------------------------------------------------------|
|
|
171
|
+
| quality | number | (optional) The picture quality, 0 - 100, default 85 |
|
|
172
|
+
|
|
173
|
+
<info>Captures a sample image from the video stream. Only for Android and iOS, web implementation falls back to `capture` method. This can be used to perform real-time analysis on the current frame in the video. The argument `quality` defaults to `85` and specifies the quality/compression value: `0=max compression`, `100=max quality`.</info><br/>
|
|
174
|
+
|
|
175
|
+
```javascript
|
|
176
|
+
import { CameraSampleOptions } from '@capacitor-community/camera-preview';
|
|
177
|
+
|
|
178
|
+
const cameraSampleOptions: CameraSampleOptions = {
|
|
179
|
+
quality: 50
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
const result = await CameraPreview.captureSample(cameraSampleOptions);
|
|
183
|
+
const base64PictureData = result.value;
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
### getSupportedFlashModes()
|
|
187
|
+
|
|
188
|
+
<info>Get the flash modes supported by the camera device currently started. Returns an array containing supported flash modes. See <code>[FLASH_MODE](#camera_Settings.FlashMode)</code> for possible values that can be returned</info><br/>
|
|
189
|
+
|
|
190
|
+
```javascript
|
|
191
|
+
import { CameraPreviewFlashMode } from '@capacitor-community/camera-preview';
|
|
192
|
+
|
|
193
|
+
const flashModes = await CameraPreview.getSupportedFlashModes();
|
|
194
|
+
const supportedFlashModes: CameraPreviewFlashMode[] = flashModes.result;
|
|
195
|
+
```
|
|
196
|
+
### setFlashMode(options)
|
|
197
|
+
|
|
198
|
+
<info>Set the flash mode. See <code>[FLASH_MODE](#camera_Settings.FlashMode)</code> for details about the possible values for flashMode.</info><br/>
|
|
199
|
+
|
|
200
|
+
```javascript
|
|
201
|
+
const CameraPreviewFlashMode: CameraPreviewFlashMode = 'torch';
|
|
202
|
+
|
|
203
|
+
CameraPreview.setFlashMode(cameraPreviewFlashMode);
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
### setOpacity(options: CameraOpacityOptions): Promise<{}>; ---- ANDROID only
|
|
207
|
+
|
|
208
|
+
<info>Set the opacity for the camera preview</info><br/>
|
|
209
|
+
|
|
210
|
+
```javascript
|
|
211
|
+
const myCamera = CameraPreview.start({enableOpacity: true});
|
|
212
|
+
myCamera.setOpacity({opacity: 0.4});
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
# Settings
|
|
216
|
+
|
|
217
|
+
<a name="camera_Settings.FlashMode"></a>
|
|
218
|
+
|
|
219
|
+
### FLASH_MODE
|
|
220
|
+
|
|
221
|
+
<info>Flash mode settings:</info><br/>
|
|
222
|
+
|
|
223
|
+
| Name | Type | Default | Note |
|
|
224
|
+
| ------- | ------- | ------- | ------------- |
|
|
225
|
+
| OFF | string | off | |
|
|
226
|
+
| ON | string | on | |
|
|
227
|
+
| AUTO | string | auto | |
|
|
228
|
+
| RED_EYE | string | red-eye | Android Only |
|
|
229
|
+
| TORCH | string | torch | |
|
package/android/.project
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<projectDescription>
|
|
3
|
+
<name>android</name>
|
|
4
|
+
<comment>Project android created by Buildship.</comment>
|
|
5
|
+
<projects>
|
|
6
|
+
</projects>
|
|
7
|
+
<buildSpec>
|
|
8
|
+
<buildCommand>
|
|
9
|
+
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
|
|
10
|
+
<arguments>
|
|
11
|
+
</arguments>
|
|
12
|
+
</buildCommand>
|
|
13
|
+
</buildSpec>
|
|
14
|
+
<natures>
|
|
15
|
+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
|
|
16
|
+
</natures>
|
|
17
|
+
</projectDescription>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
ext {
|
|
2
|
+
junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2'
|
|
3
|
+
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1'
|
|
4
|
+
androidxExifInterfaceVersion = project.hasProperty('androidxExifInterfaceVersion') ? rootProject.ext.androidxExifInterfaceVersion : '1.3.6'
|
|
5
|
+
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5'
|
|
6
|
+
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1'
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
buildscript {
|
|
10
|
+
repositories {
|
|
11
|
+
mavenCentral()
|
|
12
|
+
google()
|
|
13
|
+
}
|
|
14
|
+
dependencies {
|
|
15
|
+
classpath 'com.android.tools.build:gradle:8.6.0'
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
apply plugin: 'com.android.library'
|
|
20
|
+
|
|
21
|
+
android {
|
|
22
|
+
namespace "com.ahm.capacitor.camera.preview.capacitorcamerapreview"
|
|
23
|
+
compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35
|
|
24
|
+
defaultConfig {
|
|
25
|
+
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 23
|
|
26
|
+
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 35
|
|
27
|
+
versionCode 1
|
|
28
|
+
versionName "1.0"
|
|
29
|
+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
30
|
+
}
|
|
31
|
+
buildTypes {
|
|
32
|
+
release {
|
|
33
|
+
minifyEnabled false
|
|
34
|
+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
lintOptions {
|
|
38
|
+
abortOnError false
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
repositories {
|
|
43
|
+
google()
|
|
44
|
+
mavenCentral()
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
dependencies {
|
|
49
|
+
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
50
|
+
implementation project(':capacitor-android')
|
|
51
|
+
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
|
|
52
|
+
implementation "androidx.exifinterface:exifinterface:$androidxExifInterfaceVersion"
|
|
53
|
+
testImplementation "junit:junit:$junitVersion"
|
|
54
|
+
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
|
|
55
|
+
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
|
|
56
|
+
}
|
|
57
|
+
|
|
Binary file
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#Fri Jan 31 23:28:23 EST 2025
|
|
2
|
+
distributionBase=GRADLE_USER_HOME
|
|
3
|
+
distributionPath=wrapper/dists
|
|
4
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
|
|
5
|
+
networkTimeout=10000
|
|
6
|
+
validateDistributionUrl=true
|
|
7
|
+
zipStoreBase=GRADLE_USER_HOME
|
|
8
|
+
zipStorePath=wrapper/dists
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Project-wide Gradle settings.
|
|
2
|
+
|
|
3
|
+
# IDE (e.g. Android Studio) users:
|
|
4
|
+
# Gradle settings configured through the IDE *will override*
|
|
5
|
+
# any settings specified in this file.
|
|
6
|
+
|
|
7
|
+
# For more details on how to configure your build environment visit
|
|
8
|
+
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
|
9
|
+
|
|
10
|
+
# Specifies the JVM arguments used for the daemon process.
|
|
11
|
+
# The setting is particularly useful for tweaking memory settings.
|
|
12
|
+
org.gradle.jvmargs=-Xmx1536m
|
|
13
|
+
android.useAndroidX=true
|
|
14
|
+
# When configured, Gradle will run in incubating parallel mode.
|
|
15
|
+
# This option should only be used with decoupled projects. More details, visit
|
|
16
|
+
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
|
17
|
+
# org.gradle.parallel=true
|
|
18
|
+
|
package/android/gradlew
ADDED
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
#
|
|
4
|
+
# Copyright © 2015-2021 the original authors.
|
|
5
|
+
#
|
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
# you may not use this file except in compliance with the License.
|
|
8
|
+
# You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
# See the License for the specific language governing permissions and
|
|
16
|
+
# limitations under the License.
|
|
17
|
+
#
|
|
18
|
+
|
|
19
|
+
##############################################################################
|
|
20
|
+
#
|
|
21
|
+
# Gradle start up script for POSIX generated by Gradle.
|
|
22
|
+
#
|
|
23
|
+
# Important for running:
|
|
24
|
+
#
|
|
25
|
+
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
|
|
26
|
+
# noncompliant, but you have some other compliant shell such as ksh or
|
|
27
|
+
# bash, then to run this script, type that shell name before the whole
|
|
28
|
+
# command line, like:
|
|
29
|
+
#
|
|
30
|
+
# ksh Gradle
|
|
31
|
+
#
|
|
32
|
+
# Busybox and similar reduced shells will NOT work, because this script
|
|
33
|
+
# requires all of these POSIX shell features:
|
|
34
|
+
# * functions;
|
|
35
|
+
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
|
|
36
|
+
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
|
|
37
|
+
# * compound commands having a testable exit status, especially «case»;
|
|
38
|
+
# * various built-in commands including «command», «set», and «ulimit».
|
|
39
|
+
#
|
|
40
|
+
# Important for patching:
|
|
41
|
+
#
|
|
42
|
+
# (2) This script targets any POSIX shell, so it avoids extensions provided
|
|
43
|
+
# by Bash, Ksh, etc; in particular arrays are avoided.
|
|
44
|
+
#
|
|
45
|
+
# The "traditional" practice of packing multiple parameters into a
|
|
46
|
+
# space-separated string is a well documented source of bugs and security
|
|
47
|
+
# problems, so this is (mostly) avoided, by progressively accumulating
|
|
48
|
+
# options in "$@", and eventually passing that to Java.
|
|
49
|
+
#
|
|
50
|
+
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
|
|
51
|
+
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
|
|
52
|
+
# see the in-line comments for details.
|
|
53
|
+
#
|
|
54
|
+
# There are tweaks for specific operating systems such as AIX, CygWin,
|
|
55
|
+
# Darwin, MinGW, and NonStop.
|
|
56
|
+
#
|
|
57
|
+
# (3) This script is generated from the Groovy template
|
|
58
|
+
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
|
59
|
+
# within the Gradle project.
|
|
60
|
+
#
|
|
61
|
+
# You can find Gradle at https://github.com/gradle/gradle/.
|
|
62
|
+
#
|
|
63
|
+
##############################################################################
|
|
64
|
+
|
|
65
|
+
# Attempt to set APP_HOME
|
|
66
|
+
|
|
67
|
+
# Resolve links: $0 may be a link
|
|
68
|
+
app_path=$0
|
|
69
|
+
|
|
70
|
+
# Need this for daisy-chained symlinks.
|
|
71
|
+
while
|
|
72
|
+
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
|
|
73
|
+
[ -h "$app_path" ]
|
|
74
|
+
do
|
|
75
|
+
ls=$( ls -ld "$app_path" )
|
|
76
|
+
link=${ls#*' -> '}
|
|
77
|
+
case $link in #(
|
|
78
|
+
/*) app_path=$link ;; #(
|
|
79
|
+
*) app_path=$APP_HOME$link ;;
|
|
80
|
+
esac
|
|
81
|
+
done
|
|
82
|
+
|
|
83
|
+
# This is normally unused
|
|
84
|
+
# shellcheck disable=SC2034
|
|
85
|
+
APP_BASE_NAME=${0##*/}
|
|
86
|
+
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
|
87
|
+
|
|
88
|
+
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
|
89
|
+
MAX_FD=maximum
|
|
90
|
+
|
|
91
|
+
warn () {
|
|
92
|
+
echo "$*"
|
|
93
|
+
} >&2
|
|
94
|
+
|
|
95
|
+
die () {
|
|
96
|
+
echo
|
|
97
|
+
echo "$*"
|
|
98
|
+
echo
|
|
99
|
+
exit 1
|
|
100
|
+
} >&2
|
|
101
|
+
|
|
102
|
+
# OS specific support (must be 'true' or 'false').
|
|
103
|
+
cygwin=false
|
|
104
|
+
msys=false
|
|
105
|
+
darwin=false
|
|
106
|
+
nonstop=false
|
|
107
|
+
case "$( uname )" in #(
|
|
108
|
+
CYGWIN* ) cygwin=true ;; #(
|
|
109
|
+
Darwin* ) darwin=true ;; #(
|
|
110
|
+
MSYS* | MINGW* ) msys=true ;; #(
|
|
111
|
+
NONSTOP* ) nonstop=true ;;
|
|
112
|
+
esac
|
|
113
|
+
|
|
114
|
+
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
# Determine the Java command to use to start the JVM.
|
|
118
|
+
if [ -n "$JAVA_HOME" ] ; then
|
|
119
|
+
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
|
120
|
+
# IBM's JDK on AIX uses strange locations for the executables
|
|
121
|
+
JAVACMD=$JAVA_HOME/jre/sh/java
|
|
122
|
+
else
|
|
123
|
+
JAVACMD=$JAVA_HOME/bin/java
|
|
124
|
+
fi
|
|
125
|
+
if [ ! -x "$JAVACMD" ] ; then
|
|
126
|
+
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
|
127
|
+
|
|
128
|
+
Please set the JAVA_HOME variable in your environment to match the
|
|
129
|
+
location of your Java installation."
|
|
130
|
+
fi
|
|
131
|
+
else
|
|
132
|
+
JAVACMD=java
|
|
133
|
+
if ! command -v java >/dev/null 2>&1
|
|
134
|
+
then
|
|
135
|
+
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
|
136
|
+
|
|
137
|
+
Please set the JAVA_HOME variable in your environment to match the
|
|
138
|
+
location of your Java installation."
|
|
139
|
+
fi
|
|
140
|
+
fi
|
|
141
|
+
|
|
142
|
+
# Increase the maximum file descriptors if we can.
|
|
143
|
+
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
|
144
|
+
case $MAX_FD in #(
|
|
145
|
+
max*)
|
|
146
|
+
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
|
|
147
|
+
# shellcheck disable=SC3045
|
|
148
|
+
MAX_FD=$( ulimit -H -n ) ||
|
|
149
|
+
warn "Could not query maximum file descriptor limit"
|
|
150
|
+
esac
|
|
151
|
+
case $MAX_FD in #(
|
|
152
|
+
'' | soft) :;; #(
|
|
153
|
+
*)
|
|
154
|
+
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
|
|
155
|
+
# shellcheck disable=SC3045
|
|
156
|
+
ulimit -n "$MAX_FD" ||
|
|
157
|
+
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
|
158
|
+
esac
|
|
159
|
+
fi
|
|
160
|
+
|
|
161
|
+
# Collect all arguments for the java command, stacking in reverse order:
|
|
162
|
+
# * args from the command line
|
|
163
|
+
# * the main class name
|
|
164
|
+
# * -classpath
|
|
165
|
+
# * -D...appname settings
|
|
166
|
+
# * --module-path (only if needed)
|
|
167
|
+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
|
|
168
|
+
|
|
169
|
+
# For Cygwin or MSYS, switch paths to Windows format before running java
|
|
170
|
+
if "$cygwin" || "$msys" ; then
|
|
171
|
+
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
|
|
172
|
+
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
|
|
173
|
+
|
|
174
|
+
JAVACMD=$( cygpath --unix "$JAVACMD" )
|
|
175
|
+
|
|
176
|
+
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
|
177
|
+
for arg do
|
|
178
|
+
if
|
|
179
|
+
case $arg in #(
|
|
180
|
+
-*) false ;; # don't mess with options #(
|
|
181
|
+
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
|
|
182
|
+
[ -e "$t" ] ;; #(
|
|
183
|
+
*) false ;;
|
|
184
|
+
esac
|
|
185
|
+
then
|
|
186
|
+
arg=$( cygpath --path --ignore --mixed "$arg" )
|
|
187
|
+
fi
|
|
188
|
+
# Roll the args list around exactly as many times as the number of
|
|
189
|
+
# args, so each arg winds up back in the position where it started, but
|
|
190
|
+
# possibly modified.
|
|
191
|
+
#
|
|
192
|
+
# NB: a `for` loop captures its iteration list before it begins, so
|
|
193
|
+
# changing the positional parameters here affects neither the number of
|
|
194
|
+
# iterations, nor the values presented in `arg`.
|
|
195
|
+
shift # remove old arg
|
|
196
|
+
set -- "$@" "$arg" # push replacement arg
|
|
197
|
+
done
|
|
198
|
+
fi
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
|
202
|
+
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
|
203
|
+
|
|
204
|
+
# Collect all arguments for the java command;
|
|
205
|
+
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
|
|
206
|
+
# shell script including quotes and variable substitutions, so put them in
|
|
207
|
+
# double quotes to make sure that they get re-expanded; and
|
|
208
|
+
# * put everything else in single quotes, so that it's not re-expanded.
|
|
209
|
+
|
|
210
|
+
set -- \
|
|
211
|
+
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
|
212
|
+
-classpath "$CLASSPATH" \
|
|
213
|
+
org.gradle.wrapper.GradleWrapperMain \
|
|
214
|
+
"$@"
|
|
215
|
+
|
|
216
|
+
# Stop when "xargs" is not available.
|
|
217
|
+
if ! command -v xargs >/dev/null 2>&1
|
|
218
|
+
then
|
|
219
|
+
die "xargs is not available"
|
|
220
|
+
fi
|
|
221
|
+
|
|
222
|
+
# Use "xargs" to parse quoted args.
|
|
223
|
+
#
|
|
224
|
+
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
|
|
225
|
+
#
|
|
226
|
+
# In Bash we could simply go:
|
|
227
|
+
#
|
|
228
|
+
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
|
|
229
|
+
# set -- "${ARGS[@]}" "$@"
|
|
230
|
+
#
|
|
231
|
+
# but POSIX shell has neither arrays nor command substitution, so instead we
|
|
232
|
+
# post-process each arg (as a line of input to sed) to backslash-escape any
|
|
233
|
+
# character that might be a shell metacharacter, then use eval to reverse
|
|
234
|
+
# that process (while maintaining the separation between arguments), and wrap
|
|
235
|
+
# the whole thing up as a single "set" statement.
|
|
236
|
+
#
|
|
237
|
+
# This will of course break if any of these variables contains a newline or
|
|
238
|
+
# an unmatched quote.
|
|
239
|
+
#
|
|
240
|
+
|
|
241
|
+
eval "set -- $(
|
|
242
|
+
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
|
|
243
|
+
xargs -n1 |
|
|
244
|
+
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
|
|
245
|
+
tr '\n' ' '
|
|
246
|
+
)" '"$@"'
|
|
247
|
+
|
|
248
|
+
exec "$JAVACMD" "$@"
|