anyline-ocr-react-native-module 55.2.0 → 55.2.1
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/{ios/AnylineReact.podspec → AnylineReact.podspec} +3 -3
- package/android/.gradle/7.6/checksums/checksums.lock +0 -0
- package/android/.gradle/7.6/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/7.6/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +1 -1
- package/android/build.gradle +1 -1
- package/android/src/main/java/com/anyline/reactnative/AnylineSDKPlugin.java +19 -7
- package/index.js +3 -2
- package/ios/AnylineSDKPlugin.m +30 -13
- package/package.json +12 -2
- package/android/.gradle/7.6/checksums/md5-checksums.bin +0 -0
- package/android/.gradle/7.6/checksums/sha1-checksums.bin +0 -0
- package/android/.gradle/7.6/executionHistory/executionHistory.lock +0 -0
- package/android/.gradle/7.6/fileHashes/fileHashes.bin +0 -0
- package/android/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/android/.gradle/config.properties +0 -2
- package/android/.idea/PipelineViewerConfig.xml +0 -6
- package/android/.idea/appInsightsSettings.xml +0 -28
- package/android/.idea/caches/deviceStreaming.xml +0 -486
- package/android/.idea/compiler.xml +0 -6
- package/android/.idea/gradle.xml +0 -19
- package/android/.idea/jarRepositories.xml +0 -30
- package/android/.idea/material_theme_project_new.xml +0 -13
- package/android/.idea/migrations.xml +0 -10
- package/android/.idea/misc.xml +0 -9
- package/android/.idea/runConfigurations.xml +0 -17
- package/android/.idea/vcs.xml +0 -6
- package/android/local.properties +0 -8
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
require "json"
|
|
2
2
|
|
|
3
|
-
package = JSON.parse(File.read(File.join(__dir__, "
|
|
3
|
+
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
4
4
|
|
|
5
5
|
Pod::Spec.new do |s|
|
|
6
6
|
s.name = "AnylineReact"
|
|
@@ -17,8 +17,8 @@ Pod::Spec.new do |s|
|
|
|
17
17
|
|
|
18
18
|
s.source = { :git => "https://github.com/Anyline/anyline-ocr-react-native-module.git", :tag => "#{s.version}" }
|
|
19
19
|
|
|
20
|
-
s.source_files
|
|
21
|
-
s.dependency "Anyline", "55.2.
|
|
20
|
+
s.source_files = 'ios/**/*.{h,m,swift}'
|
|
21
|
+
s.dependency "Anyline", "55.2.1"
|
|
22
22
|
s.dependency "React"
|
|
23
23
|
|
|
24
24
|
end
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Thu Jun 26 13:03:14 CEST 2025
|
|
2
2
|
gradle.version=7.6
|
package/android/build.gradle
CHANGED
|
@@ -61,7 +61,7 @@ repositories {
|
|
|
61
61
|
|
|
62
62
|
dependencies {
|
|
63
63
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
64
|
-
implementation 'io.anyline:anylinesdk:55.2.
|
|
64
|
+
implementation 'io.anyline:anylinesdk:55.2.1'
|
|
65
65
|
implementation "com.facebook.react:react-native:+"
|
|
66
66
|
implementation("com.google.android.material:material:1.9.0")
|
|
67
67
|
implementation 'androidx.multidex:multidex:2.0.1'
|
|
@@ -39,6 +39,15 @@ class AnylineSDKPlugin extends ReactContextBaseJavaModule implements ResultRepor
|
|
|
39
39
|
System.loadLibrary("anylineCore");
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
+
// We're creating a static variable to retain the SDK instance in order to prevent crashes due to garbage collection cleaning up the SDK.
|
|
43
|
+
protected static final AnylineSdk anylineSdk = AnylineSdk.INSTANCE;
|
|
44
|
+
// We're creating a static variable to store the last license used to initialize the SDK
|
|
45
|
+
private static String license;
|
|
46
|
+
|
|
47
|
+
private static boolean isInitializedWithLicenseKey(String requestedLicense) {
|
|
48
|
+
return (license != null && AnylineSdk.isInitialized() && license.equals(requestedLicense));
|
|
49
|
+
}
|
|
50
|
+
|
|
42
51
|
public static final String REACT_CLASS = "AnylineSDKPlugin";
|
|
43
52
|
public static final String EXTRA_CONFIG_JSON = "EXTRA_CONFIG_JSON";
|
|
44
53
|
public static final String EXTRA_SCANVIEW_INITIALIZATION_PARAMETERS = "EXTRA_SCANVIEW_INITIALIZATION_PARAMETERS";
|
|
@@ -53,7 +62,6 @@ class AnylineSDKPlugin extends ReactContextBaseJavaModule implements ResultRepor
|
|
|
53
62
|
private static final String E_ERROR = "E_ERROR";
|
|
54
63
|
private JSONObject configObject;
|
|
55
64
|
private ReactApplicationContext reactContext;
|
|
56
|
-
private String license;
|
|
57
65
|
private JSONObject options;
|
|
58
66
|
private Callback onResultCallback;
|
|
59
67
|
private Callback onErrorCallback;
|
|
@@ -94,7 +102,6 @@ class AnylineSDKPlugin extends ReactContextBaseJavaModule implements ResultRepor
|
|
|
94
102
|
try {
|
|
95
103
|
promise.resolve(String.valueOf(AnylineSdk.getExpiryDate()));
|
|
96
104
|
} catch (LicenseException e) {
|
|
97
|
-
e.printStackTrace();
|
|
98
105
|
promise.reject(E_ERROR, e.getMessage());
|
|
99
106
|
}
|
|
100
107
|
}
|
|
@@ -133,7 +140,6 @@ class AnylineSDKPlugin extends ReactContextBaseJavaModule implements ResultRepor
|
|
|
133
140
|
);
|
|
134
141
|
}
|
|
135
142
|
} catch (JSONException e) {
|
|
136
|
-
e.printStackTrace();
|
|
137
143
|
returnError(e.getMessage());
|
|
138
144
|
}
|
|
139
145
|
}
|
|
@@ -145,6 +151,11 @@ class AnylineSDKPlugin extends ReactContextBaseJavaModule implements ResultRepor
|
|
|
145
151
|
|
|
146
152
|
@ReactMethod
|
|
147
153
|
public void setupAnylineSDKWithCacheConfig(String license, boolean enableOfflineCache, final Promise promise) {
|
|
154
|
+
if (isInitializedWithLicenseKey(license)) {
|
|
155
|
+
promise.resolve(true);
|
|
156
|
+
return;
|
|
157
|
+
}
|
|
158
|
+
|
|
148
159
|
CacheConfig.Preset cacheConfig = CacheConfig.Preset.Default.INSTANCE;
|
|
149
160
|
if (enableOfflineCache) {
|
|
150
161
|
cacheConfig = CacheConfig.Preset.OfflineLicenseEventCachingEnabled.INSTANCE;
|
|
@@ -156,7 +167,6 @@ class AnylineSDKPlugin extends ReactContextBaseJavaModule implements ResultRepor
|
|
|
156
167
|
promise.resolve(true);
|
|
157
168
|
}
|
|
158
169
|
} catch (LicenseException e) {
|
|
159
|
-
e.printStackTrace();
|
|
160
170
|
if (promise != null) {
|
|
161
171
|
promise.reject(E_ERROR, e.getMessage());
|
|
162
172
|
}
|
|
@@ -170,14 +180,18 @@ class AnylineSDKPlugin extends ReactContextBaseJavaModule implements ResultRepor
|
|
|
170
180
|
|
|
171
181
|
@ReactMethod
|
|
172
182
|
public void initSdkWithCacheConfig(String license, boolean enableOfflineCache) {
|
|
183
|
+
if (isInitializedWithLicenseKey(license)) {
|
|
184
|
+
return;
|
|
185
|
+
}
|
|
186
|
+
|
|
173
187
|
CacheConfig.Preset cacheConfig = CacheConfig.Preset.Default.INSTANCE;
|
|
174
188
|
if (enableOfflineCache) {
|
|
175
189
|
cacheConfig = CacheConfig.Preset.OfflineLicenseEventCachingEnabled.INSTANCE;
|
|
176
190
|
}
|
|
177
191
|
try {
|
|
178
192
|
AnylineSdk.init(license, reactContext, "", cacheConfig, wrapperConfig);
|
|
193
|
+
this.license = license;
|
|
179
194
|
} catch (LicenseException e) {
|
|
180
|
-
e.printStackTrace();
|
|
181
195
|
returnError(e.getMessage());
|
|
182
196
|
}
|
|
183
197
|
}
|
|
@@ -313,10 +327,8 @@ class AnylineSDKPlugin extends ReactContextBaseJavaModule implements ResultRepor
|
|
|
313
327
|
returnError("No ViewPlugin in config. Please check your configuration.");
|
|
314
328
|
}
|
|
315
329
|
} catch (LicenseException e) {
|
|
316
|
-
e.printStackTrace();
|
|
317
330
|
returnError("LICENSE ERROR: " + e.getMessage());
|
|
318
331
|
} catch (JSONException e) {
|
|
319
|
-
e.printStackTrace();
|
|
320
332
|
returnError("JSON ERROR: " + e.getMessage());
|
|
321
333
|
}
|
|
322
334
|
}
|
package/index.js
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import {NativeModules} from 'react-native';
|
|
2
|
-
import AnylineOCR from 'anyline-ocr-react-native-module';
|
|
3
2
|
import {version as pluginVersion} from './package.json';
|
|
4
3
|
|
|
5
4
|
const Buffer = require('buffer/').Buffer;
|
|
6
5
|
|
|
7
|
-
|
|
6
|
+
const AnylineOCR = NativeModules.AnylineSDKPlugin;
|
|
7
|
+
|
|
8
|
+
export default AnylineOCR;
|
|
8
9
|
|
|
9
10
|
/**
|
|
10
11
|
* Decrypts the License and returns the date till it's valid
|
package/ios/AnylineSDKPlugin.m
CHANGED
|
@@ -4,14 +4,16 @@
|
|
|
4
4
|
#import "ALPluginScanViewController.h"
|
|
5
5
|
#import "ALPluginHelper.h"
|
|
6
6
|
|
|
7
|
+
// We're creating a static variable to retain the SDK instance in order to prevent crashes due to memory clean up.
|
|
8
|
+
static AnylineSDK *anylineSDK;
|
|
9
|
+
// We're creating a static variable to store the last license used to initialize the SDK
|
|
10
|
+
static NSString *license;
|
|
11
|
+
|
|
7
12
|
ALWrapperConfig *wrapperConfig = nil;
|
|
8
13
|
|
|
9
14
|
@interface AnylineSDKPlugin()
|
|
10
15
|
|
|
11
|
-
@property (nonatomic, strong) ALViewPluginConfig *conf;
|
|
12
|
-
|
|
13
16
|
@property (nonatomic, copy) NSString *callbackId;
|
|
14
|
-
@property (nonatomic, copy) NSString *appKey;
|
|
15
17
|
@property (nonatomic, assign) BOOL nativeBarcodeScanning;
|
|
16
18
|
@property (nonatomic, strong) NSDictionary *jsonConfigDictionary;
|
|
17
19
|
@property (nonatomic, strong) NSDictionary *ocrConfigDict;
|
|
@@ -21,7 +23,6 @@ ALWrapperConfig *wrapperConfig = nil;
|
|
|
21
23
|
@property (nonatomic, strong) RCTResponseSenderBlock onErrorCallback;
|
|
22
24
|
|
|
23
25
|
@property (nonatomic, copy) NSString *config;
|
|
24
|
-
@property (nonatomic, copy) NSString *licenseKey;
|
|
25
26
|
|
|
26
27
|
@property (nonatomic, copy) NSString *returnMethod;
|
|
27
28
|
|
|
@@ -35,6 +36,21 @@ ALWrapperConfig *wrapperConfig = nil;
|
|
|
35
36
|
RCTPromiseRejectBlock _rejectBlock;
|
|
36
37
|
}
|
|
37
38
|
|
|
39
|
+
+ (BOOL)isInitializedWithLicenseKey:(NSString *)requestedLicense {
|
|
40
|
+
return (license && [AnylineSDK isInitialized] && [license isEqualToString:requestedLicense]);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
- (instancetype)init {
|
|
44
|
+
self = [super init];
|
|
45
|
+
if (self) {
|
|
46
|
+
if (!anylineSDK) {
|
|
47
|
+
// Initialize the anylineSDK static variable
|
|
48
|
+
anylineSDK = [[AnylineSDK alloc] init];
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
return self;
|
|
52
|
+
}
|
|
53
|
+
|
|
38
54
|
RCT_EXPORT_MODULE();
|
|
39
55
|
- (UIView *)view {
|
|
40
56
|
return [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 0)];
|
|
@@ -75,10 +91,17 @@ RCT_EXPORT_METHOD(setupAnylineSDKWithCacheConfig:(NSString *)licenseKey
|
|
|
75
91
|
_resolveBlock = resolve;
|
|
76
92
|
_rejectBlock = reject;
|
|
77
93
|
self.returnMethod = @"promise";
|
|
78
|
-
self.licenseKey = licenseKey;
|
|
79
94
|
|
|
80
95
|
ALCacheConfig *cacheConfig = enableOfflineCache ? [ALCacheConfig offlineLicenseCachingEnabled] : nil;
|
|
81
96
|
NSError *error;
|
|
97
|
+
|
|
98
|
+
if ([AnylineSDKPlugin isInitializedWithLicenseKey:licenseKey]) {
|
|
99
|
+
[self returnSuccess:@"success"];
|
|
100
|
+
return;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
license = licenseKey;
|
|
104
|
+
|
|
82
105
|
BOOL success = [AnylineSDK setupWithLicenseKey:licenseKey cacheConfig:cacheConfig wrapperConfig:wrapperConfig error:&error];
|
|
83
106
|
|
|
84
107
|
NSString *errorString = nil;
|
|
@@ -210,16 +233,10 @@ RCT_EXPORT_METHOD(exportCachedEvents:(RCTPromiseResolveBlock)resolve rejecter:(R
|
|
|
210
233
|
NSDictionary *optionsDictionary = [dictionary objectForKey:@"options"];
|
|
211
234
|
self.jsonConfigDictionary = dictionary;
|
|
212
235
|
|
|
213
|
-
self.appKey = [dictionary objectForKey:@"license"];
|
|
214
|
-
if (!self.appKey) {
|
|
215
|
-
self.appKey = [dictionary objectForKey:@"licenseKey"];
|
|
216
|
-
}
|
|
217
|
-
|
|
218
236
|
BOOL nativeBarcodeScanning = [[optionsDictionary objectForKey:@"nativeBarcodeEnabled"] boolValue];
|
|
219
237
|
self.nativeBarcodeScanning = nativeBarcodeScanning ? nativeBarcodeScanning : NO;
|
|
220
238
|
|
|
221
239
|
self.jsonUIConf = [[ALJSONUIConfiguration alloc] initWithDictionary:optionsDictionary];
|
|
222
|
-
self.conf = [[ALViewPluginConfig alloc] initWithJSONDictionary:optionsDictionary error:&error];
|
|
223
240
|
self.ocrConfigDict = [dictionary objectForKey:@"ocr"];
|
|
224
241
|
|
|
225
242
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
@@ -227,7 +244,7 @@ RCT_EXPORT_METHOD(exportCachedEvents:(RCTPromiseResolveBlock)resolve rejecter:(R
|
|
|
227
244
|
|
|
228
245
|
if ([[scanMode uppercaseString] isEqualToString:[@"scan" uppercaseString]]) {
|
|
229
246
|
ALPluginScanViewController *pluginScanViewController =
|
|
230
|
-
[[ALPluginScanViewController alloc] initWithLicensekey:
|
|
247
|
+
[[ALPluginScanViewController alloc] initWithLicensekey:license
|
|
231
248
|
configuration:dictionary
|
|
232
249
|
uiConfiguration:self.jsonUIConf
|
|
233
250
|
initializationParamsStr:initializationParamsStr
|
|
@@ -241,7 +258,7 @@ RCT_EXPORT_METHOD(exportCachedEvents:(RCTPromiseResolveBlock)resolve rejecter:(R
|
|
|
241
258
|
}
|
|
242
259
|
} else {
|
|
243
260
|
ALPluginScanViewController *pluginScanViewController =
|
|
244
|
-
[[ALPluginScanViewController alloc] initWithLicensekey:
|
|
261
|
+
[[ALPluginScanViewController alloc] initWithLicensekey:license
|
|
245
262
|
configuration:dictionary
|
|
246
263
|
uiConfiguration:self.jsonUIConf
|
|
247
264
|
initializationParamsStr:initializationParamsStr
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anyline-ocr-react-native-module",
|
|
3
|
-
"version": "55.2.
|
|
3
|
+
"version": "55.2.1",
|
|
4
4
|
"description": "A Plugin for connecting Anyline with React-Native",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"reactnative",
|
|
@@ -24,5 +24,15 @@
|
|
|
24
24
|
"buffer": "^5.1.0"
|
|
25
25
|
},
|
|
26
26
|
"bundleDependencies": false,
|
|
27
|
-
"deprecated": false
|
|
27
|
+
"deprecated": false,
|
|
28
|
+
"react-native": {
|
|
29
|
+
"ios": {
|
|
30
|
+
"podspecPath": "./AnylineReact.podspec"
|
|
31
|
+
},
|
|
32
|
+
"android": {
|
|
33
|
+
"sourceDir": "./android",
|
|
34
|
+
"packageImportPath": "import com.anyline.reactnative.AnylinePackage;",
|
|
35
|
+
"packageInstance": "new AnylinePackage()"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
28
38
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="AppInsightsSettings">
|
|
4
|
-
<option name="tabSettings">
|
|
5
|
-
<map>
|
|
6
|
-
<entry key="Android Vitals">
|
|
7
|
-
<value>
|
|
8
|
-
<InsightsFilterSettings>
|
|
9
|
-
<option name="connection">
|
|
10
|
-
<ConnectionSetting>
|
|
11
|
-
<option name="appId" value="at.nineyards.anyline.anylinerecorder" />
|
|
12
|
-
</ConnectionSetting>
|
|
13
|
-
</option>
|
|
14
|
-
<option name="failureTypes">
|
|
15
|
-
<list>
|
|
16
|
-
<option value="FATAL" />
|
|
17
|
-
</list>
|
|
18
|
-
</option>
|
|
19
|
-
<option name="signal" value="SIGNAL_UNSPECIFIED" />
|
|
20
|
-
<option name="timeIntervalDays" value="SEVEN_DAYS" />
|
|
21
|
-
<option name="visibilityType" value="ALL" />
|
|
22
|
-
</InsightsFilterSettings>
|
|
23
|
-
</value>
|
|
24
|
-
</entry>
|
|
25
|
-
</map>
|
|
26
|
-
</option>
|
|
27
|
-
</component>
|
|
28
|
-
</project>
|
|
@@ -1,486 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="DeviceStreaming">
|
|
4
|
-
<option name="deviceSelectionList">
|
|
5
|
-
<list>
|
|
6
|
-
<PersistentDeviceSelectionData>
|
|
7
|
-
<option name="api" value="27" />
|
|
8
|
-
<option name="brand" value="DOCOMO" />
|
|
9
|
-
<option name="codename" value="F01L" />
|
|
10
|
-
<option name="id" value="F01L" />
|
|
11
|
-
<option name="labId" value="google" />
|
|
12
|
-
<option name="manufacturer" value="FUJITSU" />
|
|
13
|
-
<option name="name" value="F-01L" />
|
|
14
|
-
<option name="screenDensity" value="360" />
|
|
15
|
-
<option name="screenX" value="720" />
|
|
16
|
-
<option name="screenY" value="1280" />
|
|
17
|
-
</PersistentDeviceSelectionData>
|
|
18
|
-
<PersistentDeviceSelectionData>
|
|
19
|
-
<option name="api" value="34" />
|
|
20
|
-
<option name="brand" value="OPPO" />
|
|
21
|
-
<option name="codename" value="OP573DL1" />
|
|
22
|
-
<option name="id" value="OP573DL1" />
|
|
23
|
-
<option name="labId" value="google" />
|
|
24
|
-
<option name="manufacturer" value="OPPO" />
|
|
25
|
-
<option name="name" value="CPH2557" />
|
|
26
|
-
<option name="screenDensity" value="480" />
|
|
27
|
-
<option name="screenX" value="1080" />
|
|
28
|
-
<option name="screenY" value="2400" />
|
|
29
|
-
</PersistentDeviceSelectionData>
|
|
30
|
-
<PersistentDeviceSelectionData>
|
|
31
|
-
<option name="api" value="28" />
|
|
32
|
-
<option name="brand" value="DOCOMO" />
|
|
33
|
-
<option name="codename" value="SH-01L" />
|
|
34
|
-
<option name="id" value="SH-01L" />
|
|
35
|
-
<option name="labId" value="google" />
|
|
36
|
-
<option name="manufacturer" value="SHARP" />
|
|
37
|
-
<option name="name" value="AQUOS sense2 SH-01L" />
|
|
38
|
-
<option name="screenDensity" value="480" />
|
|
39
|
-
<option name="screenX" value="1080" />
|
|
40
|
-
<option name="screenY" value="2160" />
|
|
41
|
-
</PersistentDeviceSelectionData>
|
|
42
|
-
<PersistentDeviceSelectionData>
|
|
43
|
-
<option name="api" value="34" />
|
|
44
|
-
<option name="brand" value="Lenovo" />
|
|
45
|
-
<option name="codename" value="TB370FU" />
|
|
46
|
-
<option name="formFactor" value="Tablet" />
|
|
47
|
-
<option name="id" value="TB370FU" />
|
|
48
|
-
<option name="labId" value="google" />
|
|
49
|
-
<option name="manufacturer" value="Lenovo" />
|
|
50
|
-
<option name="name" value="Tab P12" />
|
|
51
|
-
<option name="screenDensity" value="340" />
|
|
52
|
-
<option name="screenX" value="1840" />
|
|
53
|
-
<option name="screenY" value="2944" />
|
|
54
|
-
</PersistentDeviceSelectionData>
|
|
55
|
-
<PersistentDeviceSelectionData>
|
|
56
|
-
<option name="api" value="34" />
|
|
57
|
-
<option name="brand" value="samsung" />
|
|
58
|
-
<option name="codename" value="a15" />
|
|
59
|
-
<option name="id" value="a15" />
|
|
60
|
-
<option name="labId" value="google" />
|
|
61
|
-
<option name="manufacturer" value="Samsung" />
|
|
62
|
-
<option name="name" value="A15" />
|
|
63
|
-
<option name="screenDensity" value="450" />
|
|
64
|
-
<option name="screenX" value="1080" />
|
|
65
|
-
<option name="screenY" value="2340" />
|
|
66
|
-
</PersistentDeviceSelectionData>
|
|
67
|
-
<PersistentDeviceSelectionData>
|
|
68
|
-
<option name="api" value="31" />
|
|
69
|
-
<option name="brand" value="samsung" />
|
|
70
|
-
<option name="codename" value="a51" />
|
|
71
|
-
<option name="id" value="a51" />
|
|
72
|
-
<option name="labId" value="google" />
|
|
73
|
-
<option name="manufacturer" value="Samsung" />
|
|
74
|
-
<option name="name" value="Galaxy A51" />
|
|
75
|
-
<option name="screenDensity" value="420" />
|
|
76
|
-
<option name="screenX" value="1080" />
|
|
77
|
-
<option name="screenY" value="2400" />
|
|
78
|
-
</PersistentDeviceSelectionData>
|
|
79
|
-
<PersistentDeviceSelectionData>
|
|
80
|
-
<option name="api" value="34" />
|
|
81
|
-
<option name="brand" value="google" />
|
|
82
|
-
<option name="codename" value="akita" />
|
|
83
|
-
<option name="id" value="akita" />
|
|
84
|
-
<option name="labId" value="google" />
|
|
85
|
-
<option name="manufacturer" value="Google" />
|
|
86
|
-
<option name="name" value="Pixel 8a" />
|
|
87
|
-
<option name="screenDensity" value="420" />
|
|
88
|
-
<option name="screenX" value="1080" />
|
|
89
|
-
<option name="screenY" value="2400" />
|
|
90
|
-
</PersistentDeviceSelectionData>
|
|
91
|
-
<PersistentDeviceSelectionData>
|
|
92
|
-
<option name="api" value="34" />
|
|
93
|
-
<option name="brand" value="motorola" />
|
|
94
|
-
<option name="codename" value="arcfox" />
|
|
95
|
-
<option name="id" value="arcfox" />
|
|
96
|
-
<option name="labId" value="google" />
|
|
97
|
-
<option name="manufacturer" value="Motorola" />
|
|
98
|
-
<option name="name" value="razr plus 2024" />
|
|
99
|
-
<option name="screenDensity" value="360" />
|
|
100
|
-
<option name="screenX" value="1080" />
|
|
101
|
-
<option name="screenY" value="1272" />
|
|
102
|
-
</PersistentDeviceSelectionData>
|
|
103
|
-
<PersistentDeviceSelectionData>
|
|
104
|
-
<option name="api" value="33" />
|
|
105
|
-
<option name="brand" value="samsung" />
|
|
106
|
-
<option name="codename" value="b0q" />
|
|
107
|
-
<option name="id" value="b0q" />
|
|
108
|
-
<option name="labId" value="google" />
|
|
109
|
-
<option name="manufacturer" value="Samsung" />
|
|
110
|
-
<option name="name" value="Galaxy S22 Ultra" />
|
|
111
|
-
<option name="screenDensity" value="600" />
|
|
112
|
-
<option name="screenX" value="1440" />
|
|
113
|
-
<option name="screenY" value="3088" />
|
|
114
|
-
</PersistentDeviceSelectionData>
|
|
115
|
-
<PersistentDeviceSelectionData>
|
|
116
|
-
<option name="api" value="32" />
|
|
117
|
-
<option name="brand" value="google" />
|
|
118
|
-
<option name="codename" value="bluejay" />
|
|
119
|
-
<option name="id" value="bluejay" />
|
|
120
|
-
<option name="labId" value="google" />
|
|
121
|
-
<option name="manufacturer" value="Google" />
|
|
122
|
-
<option name="name" value="Pixel 6a" />
|
|
123
|
-
<option name="screenDensity" value="420" />
|
|
124
|
-
<option name="screenX" value="1080" />
|
|
125
|
-
<option name="screenY" value="2400" />
|
|
126
|
-
</PersistentDeviceSelectionData>
|
|
127
|
-
<PersistentDeviceSelectionData>
|
|
128
|
-
<option name="api" value="34" />
|
|
129
|
-
<option name="brand" value="google" />
|
|
130
|
-
<option name="codename" value="caiman" />
|
|
131
|
-
<option name="id" value="caiman" />
|
|
132
|
-
<option name="labId" value="google" />
|
|
133
|
-
<option name="manufacturer" value="Google" />
|
|
134
|
-
<option name="name" value="Pixel 9 Pro" />
|
|
135
|
-
<option name="screenDensity" value="360" />
|
|
136
|
-
<option name="screenX" value="960" />
|
|
137
|
-
<option name="screenY" value="2142" />
|
|
138
|
-
</PersistentDeviceSelectionData>
|
|
139
|
-
<PersistentDeviceSelectionData>
|
|
140
|
-
<option name="api" value="34" />
|
|
141
|
-
<option name="brand" value="google" />
|
|
142
|
-
<option name="codename" value="comet" />
|
|
143
|
-
<option name="default" value="true" />
|
|
144
|
-
<option name="id" value="comet" />
|
|
145
|
-
<option name="labId" value="google" />
|
|
146
|
-
<option name="manufacturer" value="Google" />
|
|
147
|
-
<option name="name" value="Pixel 9 Pro Fold" />
|
|
148
|
-
<option name="screenDensity" value="390" />
|
|
149
|
-
<option name="screenX" value="2076" />
|
|
150
|
-
<option name="screenY" value="2152" />
|
|
151
|
-
</PersistentDeviceSelectionData>
|
|
152
|
-
<PersistentDeviceSelectionData>
|
|
153
|
-
<option name="api" value="29" />
|
|
154
|
-
<option name="brand" value="samsung" />
|
|
155
|
-
<option name="codename" value="crownqlteue" />
|
|
156
|
-
<option name="id" value="crownqlteue" />
|
|
157
|
-
<option name="labId" value="google" />
|
|
158
|
-
<option name="manufacturer" value="Samsung" />
|
|
159
|
-
<option name="name" value="Galaxy Note9" />
|
|
160
|
-
<option name="screenDensity" value="420" />
|
|
161
|
-
<option name="screenX" value="2220" />
|
|
162
|
-
<option name="screenY" value="1080" />
|
|
163
|
-
</PersistentDeviceSelectionData>
|
|
164
|
-
<PersistentDeviceSelectionData>
|
|
165
|
-
<option name="api" value="34" />
|
|
166
|
-
<option name="brand" value="samsung" />
|
|
167
|
-
<option name="codename" value="dm2q" />
|
|
168
|
-
<option name="id" value="dm2q" />
|
|
169
|
-
<option name="labId" value="google" />
|
|
170
|
-
<option name="manufacturer" value="Samsung" />
|
|
171
|
-
<option name="name" value="S23 Plus" />
|
|
172
|
-
<option name="screenDensity" value="450" />
|
|
173
|
-
<option name="screenX" value="1080" />
|
|
174
|
-
<option name="screenY" value="2340" />
|
|
175
|
-
</PersistentDeviceSelectionData>
|
|
176
|
-
<PersistentDeviceSelectionData>
|
|
177
|
-
<option name="api" value="34" />
|
|
178
|
-
<option name="brand" value="samsung" />
|
|
179
|
-
<option name="codename" value="dm3q" />
|
|
180
|
-
<option name="id" value="dm3q" />
|
|
181
|
-
<option name="labId" value="google" />
|
|
182
|
-
<option name="manufacturer" value="Samsung" />
|
|
183
|
-
<option name="name" value="Galaxy S23 Ultra" />
|
|
184
|
-
<option name="screenDensity" value="600" />
|
|
185
|
-
<option name="screenX" value="1440" />
|
|
186
|
-
<option name="screenY" value="3088" />
|
|
187
|
-
</PersistentDeviceSelectionData>
|
|
188
|
-
<PersistentDeviceSelectionData>
|
|
189
|
-
<option name="api" value="34" />
|
|
190
|
-
<option name="brand" value="samsung" />
|
|
191
|
-
<option name="codename" value="e1q" />
|
|
192
|
-
<option name="default" value="true" />
|
|
193
|
-
<option name="id" value="e1q" />
|
|
194
|
-
<option name="labId" value="google" />
|
|
195
|
-
<option name="manufacturer" value="Samsung" />
|
|
196
|
-
<option name="name" value="Galaxy S24" />
|
|
197
|
-
<option name="screenDensity" value="480" />
|
|
198
|
-
<option name="screenX" value="1080" />
|
|
199
|
-
<option name="screenY" value="2340" />
|
|
200
|
-
</PersistentDeviceSelectionData>
|
|
201
|
-
<PersistentDeviceSelectionData>
|
|
202
|
-
<option name="api" value="34" />
|
|
203
|
-
<option name="brand" value="samsung" />
|
|
204
|
-
<option name="codename" value="e3q" />
|
|
205
|
-
<option name="id" value="e3q" />
|
|
206
|
-
<option name="labId" value="google" />
|
|
207
|
-
<option name="manufacturer" value="Samsung" />
|
|
208
|
-
<option name="name" value="Galaxy S24 Ultra" />
|
|
209
|
-
<option name="screenDensity" value="450" />
|
|
210
|
-
<option name="screenX" value="1440" />
|
|
211
|
-
<option name="screenY" value="3120" />
|
|
212
|
-
</PersistentDeviceSelectionData>
|
|
213
|
-
<PersistentDeviceSelectionData>
|
|
214
|
-
<option name="api" value="33" />
|
|
215
|
-
<option name="brand" value="google" />
|
|
216
|
-
<option name="codename" value="eos" />
|
|
217
|
-
<option name="id" value="eos" />
|
|
218
|
-
<option name="labId" value="google" />
|
|
219
|
-
<option name="manufacturer" value="Google" />
|
|
220
|
-
<option name="name" value="Eos" />
|
|
221
|
-
<option name="screenDensity" value="320" />
|
|
222
|
-
<option name="screenX" value="384" />
|
|
223
|
-
<option name="screenY" value="384" />
|
|
224
|
-
</PersistentDeviceSelectionData>
|
|
225
|
-
<PersistentDeviceSelectionData>
|
|
226
|
-
<option name="api" value="33" />
|
|
227
|
-
<option name="brand" value="google" />
|
|
228
|
-
<option name="codename" value="felix" />
|
|
229
|
-
<option name="id" value="felix" />
|
|
230
|
-
<option name="labId" value="google" />
|
|
231
|
-
<option name="manufacturer" value="Google" />
|
|
232
|
-
<option name="name" value="Pixel Fold" />
|
|
233
|
-
<option name="screenDensity" value="420" />
|
|
234
|
-
<option name="screenX" value="2208" />
|
|
235
|
-
<option name="screenY" value="1840" />
|
|
236
|
-
</PersistentDeviceSelectionData>
|
|
237
|
-
<PersistentDeviceSelectionData>
|
|
238
|
-
<option name="api" value="34" />
|
|
239
|
-
<option name="brand" value="google" />
|
|
240
|
-
<option name="codename" value="felix" />
|
|
241
|
-
<option name="id" value="felix" />
|
|
242
|
-
<option name="labId" value="google" />
|
|
243
|
-
<option name="manufacturer" value="Google" />
|
|
244
|
-
<option name="name" value="Pixel Fold" />
|
|
245
|
-
<option name="screenDensity" value="420" />
|
|
246
|
-
<option name="screenX" value="2208" />
|
|
247
|
-
<option name="screenY" value="1840" />
|
|
248
|
-
</PersistentDeviceSelectionData>
|
|
249
|
-
<PersistentDeviceSelectionData>
|
|
250
|
-
<option name="api" value="33" />
|
|
251
|
-
<option name="brand" value="google" />
|
|
252
|
-
<option name="codename" value="felix_camera" />
|
|
253
|
-
<option name="id" value="felix_camera" />
|
|
254
|
-
<option name="labId" value="google" />
|
|
255
|
-
<option name="manufacturer" value="Google" />
|
|
256
|
-
<option name="name" value="Pixel Fold (Camera-enabled)" />
|
|
257
|
-
<option name="screenDensity" value="420" />
|
|
258
|
-
<option name="screenX" value="2208" />
|
|
259
|
-
<option name="screenY" value="1840" />
|
|
260
|
-
</PersistentDeviceSelectionData>
|
|
261
|
-
<PersistentDeviceSelectionData>
|
|
262
|
-
<option name="api" value="34" />
|
|
263
|
-
<option name="brand" value="motorola" />
|
|
264
|
-
<option name="codename" value="fogona" />
|
|
265
|
-
<option name="id" value="fogona" />
|
|
266
|
-
<option name="labId" value="google" />
|
|
267
|
-
<option name="manufacturer" value="Motorola" />
|
|
268
|
-
<option name="name" value="moto g play - 2024" />
|
|
269
|
-
<option name="screenDensity" value="280" />
|
|
270
|
-
<option name="screenX" value="720" />
|
|
271
|
-
<option name="screenY" value="1600" />
|
|
272
|
-
</PersistentDeviceSelectionData>
|
|
273
|
-
<PersistentDeviceSelectionData>
|
|
274
|
-
<option name="api" value="34" />
|
|
275
|
-
<option name="brand" value="samsung" />
|
|
276
|
-
<option name="codename" value="g0q" />
|
|
277
|
-
<option name="id" value="g0q" />
|
|
278
|
-
<option name="labId" value="google" />
|
|
279
|
-
<option name="manufacturer" value="Samsung" />
|
|
280
|
-
<option name="name" value="SM-S906U1" />
|
|
281
|
-
<option name="screenDensity" value="450" />
|
|
282
|
-
<option name="screenX" value="1080" />
|
|
283
|
-
<option name="screenY" value="2340" />
|
|
284
|
-
</PersistentDeviceSelectionData>
|
|
285
|
-
<PersistentDeviceSelectionData>
|
|
286
|
-
<option name="api" value="34" />
|
|
287
|
-
<option name="brand" value="samsung" />
|
|
288
|
-
<option name="codename" value="gta7lite" />
|
|
289
|
-
<option name="formFactor" value="Tablet" />
|
|
290
|
-
<option name="id" value="gta7lite" />
|
|
291
|
-
<option name="labId" value="google" />
|
|
292
|
-
<option name="manufacturer" value="Samsung" />
|
|
293
|
-
<option name="name" value="Galaxy Tab A7 Lite" />
|
|
294
|
-
<option name="screenDensity" value="179" />
|
|
295
|
-
<option name="screenX" value="800" />
|
|
296
|
-
<option name="screenY" value="1340" />
|
|
297
|
-
</PersistentDeviceSelectionData>
|
|
298
|
-
<PersistentDeviceSelectionData>
|
|
299
|
-
<option name="api" value="33" />
|
|
300
|
-
<option name="brand" value="samsung" />
|
|
301
|
-
<option name="codename" value="gts8uwifi" />
|
|
302
|
-
<option name="formFactor" value="Tablet" />
|
|
303
|
-
<option name="id" value="gts8uwifi" />
|
|
304
|
-
<option name="labId" value="google" />
|
|
305
|
-
<option name="manufacturer" value="Samsung" />
|
|
306
|
-
<option name="name" value="Galaxy Tab S8 Ultra" />
|
|
307
|
-
<option name="screenDensity" value="320" />
|
|
308
|
-
<option name="screenX" value="1848" />
|
|
309
|
-
<option name="screenY" value="2960" />
|
|
310
|
-
</PersistentDeviceSelectionData>
|
|
311
|
-
<PersistentDeviceSelectionData>
|
|
312
|
-
<option name="api" value="34" />
|
|
313
|
-
<option name="brand" value="google" />
|
|
314
|
-
<option name="codename" value="husky" />
|
|
315
|
-
<option name="id" value="husky" />
|
|
316
|
-
<option name="labId" value="google" />
|
|
317
|
-
<option name="manufacturer" value="Google" />
|
|
318
|
-
<option name="name" value="Pixel 8 Pro" />
|
|
319
|
-
<option name="screenDensity" value="390" />
|
|
320
|
-
<option name="screenX" value="1008" />
|
|
321
|
-
<option name="screenY" value="2244" />
|
|
322
|
-
</PersistentDeviceSelectionData>
|
|
323
|
-
<PersistentDeviceSelectionData>
|
|
324
|
-
<option name="api" value="30" />
|
|
325
|
-
<option name="brand" value="motorola" />
|
|
326
|
-
<option name="codename" value="java" />
|
|
327
|
-
<option name="id" value="java" />
|
|
328
|
-
<option name="labId" value="google" />
|
|
329
|
-
<option name="manufacturer" value="Motorola" />
|
|
330
|
-
<option name="name" value="G20" />
|
|
331
|
-
<option name="screenDensity" value="280" />
|
|
332
|
-
<option name="screenX" value="720" />
|
|
333
|
-
<option name="screenY" value="1600" />
|
|
334
|
-
</PersistentDeviceSelectionData>
|
|
335
|
-
<PersistentDeviceSelectionData>
|
|
336
|
-
<option name="api" value="34" />
|
|
337
|
-
<option name="brand" value="google" />
|
|
338
|
-
<option name="codename" value="komodo" />
|
|
339
|
-
<option name="id" value="komodo" />
|
|
340
|
-
<option name="labId" value="google" />
|
|
341
|
-
<option name="manufacturer" value="Google" />
|
|
342
|
-
<option name="name" value="Pixel 9 Pro XL" />
|
|
343
|
-
<option name="screenDensity" value="360" />
|
|
344
|
-
<option name="screenX" value="1008" />
|
|
345
|
-
<option name="screenY" value="2244" />
|
|
346
|
-
</PersistentDeviceSelectionData>
|
|
347
|
-
<PersistentDeviceSelectionData>
|
|
348
|
-
<option name="api" value="33" />
|
|
349
|
-
<option name="brand" value="google" />
|
|
350
|
-
<option name="codename" value="lynx" />
|
|
351
|
-
<option name="id" value="lynx" />
|
|
352
|
-
<option name="labId" value="google" />
|
|
353
|
-
<option name="manufacturer" value="Google" />
|
|
354
|
-
<option name="name" value="Pixel 7a" />
|
|
355
|
-
<option name="screenDensity" value="420" />
|
|
356
|
-
<option name="screenX" value="1080" />
|
|
357
|
-
<option name="screenY" value="2400" />
|
|
358
|
-
</PersistentDeviceSelectionData>
|
|
359
|
-
<PersistentDeviceSelectionData>
|
|
360
|
-
<option name="api" value="33" />
|
|
361
|
-
<option name="brand" value="motorola" />
|
|
362
|
-
<option name="codename" value="maui" />
|
|
363
|
-
<option name="id" value="maui" />
|
|
364
|
-
<option name="labId" value="google" />
|
|
365
|
-
<option name="manufacturer" value="Motorola" />
|
|
366
|
-
<option name="name" value="moto g play - 2023" />
|
|
367
|
-
<option name="screenDensity" value="280" />
|
|
368
|
-
<option name="screenX" value="720" />
|
|
369
|
-
<option name="screenY" value="1600" />
|
|
370
|
-
</PersistentDeviceSelectionData>
|
|
371
|
-
<PersistentDeviceSelectionData>
|
|
372
|
-
<option name="api" value="31" />
|
|
373
|
-
<option name="brand" value="google" />
|
|
374
|
-
<option name="codename" value="oriole" />
|
|
375
|
-
<option name="id" value="oriole" />
|
|
376
|
-
<option name="labId" value="google" />
|
|
377
|
-
<option name="manufacturer" value="Google" />
|
|
378
|
-
<option name="name" value="Pixel 6" />
|
|
379
|
-
<option name="screenDensity" value="420" />
|
|
380
|
-
<option name="screenX" value="1080" />
|
|
381
|
-
<option name="screenY" value="2400" />
|
|
382
|
-
</PersistentDeviceSelectionData>
|
|
383
|
-
<PersistentDeviceSelectionData>
|
|
384
|
-
<option name="api" value="33" />
|
|
385
|
-
<option name="brand" value="google" />
|
|
386
|
-
<option name="codename" value="panther" />
|
|
387
|
-
<option name="id" value="panther" />
|
|
388
|
-
<option name="labId" value="google" />
|
|
389
|
-
<option name="manufacturer" value="Google" />
|
|
390
|
-
<option name="name" value="Pixel 7" />
|
|
391
|
-
<option name="screenDensity" value="420" />
|
|
392
|
-
<option name="screenX" value="1080" />
|
|
393
|
-
<option name="screenY" value="2400" />
|
|
394
|
-
</PersistentDeviceSelectionData>
|
|
395
|
-
<PersistentDeviceSelectionData>
|
|
396
|
-
<option name="api" value="34" />
|
|
397
|
-
<option name="brand" value="samsung" />
|
|
398
|
-
<option name="codename" value="q5q" />
|
|
399
|
-
<option name="id" value="q5q" />
|
|
400
|
-
<option name="labId" value="google" />
|
|
401
|
-
<option name="manufacturer" value="Samsung" />
|
|
402
|
-
<option name="name" value="Galaxy Z Fold5" />
|
|
403
|
-
<option name="screenDensity" value="420" />
|
|
404
|
-
<option name="screenX" value="1812" />
|
|
405
|
-
<option name="screenY" value="2176" />
|
|
406
|
-
</PersistentDeviceSelectionData>
|
|
407
|
-
<PersistentDeviceSelectionData>
|
|
408
|
-
<option name="api" value="34" />
|
|
409
|
-
<option name="brand" value="samsung" />
|
|
410
|
-
<option name="codename" value="q6q" />
|
|
411
|
-
<option name="id" value="q6q" />
|
|
412
|
-
<option name="labId" value="google" />
|
|
413
|
-
<option name="manufacturer" value="Samsung" />
|
|
414
|
-
<option name="name" value="Galaxy Z Fold6" />
|
|
415
|
-
<option name="screenDensity" value="420" />
|
|
416
|
-
<option name="screenX" value="1856" />
|
|
417
|
-
<option name="screenY" value="2160" />
|
|
418
|
-
</PersistentDeviceSelectionData>
|
|
419
|
-
<PersistentDeviceSelectionData>
|
|
420
|
-
<option name="api" value="30" />
|
|
421
|
-
<option name="brand" value="google" />
|
|
422
|
-
<option name="codename" value="r11" />
|
|
423
|
-
<option name="formFactor" value="Wear OS" />
|
|
424
|
-
<option name="id" value="r11" />
|
|
425
|
-
<option name="labId" value="google" />
|
|
426
|
-
<option name="manufacturer" value="Google" />
|
|
427
|
-
<option name="name" value="Pixel Watch" />
|
|
428
|
-
<option name="screenDensity" value="320" />
|
|
429
|
-
<option name="screenX" value="384" />
|
|
430
|
-
<option name="screenY" value="384" />
|
|
431
|
-
<option name="type" value="WEAR_OS" />
|
|
432
|
-
</PersistentDeviceSelectionData>
|
|
433
|
-
<PersistentDeviceSelectionData>
|
|
434
|
-
<option name="api" value="30" />
|
|
435
|
-
<option name="brand" value="google" />
|
|
436
|
-
<option name="codename" value="redfin" />
|
|
437
|
-
<option name="id" value="redfin" />
|
|
438
|
-
<option name="labId" value="google" />
|
|
439
|
-
<option name="manufacturer" value="Google" />
|
|
440
|
-
<option name="name" value="Pixel 5" />
|
|
441
|
-
<option name="screenDensity" value="440" />
|
|
442
|
-
<option name="screenX" value="1080" />
|
|
443
|
-
<option name="screenY" value="2340" />
|
|
444
|
-
</PersistentDeviceSelectionData>
|
|
445
|
-
<PersistentDeviceSelectionData>
|
|
446
|
-
<option name="api" value="34" />
|
|
447
|
-
<option name="brand" value="google" />
|
|
448
|
-
<option name="codename" value="shiba" />
|
|
449
|
-
<option name="id" value="shiba" />
|
|
450
|
-
<option name="labId" value="google" />
|
|
451
|
-
<option name="manufacturer" value="Google" />
|
|
452
|
-
<option name="name" value="Pixel 8" />
|
|
453
|
-
<option name="screenDensity" value="420" />
|
|
454
|
-
<option name="screenX" value="1080" />
|
|
455
|
-
<option name="screenY" value="2400" />
|
|
456
|
-
</PersistentDeviceSelectionData>
|
|
457
|
-
<PersistentDeviceSelectionData>
|
|
458
|
-
<option name="api" value="33" />
|
|
459
|
-
<option name="brand" value="google" />
|
|
460
|
-
<option name="codename" value="tangorpro" />
|
|
461
|
-
<option name="formFactor" value="Tablet" />
|
|
462
|
-
<option name="id" value="tangorpro" />
|
|
463
|
-
<option name="labId" value="google" />
|
|
464
|
-
<option name="manufacturer" value="Google" />
|
|
465
|
-
<option name="name" value="Pixel Tablet" />
|
|
466
|
-
<option name="screenDensity" value="320" />
|
|
467
|
-
<option name="screenX" value="1600" />
|
|
468
|
-
<option name="screenY" value="2560" />
|
|
469
|
-
</PersistentDeviceSelectionData>
|
|
470
|
-
<PersistentDeviceSelectionData>
|
|
471
|
-
<option name="api" value="34" />
|
|
472
|
-
<option name="brand" value="google" />
|
|
473
|
-
<option name="codename" value="tokay" />
|
|
474
|
-
<option name="default" value="true" />
|
|
475
|
-
<option name="id" value="tokay" />
|
|
476
|
-
<option name="labId" value="google" />
|
|
477
|
-
<option name="manufacturer" value="Google" />
|
|
478
|
-
<option name="name" value="Pixel 9" />
|
|
479
|
-
<option name="screenDensity" value="420" />
|
|
480
|
-
<option name="screenX" value="1080" />
|
|
481
|
-
<option name="screenY" value="2424" />
|
|
482
|
-
</PersistentDeviceSelectionData>
|
|
483
|
-
</list>
|
|
484
|
-
</option>
|
|
485
|
-
</component>
|
|
486
|
-
</project>
|
package/android/.idea/gradle.xml
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="GradleMigrationSettings" migrationVersion="1" />
|
|
4
|
-
<component name="GradleSettings">
|
|
5
|
-
<option name="linkedExternalProjectsSettings">
|
|
6
|
-
<GradleProjectSettings>
|
|
7
|
-
<option name="testRunner" value="CHOOSE_PER_TEST" />
|
|
8
|
-
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
|
9
|
-
<option name="gradleJvm" value="#GRADLE_LOCAL_JAVA_HOME" />
|
|
10
|
-
<option name="modules">
|
|
11
|
-
<set>
|
|
12
|
-
<option value="$PROJECT_DIR$" />
|
|
13
|
-
</set>
|
|
14
|
-
</option>
|
|
15
|
-
<option name="resolveExternalAnnotations" value="false" />
|
|
16
|
-
</GradleProjectSettings>
|
|
17
|
-
</option>
|
|
18
|
-
</component>
|
|
19
|
-
</project>
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="RemoteRepositoriesConfiguration">
|
|
4
|
-
<remote-repository>
|
|
5
|
-
<option name="id" value="central" />
|
|
6
|
-
<option name="name" value="Maven Central repository" />
|
|
7
|
-
<option name="url" value="https://repo1.maven.org/maven2" />
|
|
8
|
-
</remote-repository>
|
|
9
|
-
<remote-repository>
|
|
10
|
-
<option name="id" value="jboss.community" />
|
|
11
|
-
<option name="name" value="JBoss Community repository" />
|
|
12
|
-
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
|
|
13
|
-
</remote-repository>
|
|
14
|
-
<remote-repository>
|
|
15
|
-
<option name="id" value="maven" />
|
|
16
|
-
<option name="name" value="maven" />
|
|
17
|
-
<option name="url" value="https://anylinesdk.blob.core.windows.net/maven/" />
|
|
18
|
-
</remote-repository>
|
|
19
|
-
<remote-repository>
|
|
20
|
-
<option name="id" value="MavenRepo" />
|
|
21
|
-
<option name="name" value="MavenRepo" />
|
|
22
|
-
<option name="url" value="https://repo.maven.apache.org/maven2/" />
|
|
23
|
-
</remote-repository>
|
|
24
|
-
<remote-repository>
|
|
25
|
-
<option name="id" value="Google" />
|
|
26
|
-
<option name="name" value="Google" />
|
|
27
|
-
<option name="url" value="https://dl.google.com/dl/android/maven2/" />
|
|
28
|
-
</remote-repository>
|
|
29
|
-
</component>
|
|
30
|
-
</project>
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="MaterialThemeProjectNewConfig">
|
|
4
|
-
<option name="metadata">
|
|
5
|
-
<MTProjectMetadataState>
|
|
6
|
-
<option name="migrated" value="true" />
|
|
7
|
-
<option name="pristineConfig" value="false" />
|
|
8
|
-
<option name="userId" value="-5848c102:18a8decd285:-8000" />
|
|
9
|
-
<option name="version" value="8.13.2" />
|
|
10
|
-
</MTProjectMetadataState>
|
|
11
|
-
</option>
|
|
12
|
-
</component>
|
|
13
|
-
</project>
|
package/android/.idea/misc.xml
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<project version="4">
|
|
2
|
-
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
|
3
|
-
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="11" project-jdk-type="JavaSDK">
|
|
4
|
-
<output url="file://$PROJECT_DIR$/build/classes" />
|
|
5
|
-
</component>
|
|
6
|
-
<component name="ProjectType">
|
|
7
|
-
<option name="id" value="Android" />
|
|
8
|
-
</component>
|
|
9
|
-
</project>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="RunConfigurationProducerService">
|
|
4
|
-
<option name="ignoredProducers">
|
|
5
|
-
<set>
|
|
6
|
-
<option value="com.intellij.execution.junit.AbstractAllInDirectoryConfigurationProducer" />
|
|
7
|
-
<option value="com.intellij.execution.junit.AllInPackageConfigurationProducer" />
|
|
8
|
-
<option value="com.intellij.execution.junit.PatternConfigurationProducer" />
|
|
9
|
-
<option value="com.intellij.execution.junit.TestInClassConfigurationProducer" />
|
|
10
|
-
<option value="com.intellij.execution.junit.UniqueIdConfigurationProducer" />
|
|
11
|
-
<option value="com.intellij.execution.junit.testDiscovery.JUnitTestDiscoveryConfigurationProducer" />
|
|
12
|
-
<option value="org.jetbrains.kotlin.idea.junit.KotlinJUnitRunConfigurationProducer" />
|
|
13
|
-
<option value="org.jetbrains.kotlin.idea.junit.KotlinPatternConfigurationProducer" />
|
|
14
|
-
</set>
|
|
15
|
-
</option>
|
|
16
|
-
</component>
|
|
17
|
-
</project>
|
package/android/.idea/vcs.xml
DELETED
package/android/local.properties
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
## This file must *NOT* be checked into Version Control Systems,
|
|
2
|
-
# as it contains information specific to your local configuration.
|
|
3
|
-
#
|
|
4
|
-
# Location of the SDK. This is only used by Gradle.
|
|
5
|
-
# For customization when using a Version Control System, please read the
|
|
6
|
-
# header note.
|
|
7
|
-
#Mon Jul 03 08:49:38 CEST 2023
|
|
8
|
-
sdk.dir=/Users/igor/Library/Android/sdk
|