@jimrising/easymerchantsdk-react-native 2.1.4 → 2.1.6

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.
Files changed (27) hide show
  1. package/README.md +93 -49
  2. package/android/build/.transforms/eef2d06269ef2e204b4f065513034fca/transformed/classes/classes_dex/classes.dex +0 -0
  3. package/android/build/.transforms/ffabb40f9809b32eb9546ce76fc51764/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/reactlibrary/RNEasymerchantsdkModule.dex +0 -0
  4. package/android/build/intermediates/aar_main_jar/release/syncReleaseLibJars/classes.jar +0 -0
  5. package/android/build/intermediates/compile_library_classes_jar/release/bundleLibCompileToJarRelease/classes.jar +0 -0
  6. package/android/build/intermediates/full_jar/release/createFullJarRelease/full.jar +0 -0
  7. package/android/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-dependencies.xml +4 -4
  8. package/android/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-libraries.xml +4 -4
  9. package/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/reactlibrary/RNEasymerchantsdkModule.class +0 -0
  10. package/android/build/intermediates/lint_model/release/generateReleaseLintModel/release-artifact-dependencies.xml +4 -4
  11. package/android/build/intermediates/lint_model/release/generateReleaseLintModel/release-artifact-libraries.xml +4 -4
  12. package/android/build/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release-artifact-dependencies.xml +4 -4
  13. package/android/build/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release-artifact-libraries.xml +4 -4
  14. package/android/build/intermediates/local_aar_for_lint/release/out.aar +0 -0
  15. package/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/reactlibrary/RNEasymerchantsdkModule.class +0 -0
  16. package/android/build/intermediates/runtime_library_classes_jar/release/bundleLibRuntimeToJarRelease/classes.jar +0 -0
  17. package/android/build/outputs/aar/jimrising_easymerchantsdk-react-native-release.aar +0 -0
  18. package/android/build/tmp/compileReleaseJavaWithJavac/compileTransaction/stash-dir/RNEasymerchantsdkModule$1$1.class.uniqueId1 +0 -0
  19. package/android/build/tmp/compileReleaseJavaWithJavac/compileTransaction/stash-dir/RNEasymerchantsdkModule$1.class.uniqueId3 +0 -0
  20. package/android/build/tmp/compileReleaseJavaWithJavac/compileTransaction/stash-dir/RNEasymerchantsdkModule$2.class.uniqueId0 +0 -0
  21. package/android/build/tmp/compileReleaseJavaWithJavac/compileTransaction/stash-dir/RNEasymerchantsdkModule.class.uniqueId2 +0 -0
  22. package/android/build/tmp/compileReleaseJavaWithJavac/compileTransaction/stash-dir/RNEasymerchantsdkPackage.class.uniqueId4 +0 -0
  23. package/android/build/tmp/compileReleaseJavaWithJavac/previous-compilation-data.bin +0 -0
  24. package/android/build.gradle +1 -1
  25. package/android/src/main/java/com/reactlibrary/RNEasymerchantsdkModule.java +2 -2
  26. package/ios/easymerchantsdk.podspec +1 -1
  27. package/package.json +1 -1
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # EasyMerchant SDK React Native Integration
2
2
 
3
- This guide provides step-by-step instructions for integrating the EasyMerchant SDK into a React Native application for Android and iOS platforms. The SDK supports identical configuration parameters for both platforms, with slight differences in method calls for initiating payments and handling responses. This project includes a sample implementation (`App.js`) that demonstrates a fully configurable payment interface with support for card payments, ACH transfers, recurring payments, 3D Secure authentication, and customizable billing/additional information fields.
3
+ This guide provides step-by-step instructions for integrating the EasyMerchant SDK into a React Native application for Android and iOS platforms. The SDK supports a unified configuration structure with minor differences in method calls for initiating payments and handling responses. The provided `App.js` demonstrates a fully configurable payment interface supporting card payments, ACH transfers, recurring payments, 3D Secure authentication, and customizable billing/additional information fields.
4
4
 
5
5
  ## Prerequisites
6
6
 
7
- - **Node.js and npm**: Ensure Node.js (v16 or higher) and npm are installed.
8
- - **React Native Environment**: Set up a React Native development environment as per the [official documentation](https://reactnative.dev/docs/environment-setup).
7
+ - **Node.js and npm**: Version 16 or higher.
8
+ - **React Native Environment**: Set up as per the [official documentation](https://reactnative.dev/docs/environment-setup).
9
9
  - **Ruby**: Version 3.2.8 or higher for iOS setup (required for CocoaPods).
10
10
  - **Xcode**: Version 14 or higher for iOS development.
11
11
  - **Android Studio**: For Android development, with Gradle configured.
@@ -15,15 +15,15 @@ This guide provides step-by-step instructions for integrating the EasyMerchant S
15
15
 
16
16
  ### 1. Add the SDK to Your Project
17
17
 
18
- Add the EasyMerchant SDK to your project by including it in your `package.json` under the `dependencies` section:
18
+ Add the EasyMerchant SDK to your `package.json` under `dependencies`:
19
19
 
20
20
  ```json
21
21
  "dependencies": {
22
- "@jimrising/easymerchantsdk-react-native": "^2.1.4"
22
+ "@jimrising/easymerchantsdk-react-native": "^2.1.6"
23
23
  }
24
24
  ```
25
25
 
26
- Alternatively, install it using npm:
26
+ Or install it via npm:
27
27
 
28
28
  ```bash
29
29
  npm install @jimrising/easymerchantsdk-react-native
@@ -31,8 +31,7 @@ npm install @jimrising/easymerchantsdk-react-native
31
31
 
32
32
  ### 2. Android Configuration
33
33
 
34
- 1. Open the `android/build.gradle` file in your project.
35
- 2. Add the following to the `allprojects.repositories` section to include the SDK's dependencies:
34
+ 1. Open `android/build.gradle` and add the following to the `allprojects.repositories` section:
36
35
 
37
36
  ```gradle
38
37
  allprojects {
@@ -41,7 +40,7 @@ allprojects {
41
40
  mavenCentral()
42
41
  maven { url 'https://jitpack.io' }
43
42
  maven {
44
- url = uri(properties.getProperty('GITHUB_URL'))
43
+ url = uri("https://maven.pkg.github.com/jimrising/easymerchantsdk-react-native")
45
44
  credentials {
46
45
  username = properties.getProperty('GITHUB_USERNAME')
47
46
  password = properties.getProperty('GITHUB_PASSWORD')
@@ -51,13 +50,19 @@ allprojects {
51
50
  }
52
51
  ```
53
52
 
54
- 3. Ensure `GITHUB_URL`, `GITHUB_USERNAME`, and `GITHUB_PASSWORD` are defined in your `gradle.properties` file or provided via your CI/CD system.
55
- 4. Sync your project with Gradle to apply the changes.
53
+ 2. Define `GITHUB_USERNAME` and `GITHUB_PASSWORD` in `android/gradle.properties` or your CI/CD system. For example:
54
+
55
+ ```properties
56
+ GITHUB_USERNAME=your-github-username
57
+ GITHUB_PASSWORD=your-github-token
58
+ ```
59
+
60
+ 3. Sync your project with Gradle to apply changes.
56
61
 
57
62
  ### 3. iOS Configuration
58
63
 
59
64
  1. **Update AppDelegate.swift**
60
- Modify or create the `ios/AppDelegate.swift` file to initialize the React Native bridge and set up the EasyMerchant SDK:
65
+ Modify `ios/AppDelegate.swift` to initialize the React Native bridge and set up the EasyMerchant SDK:
61
66
 
62
67
  ```swift
63
68
  import UIKit
@@ -102,7 +107,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
102
107
  self.window?.rootViewController = rootViewController
103
108
  self.window?.makeKeyAndVisible()
104
109
 
105
- if let easyMerchantSdkPlugin = bridge?.module(for: EasyMerchantSdkPlugin.self) as? EasyMerchantSdkPlugin {
110
+ if let easyMerchantSdkPlugin = validBridge.module(for: EasyMerchantSdkPlugin.self) as? EasyMerchantSdkPlugin {
106
111
  easyMerchantSdkPlugin.setViewController(rootViewController)
107
112
  } else {
108
113
  print("Failed to retrieve EasyMerchantSdkPlugin instance from React Native bridge.")
@@ -113,18 +118,18 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
113
118
  ```
114
119
 
115
120
  2. **Update Podfile**
116
- In your `ios/Podfile`, add the EasyMerchant SDK pod:
121
+ In `ios/Podfile`, add the EasyMerchant SDK pod:
117
122
 
118
123
  ```ruby
119
- require_relative '../node_modules/react-native/scripts/react_native_pods'
120
- require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
121
-
122
124
  platform :ios, '16.0'
123
125
 
124
126
  pod 'easymerchantsdk', :path => '../node_modules/@jimrising/easymerchantsdk-react-native/ios'
127
+
128
+ require_relative '../node_modules/react-native/scripts/react_native_pods'
129
+ require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
125
130
  ```
126
131
 
127
- 3. Install the pod dependencies by running:
132
+ 3. Install pod dependencies:
128
133
 
129
134
  ```bash
130
135
  cd ios
@@ -133,22 +138,26 @@ pod install --repo-update
133
138
 
134
139
  ## Usage
135
140
 
136
- The sample `App.js` provides a complete implementation for integrating the EasyMerchant SDK, including a user interface for configuring payment settings and handling responses. Below is a guide to using the SDK in your React Native application.
141
+ The provided `App.js` is a complete implementation showcasing the EasyMerchant SDK's capabilities. Below is a guide to integrating and using the SDK in your React Native application.
137
142
 
138
143
  ### 1. Import Required Modules
139
144
 
140
- Ensure you import the necessary React Native components and the EasyMerchant SDK NativeModules:
145
+ Import necessary React Native components and the EasyMerchant SDK NativeModules:
141
146
 
142
147
  ```javascript
143
148
  import React, { useState, useEffect } from 'react';
144
- import { StyleSheet, Text, View, TextInput, Switch, TouchableOpacity, NativeModules, NativeEventEmitter, Platform, Alert, ScrollView, KeyboardAvoidingView, Modal, TouchableWithoutFeedback } from 'react-native';
149
+ import {
150
+ StyleSheet, Text, View, TextInput, Switch, TouchableOpacity, NativeModules,
151
+ NativeEventEmitter, Platform, Alert, ScrollView, KeyboardAvoidingView, Modal,
152
+ TouchableWithoutFeedback
153
+ } from 'react-native';
145
154
 
146
155
  const { RNEasymerchantsdk, EasyMerchantSdk } = NativeModules;
147
156
  ```
148
157
 
149
158
  ### 2. Define Configuration
150
159
 
151
- Use a configuration object to define payment settings. The `externalConfig` in `App.js` is a comprehensive example that supports both platforms:
160
+ Define a configuration object for payment settings. Below is an example based on `App.js`:
152
161
 
153
162
  ```javascript
154
163
  const externalConfig = {
@@ -164,7 +173,7 @@ const externalConfig = {
164
173
  billingInfo: {
165
174
  visibility: { billing: false, additional: false },
166
175
  billing: {
167
- address: 'San Fran',
176
+ address: 'San Fran, Punjab',
168
177
  country: 'USA',
169
178
  state: 'California',
170
179
  city: 'Paris',
@@ -180,7 +189,7 @@ const externalConfig = {
180
189
  additional: {
181
190
  name: 'Test User',
182
191
  email_address: 'test@gmail.com',
183
- phone_number: '0000000',
192
+ phone_number: '2140871329',
184
193
  description: 'Test',
185
194
  },
186
195
  additionalRequired: {
@@ -215,7 +224,7 @@ const externalConfig = {
215
224
  recurringData: {
216
225
  allowCycles: 2,
217
226
  intervals: ['daily', 'weekly', 'monthly'],
218
- recurringStartType: 'custom',
227
+ recurringStartType: 'custom',
219
228
  recurringStartDate: new Date().toLocaleDateString('en-US', { month: '2-digit', day: '2-digit', year: 'numeric' }),
220
229
  },
221
230
  androidConfig: {
@@ -269,7 +278,7 @@ This configuration includes:
269
278
  - **Basic Info**: `amount`, `email`, `name`.
270
279
  - **Payment Options**: Toggles for recurring payments, authenticated ACH, 3D Secure, and visibility of billing/additional fields.
271
280
  - **Billing Info**: Configurable billing and additional fields with required flags.
272
- - **Theming**: Separate `themeConfiguration` (iOS) and `androidConfig.appearanceSettings` (Android) for UI customization.
281
+ - **Theming**: `themeConfiguration` for iOS and `androidConfig.appearanceSettings` for Android.
273
282
  - **GrailPay Params**: Settings for bank search UI (e.g., role, timeout, branding).
274
283
  - **Recurring Data**: Options for recurring payment cycles and intervals.
275
284
  - **Android Config**: Android-specific settings, including payment methods and fields.
@@ -281,12 +290,12 @@ Configure the SDK environment (`sandbox` or `staging`) with API keys and secret
281
290
  ```javascript
282
291
  const [apiKeys, setApiKeys] = useState({
283
292
  sandbox: {
284
- apiKey: 'apiKey',
285
- secretKey: 'secretKey',
293
+ apiKey: 'your-sandbox-api-key',
294
+ secretKey: 'your-sandbox-secret-key',
286
295
  },
287
296
  staging: {
288
- apiKey: 'apiKey',
289
- secretKey: 'secretKey',
297
+ apiKey: 'your-staging-api-key',
298
+ secretKey: 'your-staging-secret-key',
290
299
  },
291
300
  });
292
301
 
@@ -294,11 +303,16 @@ useEffect(() => {
294
303
  const updateEnvironment = async () => {
295
304
  const { apiKey, secretKey } = apiKeys[environment];
296
305
  if (Platform.OS === 'ios') {
306
+ setIsEnvironmentLoading(true);
297
307
  try {
298
308
  await EasyMerchantSdk.setViewController();
299
309
  await EasyMerchantSdk.configureEnvironment(environment, apiKey, secretKey);
310
+ console.log(`iOS Environment configured: ${environment} with key ${apiKey}`);
300
311
  } catch (err) {
312
+ console.error('iOS Initialization Error:', err);
301
313
  Alert.alert('Error', `Failed to configure iOS environment: ${err.message}`);
314
+ } finally {
315
+ setIsEnvironmentLoading(false);
302
316
  }
303
317
  }
304
318
  };
@@ -306,11 +320,11 @@ useEffect(() => {
306
320
  }, [environment, apiKeys]);
307
321
  ```
308
322
 
309
- **Note**: Replace the placeholder API keys with your actual credentials. Store them securely (e.g., in environment variables) rather than hardcoding.
323
+ **Note**: Replace placeholder API keys with your actual credentials. Store them securely (e.g., in environment variables) rather than hardcoding.
310
324
 
311
325
  ### 4. Handle Payments
312
326
 
313
- The `handlePayment` function validates inputs and delegates to platform-specific billing handlers. At least one payment method (`card` or `ach`) must be selected, and recurring payments require at least one interval.
327
+ The `handlePayment` function validates inputs and delegates to platform-specific billing handlers. At least one payment method (`card` or `ach`) and a valid amount are required. For recurring payments, at least one interval must be selected.
314
328
 
315
329
  #### Main Payment Handler
316
330
 
@@ -347,6 +361,11 @@ const handlePayment = async () => {
347
361
  const handleAndroidBilling = async () => {
348
362
  const { apiKey, secretKey } = apiKeys[environment];
349
363
  const selectedPaymentMethods = [...androidConfig.paymentMethods];
364
+ let finalPaymentMethods = selectedPaymentMethods;
365
+ if (selectedPaymentMethods.length === 1 && selectedPaymentMethods.includes('ach')) {
366
+ finalPaymentMethods = ['ach'];
367
+ }
368
+
350
369
  const config = {
351
370
  amount,
352
371
  apiKey,
@@ -364,7 +383,12 @@ const handleAndroidBilling = async () => {
364
383
  showDonate: androidConfig.showDonate,
365
384
  showTotal: androidConfig.showTotal,
366
385
  showSubmitButton: androidConfig.showSubmitButton,
367
- paymentMethods: selectedPaymentMethods,
386
+ paymentMethods: finalPaymentMethods,
387
+ ...(finalPaymentMethods.length === 1 && finalPaymentMethods.includes('ach') && {
388
+ paymentMethods: ['ach'],
389
+ allowedPaymentMethods: ['ach'],
390
+ disableCard: true,
391
+ }),
368
392
  emailEditable,
369
393
  email,
370
394
  name,
@@ -373,7 +397,7 @@ const handleAndroidBilling = async () => {
373
397
  visibility: { billing: isBillingVisible, additional: isAdditionalVisible },
374
398
  },
375
399
  metadata: {
376
- metaKey: 'metaValue',
400
+ account_id: 1,
377
401
  metaKLey1: 'metaValue1',
378
402
  metaKLey2: 'metaValue2',
379
403
  metaKLey3: 'metaValue3',
@@ -392,10 +416,11 @@ const handleAndroidBilling = async () => {
392
416
 
393
417
  try {
394
418
  const response = await RNEasymerchantsdk.makePayment(config);
419
+ const raw = response?.response ? JSON.parse(response.response) : {};
395
420
  const parsedResponse = {
396
- ...JSON.parse(response?.response || '{}'),
397
- billingInfo: safeParseMaybeJSON(response?.billingInfo),
398
- additional_info: safeParseMaybeJSON(response?.additional_info),
421
+ ...raw,
422
+ billingInfo: safeParseMaybeJSON(raw.billingInfo),
423
+ additional_info: safeParseMaybeJSON(raw.additional_info),
399
424
  };
400
425
  setResult(JSON.stringify(parsedResponse, null, 2));
401
426
  } catch (error) {
@@ -412,6 +437,7 @@ const handleIosBilling = async () => {
412
437
  const selectedPaymentMethodsIOS = androidConfig.paymentMethods.map(method =>
413
438
  method === 'card' ? 'Card' : method === 'ach' ? 'Bank' : method
414
439
  );
440
+
415
441
  try {
416
442
  const result = await EasyMerchantSdk.billing(
417
443
  amount,
@@ -438,7 +464,7 @@ const handleIosBilling = async () => {
438
464
  email,
439
465
  name,
440
466
  {
441
- metaKey: 'metaValue',
467
+ account_id: 1,
442
468
  metaKLey1: 'metaValue1',
443
469
  metaKLey2: 'metaValue2',
444
470
  metaKLey3: 'metaValue3',
@@ -497,7 +523,13 @@ useEffect(() => {
497
523
  setResult(JSON.stringify(parsed, null, 2));
498
524
  });
499
525
  const statusErrorSub = easyMerchantEvents.addListener('PaymentStatusError', (data) => {
500
- setResult(`Status Error: ${JSON.stringify(data.error, null, 2)}`);
526
+ let parsedError = data.error;
527
+ try {
528
+ if (typeof parsedError === 'string') {
529
+ parsedError = JSON.parse(parsedError);
530
+ }
531
+ } catch (e) {}
532
+ setResult(`Status Error: ${JSON.stringify(parsedError, null, 2)}`);
501
533
  });
502
534
 
503
535
  return () => {
@@ -510,18 +542,30 @@ useEffect(() => {
510
542
 
511
543
  ## Notes
512
544
 
513
- - **Billing Info**: Set `billingInfo` to `null` if not needed. Required fields are configurable via `billingRequired` and `additionalRequired`.
514
- - **Payment Methods**: Supported methods are `card` and `ach` (mapped to `Card` and `Bank` on iOS). Ensure at least one is selected in `androidConfig.paymentMethods`.
545
+ - **Billing Info**: Set `billingInfo` to `null` if not needed. Use `billingRequired` and `additionalRequired` to configure required fields.
546
+ - **Payment Methods**:
547
+ - Android: `['card', 'ach']` (lowercase).
548
+ - iOS: `['Card', 'Bank']` (capitalized).
549
+ - Ensure at least one payment method is selected in `androidConfig.paymentMethods`.
515
550
  - **Recurring Payments**: Requires at least one interval (`daily`, `weekly`, `monthly`) when enabled.
516
- - **Security**: Store API keys and secret keys securely (e.g., in environment variables or secure storage) rather than hardcoding.
551
+ - **Security**: Store API keys and secret keys securely (e.g., in environment variables or secure storage).
517
552
  - **Platform Differences**:
518
- - **Android**: Uses `RNEasymerchantsdk.makePayment(config)` with a JSON config object. Payment methods are lowercase (`['card', 'ach']`).
519
- - **iOS**: Uses `EasyMerchantSdk.billing(...)` with parameters passed directly. Payment methods are capitalized (`['Card', 'Bank']`).
520
- - iOS supports `paymentReference` for status checks; Android uses `checkPaymentStatus`.
553
+ - **Android**: Uses `RNEasymerchantsdk.makePayment(config)` with a JSON config object. Handles payment methods as lowercase (`['card', 'ach']`).
554
+ - **iOS**: Uses `EasyMerchantSdk.billing(...)` with parameters passed directly. Payment methods are capitalized (`['Card', 'Bank']`).
555
+ - iOS supports `paymentReference` for status checks; Android uses `checkPaymentStatus`.
521
556
 
522
557
  ## Troubleshooting
523
558
 
524
- - **iOS Bridge Initialization**: If you see "Failed to retrieve EasyMerchantSdkPlugin instance" in the console, verify that the `easymerchantsdk` pod is installed and linked correctly. Run `pod install --repo-update` and check `AppDelegate.swift`.
525
- - **Android Payment Issues**: Ensure `paymentMethods` is formatted as `['card', 'ach']` and that API keys are valid. Verify `GITHUB_URL`, `GITHUB_USERNAME`, and `GITHUB_PASSWORD` in `gradle.properties`.
526
- - **Pod Installation**: If `pod install` fails, ensure Ruby 3.2.8 is installed and run `pod install --repo-update`.
527
- - **Payment Failures**: Check console logs for detailed errors. Validate that `amount` is a positive number, payment methods are selected, and API keys are correct.
559
+ - **iOS Bridge Initialization**: If "Failed to retrieve EasyMerchantSdkPlugin instance" appears, verify the `easymerchantsdk` pod is installed correctly. Run `pod install --repo-update` and check `AppDelegate.swift` for correct bridge setup.
560
+ - **Android Payment Issues**:
561
+ - Ensure `paymentMethods` includes at least one valid method (`['card', 'ach']`).
562
+ - Validate API keys and secret keys.
563
+ - Check `gradle.properties` for correct `GITHUB_USERNAME` and `GITHUB_PASSWORD`.
564
+ - Log the `config` object to verify payment method inclusion (e.g., `console.log(JSON.stringify(config, null, 2))`).
565
+ - **Pod Installation**: If `pod install` fails, ensure Ruby 3.2.8 or higher is installed and run `pod install --repo-update`.
566
+ - **Payment Failures**:
567
+ - Check console logs for detailed errors.
568
+ - Ensure `amount` is a positive number.
569
+ - Verify at least one payment method is selected.
570
+ - Confirm API keys match the selected environment (`sandbox` or `staging`).
571
+ - **Payment Method Errors**: If payment fails due to invalid methods, ensure `androidConfig.paymentMethods` contains valid entries (`['card', 'ach']` for Android, `['Card', 'Bank']` for iOS) and that ACH-specific settings (`authenticatedACH`, `secureAuthentication`) are correctly configured when `ach` is selected.
@@ -1,8 +1,8 @@
1
1
  <dependencies>
2
2
  <compile
3
- roots="com.app:paysdk:1.6.0@aar,com.hbb20:ccp:2.7.3@aar,com.github.bumptech.glide:glide:4.16.0@aar,com.google.android.material:material:1.8.0@aar,com.facebook.react:react-android:0.76.4:release@aar,androidx.appcompat:appcompat:1.6.1@aar,androidx.viewpager2:viewpager2:1.0.0@aar,androidx.fragment:fragment:1.3.6@aar,androidx.fragment:fragment:1.3.6@aar,androidx.activity:activity:1.6.0@aar,androidx.lifecycle:lifecycle-common:2.6.2@jar,androidx.lifecycle:lifecycle-livedata-core:2.6.2@aar,androidx.dynamicanimation:dynamicanimation:1.0.0@aar,androidx.legacy:legacy-support-core-utils:1.0.0@aar,androidx.loader:loader:1.0.0@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2@aar,androidx.core:core-ktx:1.13.1@aar,androidx.appcompat:appcompat-resources:1.6.1@aar,androidx.drawerlayout:drawerlayout:1.1.1@aar,androidx.coordinatorlayout:coordinatorlayout:1.1.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.transition:transition:1.2.0@aar,androidx.vectordrawable:vectordrawable-animated:1.1.0@aar,androidx.vectordrawable:vectordrawable:1.1.0@aar,androidx.swiperefreshlayout:swiperefreshlayout:1.1.0@aar,androidx.viewpager:viewpager:1.0.0@aar,androidx.customview:customview:1.1.0@aar,androidx.core:core:1.13.1@aar,androidx.core:core:1.13.1@aar,androidx.lifecycle:lifecycle-runtime:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2@aar,org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1@jar,org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1@jar,com.github.androidmads:QRGenerator:1.0.1@aar,androidx.constraintlayout:constraintlayout:2.1.4@aar,com.github.bumptech.glide:gifdecoder:4.16.0@aar,androidx.cursoradapter:cursoradapter:1.0.0@aar,androidx.savedstate:savedstate:1.2.1@aar,androidx.cardview:cardview:1.0.0@aar,androidx.versionedparcelable:versionedparcelable:1.1.1@aar,androidx.collection:collection:1.1.0@jar,androidx.interpolator:interpolator:1.0.0@aar,androidx.arch.core:core-runtime:2.2.0@aar,androidx.arch.core:core-common:2.2.0@jar,androidx.documentfile:documentfile:1.0.0@aar,androidx.localbroadcastmanager:localbroadcastmanager:1.0.0@aar,androidx.print:print:1.0.0@aar,androidx.annotation:annotation-jvm:1.6.0@jar,com.facebook.fresco:fresco:3.2.0@aar,com.facebook.fresco:imagepipeline-okhttp3:3.2.0@aar,com.facebook.fresco:middleware:3.2.0@aar,com.facebook.fresco:ui-common:3.2.0@aar,com.squareup.okhttp3:okhttp-urlconnection:4.9.2@jar,com.facebook.fresco:fbcore:3.2.0@aar,com.facebook.fresco:imagepipeline:3.2.0@aar,com.facebook.fresco:imagepipeline-base:3.2.0@aar,org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21@jar,androidx.annotation:annotation-experimental:1.4.0@aar,com.squareup.okhttp3:okhttp:4.9.2@jar,com.squareup.okio:okio:2.9.0@jar,org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21@jar,org.jetbrains.kotlin:kotlin-stdlib:1.9.24@jar,org.jetbrains:annotations:23.0.0@jar,androidx.tracing:tracing:1.1.0@aar,com.github.bumptech.glide:disklrucache:4.16.0@jar,com.github.bumptech.glide:annotations:4.16.0@jar,androidx.exifinterface:exifinterface:1.3.6@aar,androidx.autofill:autofill:1.1.0@aar,com.facebook.fbjni:fbjni:0.6.0@aar,com.facebook.soloader:soloader:0.12.1@aar,com.facebook.soloader:nativeloader:0.12.1@jar,com.facebook.soloader:annotation:0.12.1@jar,com.facebook.fresco:drawee:3.2.0@aar,com.facebook.infer.annotation:infer-annotation:0.18.0@jar,com.google.code.findbugs:jsr305:3.0.2@jar,org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72@jar,com.facebook.fresco:imagepipeline-native:3.2.0@aar,com.facebook.fresco:memory-type-ashmem:3.2.0@aar,com.facebook.fresco:memory-type-native:3.2.0@aar,com.facebook.fresco:memory-type-java:3.2.0@aar,com.facebook.fresco:nativeimagefilters:3.2.0@aar,com.facebook.fresco:nativeimagetranscoder:3.2.0@aar,com.facebook.yoga:proguard-annotations:1.19.0@jar,javax.inject:javax.inject:1@jar">
3
+ roots="com.app:paysdk:1.6.0-debug@aar,com.hbb20:ccp:2.7.3@aar,com.github.bumptech.glide:glide:4.16.0@aar,com.google.android.material:material:1.8.0@aar,com.facebook.react:react-android:0.76.4:release@aar,androidx.appcompat:appcompat:1.6.1@aar,androidx.viewpager2:viewpager2:1.0.0@aar,androidx.fragment:fragment:1.3.6@aar,androidx.fragment:fragment:1.3.6@aar,androidx.activity:activity:1.6.0@aar,androidx.lifecycle:lifecycle-common:2.6.2@jar,androidx.lifecycle:lifecycle-livedata-core:2.6.2@aar,androidx.dynamicanimation:dynamicanimation:1.0.0@aar,androidx.legacy:legacy-support-core-utils:1.0.0@aar,androidx.loader:loader:1.0.0@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2@aar,androidx.core:core-ktx:1.13.1@aar,androidx.appcompat:appcompat-resources:1.6.1@aar,androidx.drawerlayout:drawerlayout:1.1.1@aar,androidx.coordinatorlayout:coordinatorlayout:1.1.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.transition:transition:1.2.0@aar,androidx.vectordrawable:vectordrawable-animated:1.1.0@aar,androidx.vectordrawable:vectordrawable:1.1.0@aar,androidx.swiperefreshlayout:swiperefreshlayout:1.1.0@aar,androidx.viewpager:viewpager:1.0.0@aar,androidx.customview:customview:1.1.0@aar,androidx.core:core:1.13.1@aar,androidx.core:core:1.13.1@aar,androidx.lifecycle:lifecycle-runtime:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2@aar,org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1@jar,org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1@jar,com.github.androidmads:QRGenerator:1.0.1@aar,androidx.constraintlayout:constraintlayout:2.1.4@aar,com.github.bumptech.glide:gifdecoder:4.16.0@aar,androidx.cursoradapter:cursoradapter:1.0.0@aar,androidx.savedstate:savedstate:1.2.1@aar,androidx.cardview:cardview:1.0.0@aar,androidx.versionedparcelable:versionedparcelable:1.1.1@aar,androidx.collection:collection:1.1.0@jar,androidx.interpolator:interpolator:1.0.0@aar,androidx.arch.core:core-runtime:2.2.0@aar,androidx.arch.core:core-common:2.2.0@jar,androidx.documentfile:documentfile:1.0.0@aar,androidx.localbroadcastmanager:localbroadcastmanager:1.0.0@aar,androidx.print:print:1.0.0@aar,androidx.annotation:annotation-jvm:1.6.0@jar,com.facebook.fresco:fresco:3.2.0@aar,com.facebook.fresco:imagepipeline-okhttp3:3.2.0@aar,com.facebook.fresco:middleware:3.2.0@aar,com.facebook.fresco:ui-common:3.2.0@aar,com.squareup.okhttp3:okhttp-urlconnection:4.9.2@jar,com.facebook.fresco:fbcore:3.2.0@aar,com.facebook.fresco:imagepipeline:3.2.0@aar,com.facebook.fresco:imagepipeline-base:3.2.0@aar,org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21@jar,androidx.annotation:annotation-experimental:1.4.0@aar,com.squareup.okhttp3:okhttp:4.9.2@jar,com.squareup.okio:okio:2.9.0@jar,org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21@jar,org.jetbrains.kotlin:kotlin-stdlib:1.9.24@jar,org.jetbrains:annotations:23.0.0@jar,androidx.tracing:tracing:1.1.0@aar,com.github.bumptech.glide:disklrucache:4.16.0@jar,com.github.bumptech.glide:annotations:4.16.0@jar,androidx.exifinterface:exifinterface:1.3.6@aar,androidx.autofill:autofill:1.1.0@aar,com.facebook.fbjni:fbjni:0.6.0@aar,com.facebook.soloader:soloader:0.12.1@aar,com.facebook.soloader:nativeloader:0.12.1@jar,com.facebook.soloader:annotation:0.12.1@jar,com.facebook.fresco:drawee:3.2.0@aar,com.facebook.infer.annotation:infer-annotation:0.18.0@jar,com.google.code.findbugs:jsr305:3.0.2@jar,org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72@jar,com.facebook.fresco:imagepipeline-native:3.2.0@aar,com.facebook.fresco:memory-type-ashmem:3.2.0@aar,com.facebook.fresco:memory-type-native:3.2.0@aar,com.facebook.fresco:memory-type-java:3.2.0@aar,com.facebook.fresco:nativeimagefilters:3.2.0@aar,com.facebook.fresco:nativeimagetranscoder:3.2.0@aar,com.facebook.yoga:proguard-annotations:1.19.0@jar,javax.inject:javax.inject:1@jar">
4
4
  <dependency
5
- name="com.app:paysdk:1.6.0@aar"
5
+ name="com.app:paysdk:1.6.0-debug@aar"
6
6
  simpleName="com.app:paysdk"/>
7
7
  <dependency
8
8
  name="com.hbb20:ccp:2.7.3@aar"
@@ -261,9 +261,9 @@
261
261
  simpleName="javax.inject:javax.inject"/>
262
262
  </compile>
263
263
  <package
264
- roots="com.app:paysdk:1.6.0@aar,com.hbb20:ccp:2.7.3@aar,com.github.bumptech.glide:glide:4.16.0@aar,org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1@jar,com.google.android.material:material:1.8.0@aar,com.facebook.react:react-android:0.76.4:release@aar,androidx.constraintlayout:constraintlayout:2.1.4@aar,androidx.appcompat:appcompat-resources:1.6.1@aar,androidx.appcompat:appcompat:1.6.1@aar,androidx.viewpager2:viewpager2:1.0.0@aar,androidx.fragment:fragment:1.3.6@aar,androidx.fragment:fragment:1.3.6@aar,androidx.activity:activity:1.6.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.customview:customview-poolingcontainer:1.0.0@aar,androidx.dynamicanimation:dynamicanimation:1.0.0@aar,androidx.legacy:legacy-support-core-utils:1.0.0@aar,androidx.loader:loader:1.0.0@aar,androidx.emoji2:emoji2-views-helper:1.2.0@aar,androidx.emoji2:emoji2:1.2.0@aar,androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-process:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-core:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2@aar,androidx.core:core-ktx:1.13.1@aar,androidx.drawerlayout:drawerlayout:1.1.1@aar,androidx.coordinatorlayout:coordinatorlayout:1.1.0@aar,androidx.transition:transition:1.2.0@aar,androidx.vectordrawable:vectordrawable-animated:1.1.0@aar,androidx.vectordrawable:vectordrawable:1.1.0@aar,androidx.autofill:autofill:1.1.0@aar,androidx.swiperefreshlayout:swiperefreshlayout:1.1.0@aar,androidx.viewpager:viewpager:1.0.0@aar,androidx.customview:customview:1.1.0@aar,com.facebook.fresco:fresco:3.2.0@aar,com.facebook.fresco:imagepipeline-okhttp3:3.2.0@aar,com.facebook.fresco:drawee:3.2.0@aar,com.facebook.fresco:nativeimagefilters:3.2.0@aar,com.facebook.fresco:memory-type-native:3.2.0@aar,com.facebook.fresco:memory-type-java:3.2.0@aar,com.facebook.fresco:imagepipeline-native:3.2.0@aar,com.facebook.fresco:memory-type-ashmem:3.2.0@aar,com.facebook.fresco:imagepipeline:3.2.0@aar,com.facebook.fresco:nativeimagetranscoder:3.2.0@aar,com.facebook.fresco:imagepipeline-base:3.2.0@aar,com.facebook.fresco:middleware:3.2.0@aar,com.facebook.fresco:ui-common:3.2.0@aar,com.facebook.fresco:soloader:3.2.0@aar,com.facebook.fresco:fbcore:3.2.0@aar,androidx.core:core:1.13.1@aar,androidx.core:core:1.13.1@aar,androidx.lifecycle:lifecycle-runtime:2.6.2@aar,androidx.savedstate:savedstate:1.2.1@aar,androidx.lifecycle:lifecycle-common:2.6.2@jar,org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1@jar,com.github.androidmads:QRGenerator:1.0.1@aar,io.michaelrocks:libphonenumber-android:8.13.13@aar,androidx.cardview:cardview:1.0.0@aar,com.github.bumptech.glide:gifdecoder:4.16.0@aar,com.github.bumptech.glide:disklrucache:4.16.0@jar,com.github.bumptech.glide:annotations:4.16.0@jar,androidx.exifinterface:exifinterface:1.3.6@aar,androidx.profileinstaller:profileinstaller:1.3.0@aar,androidx.startup:startup-runtime:1.1.1@aar,androidx.tracing:tracing:1.1.0@aar,com.squareup.okhttp3:okhttp-urlconnection:4.9.2@jar,com.squareup.okhttp3:okhttp:4.9.2@jar,com.squareup.okio:okio:2.9.0@jar,androidx.annotation:annotation-experimental:1.4.0@aar,org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21@jar,androidx.cursoradapter:cursoradapter:1.0.0@aar,androidx.resourceinspection:resourceinspection-annotation:1.0.1@jar,androidx.versionedparcelable:versionedparcelable:1.1.1@aar,androidx.collection:collection:1.1.0@jar,androidx.interpolator:interpolator:1.0.0@aar,androidx.documentfile:documentfile:1.0.0@aar,androidx.localbroadcastmanager:localbroadcastmanager:1.0.0@aar,androidx.print:print:1.0.0@aar,androidx.arch.core:core-runtime:2.2.0@aar,androidx.arch.core:core-common:2.2.0@jar,androidx.concurrent:concurrent-futures:1.1.0@jar,androidx.annotation:annotation-jvm:1.6.0@jar,org.jetbrains.kotlin:kotlin-stdlib:1.9.24@jar,org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21@jar,com.google.zxing:core:3.5.0@jar,com.google.errorprone:error_prone_annotations:2.15.0@jar,com.facebook.fbjni:fbjni:0.6.0@aar,com.facebook.infer.annotation:infer-annotation:0.18.0@jar,com.facebook.soloader:soloader:0.12.1@aar,com.facebook.yoga:proguard-annotations:1.19.0@jar,com.google.code.findbugs:jsr305:3.0.2@jar,javax.inject:javax.inject:1@jar,androidx.constraintlayout:constraintlayout-core:1.0.4@jar,org.jetbrains:annotations:23.0.0@jar,com.facebook.soloader:nativeloader:0.12.1@jar,org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72@jar,com.facebook.soloader:annotation:0.12.1@jar,com.parse.bolts:bolts-tasks:1.4.0@jar,com.google.guava:listenablefuture:1.0@jar">
264
+ roots="com.app:paysdk:1.6.0-debug@aar,com.hbb20:ccp:2.7.3@aar,com.github.bumptech.glide:glide:4.16.0@aar,org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1@jar,com.google.android.material:material:1.8.0@aar,com.facebook.react:react-android:0.76.4:release@aar,androidx.constraintlayout:constraintlayout:2.1.4@aar,androidx.appcompat:appcompat-resources:1.6.1@aar,androidx.appcompat:appcompat:1.6.1@aar,androidx.viewpager2:viewpager2:1.0.0@aar,androidx.fragment:fragment:1.3.6@aar,androidx.fragment:fragment:1.3.6@aar,androidx.activity:activity:1.6.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.customview:customview-poolingcontainer:1.0.0@aar,androidx.dynamicanimation:dynamicanimation:1.0.0@aar,androidx.legacy:legacy-support-core-utils:1.0.0@aar,androidx.loader:loader:1.0.0@aar,androidx.emoji2:emoji2-views-helper:1.2.0@aar,androidx.emoji2:emoji2:1.2.0@aar,androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-process:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-core:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2@aar,androidx.core:core-ktx:1.13.1@aar,androidx.drawerlayout:drawerlayout:1.1.1@aar,androidx.coordinatorlayout:coordinatorlayout:1.1.0@aar,androidx.transition:transition:1.2.0@aar,androidx.vectordrawable:vectordrawable-animated:1.1.0@aar,androidx.vectordrawable:vectordrawable:1.1.0@aar,androidx.autofill:autofill:1.1.0@aar,androidx.swiperefreshlayout:swiperefreshlayout:1.1.0@aar,androidx.viewpager:viewpager:1.0.0@aar,androidx.customview:customview:1.1.0@aar,com.facebook.fresco:fresco:3.2.0@aar,com.facebook.fresco:imagepipeline-okhttp3:3.2.0@aar,com.facebook.fresco:drawee:3.2.0@aar,com.facebook.fresco:nativeimagefilters:3.2.0@aar,com.facebook.fresco:memory-type-native:3.2.0@aar,com.facebook.fresco:memory-type-java:3.2.0@aar,com.facebook.fresco:imagepipeline-native:3.2.0@aar,com.facebook.fresco:memory-type-ashmem:3.2.0@aar,com.facebook.fresco:imagepipeline:3.2.0@aar,com.facebook.fresco:nativeimagetranscoder:3.2.0@aar,com.facebook.fresco:imagepipeline-base:3.2.0@aar,com.facebook.fresco:middleware:3.2.0@aar,com.facebook.fresco:ui-common:3.2.0@aar,com.facebook.fresco:soloader:3.2.0@aar,com.facebook.fresco:fbcore:3.2.0@aar,androidx.core:core:1.13.1@aar,androidx.core:core:1.13.1@aar,androidx.lifecycle:lifecycle-runtime:2.6.2@aar,androidx.savedstate:savedstate:1.2.1@aar,androidx.lifecycle:lifecycle-common:2.6.2@jar,org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1@jar,com.github.androidmads:QRGenerator:1.0.1@aar,io.michaelrocks:libphonenumber-android:8.13.13@aar,androidx.cardview:cardview:1.0.0@aar,com.github.bumptech.glide:gifdecoder:4.16.0@aar,com.github.bumptech.glide:disklrucache:4.16.0@jar,com.github.bumptech.glide:annotations:4.16.0@jar,androidx.exifinterface:exifinterface:1.3.6@aar,androidx.profileinstaller:profileinstaller:1.3.0@aar,androidx.startup:startup-runtime:1.1.1@aar,androidx.tracing:tracing:1.1.0@aar,com.squareup.okhttp3:okhttp-urlconnection:4.9.2@jar,com.squareup.okhttp3:okhttp:4.9.2@jar,com.squareup.okio:okio:2.9.0@jar,androidx.annotation:annotation-experimental:1.4.0@aar,org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21@jar,androidx.cursoradapter:cursoradapter:1.0.0@aar,androidx.resourceinspection:resourceinspection-annotation:1.0.1@jar,androidx.versionedparcelable:versionedparcelable:1.1.1@aar,androidx.collection:collection:1.1.0@jar,androidx.interpolator:interpolator:1.0.0@aar,androidx.documentfile:documentfile:1.0.0@aar,androidx.localbroadcastmanager:localbroadcastmanager:1.0.0@aar,androidx.print:print:1.0.0@aar,androidx.arch.core:core-runtime:2.2.0@aar,androidx.arch.core:core-common:2.2.0@jar,androidx.concurrent:concurrent-futures:1.1.0@jar,androidx.annotation:annotation-jvm:1.6.0@jar,org.jetbrains.kotlin:kotlin-stdlib:1.9.24@jar,org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21@jar,com.google.zxing:core:3.5.0@jar,com.google.errorprone:error_prone_annotations:2.15.0@jar,com.facebook.fbjni:fbjni:0.6.0@aar,com.facebook.infer.annotation:infer-annotation:0.18.0@jar,com.facebook.soloader:soloader:0.12.1@aar,com.facebook.yoga:proguard-annotations:1.19.0@jar,com.google.code.findbugs:jsr305:3.0.2@jar,javax.inject:javax.inject:1@jar,androidx.constraintlayout:constraintlayout-core:1.0.4@jar,org.jetbrains:annotations:23.0.0@jar,com.facebook.soloader:nativeloader:0.12.1@jar,org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72@jar,com.facebook.soloader:annotation:0.12.1@jar,com.parse.bolts:bolts-tasks:1.4.0@jar,com.google.guava:listenablefuture:1.0@jar">
265
265
  <dependency
266
- name="com.app:paysdk:1.6.0@aar"
266
+ name="com.app:paysdk:1.6.0-debug@aar"
267
267
  simpleName="com.app:paysdk"/>
268
268
  <dependency
269
269
  name="com.hbb20:ccp:2.7.3@aar"
@@ -1,9 +1,9 @@
1
1
  <libraries>
2
2
  <library
3
- name="com.app:paysdk:1.6.0@aar"
4
- jars="/Users/appdev/.gradle/caches/8.10.2/transforms/92a68420d390f3e7177fbd0a06dcfa81/transformed/paysdk-1.6.0/jars/classes.jar"
5
- resolved="com.app:paysdk:1.6.0"
6
- folder="/Users/appdev/.gradle/caches/8.10.2/transforms/92a68420d390f3e7177fbd0a06dcfa81/transformed/paysdk-1.6.0"
3
+ name="com.app:paysdk:1.6.0-debug@aar"
4
+ jars="/Users/appdev/.gradle/caches/8.10.2/transforms/7d449ca4b045e9bafd4d5838383a0262/transformed/paysdk-1.6.0-debug/jars/classes.jar"
5
+ resolved="com.app:paysdk:1.6.0-debug"
6
+ folder="/Users/appdev/.gradle/caches/8.10.2/transforms/7d449ca4b045e9bafd4d5838383a0262/transformed/paysdk-1.6.0-debug"
7
7
  manifest="AndroidManifest.xml"
8
8
  resFolder="res"
9
9
  assetsFolder="assets"
@@ -1,8 +1,8 @@
1
1
  <dependencies>
2
2
  <compile
3
- roots="com.app:paysdk:1.6.0@aar,com.hbb20:ccp:2.7.3@aar,com.github.bumptech.glide:glide:4.16.0@aar,com.google.android.material:material:1.8.0@aar,com.facebook.react:react-android:0.76.4:release@aar,androidx.appcompat:appcompat:1.6.1@aar,androidx.viewpager2:viewpager2:1.0.0@aar,androidx.fragment:fragment:1.3.6@aar,androidx.fragment:fragment:1.3.6@aar,androidx.activity:activity:1.6.0@aar,androidx.lifecycle:lifecycle-common:2.6.2@jar,androidx.lifecycle:lifecycle-livedata-core:2.6.2@aar,androidx.dynamicanimation:dynamicanimation:1.0.0@aar,androidx.legacy:legacy-support-core-utils:1.0.0@aar,androidx.loader:loader:1.0.0@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2@aar,androidx.core:core-ktx:1.13.1@aar,androidx.appcompat:appcompat-resources:1.6.1@aar,androidx.drawerlayout:drawerlayout:1.1.1@aar,androidx.coordinatorlayout:coordinatorlayout:1.1.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.transition:transition:1.2.0@aar,androidx.vectordrawable:vectordrawable-animated:1.1.0@aar,androidx.vectordrawable:vectordrawable:1.1.0@aar,androidx.swiperefreshlayout:swiperefreshlayout:1.1.0@aar,androidx.viewpager:viewpager:1.0.0@aar,androidx.customview:customview:1.1.0@aar,androidx.core:core:1.13.1@aar,androidx.core:core:1.13.1@aar,androidx.lifecycle:lifecycle-runtime:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2@aar,org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1@jar,org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1@jar,com.github.androidmads:QRGenerator:1.0.1@aar,androidx.constraintlayout:constraintlayout:2.1.4@aar,com.github.bumptech.glide:gifdecoder:4.16.0@aar,androidx.cursoradapter:cursoradapter:1.0.0@aar,androidx.savedstate:savedstate:1.2.1@aar,androidx.cardview:cardview:1.0.0@aar,androidx.versionedparcelable:versionedparcelable:1.1.1@aar,androidx.collection:collection:1.1.0@jar,androidx.interpolator:interpolator:1.0.0@aar,androidx.arch.core:core-runtime:2.2.0@aar,androidx.arch.core:core-common:2.2.0@jar,androidx.documentfile:documentfile:1.0.0@aar,androidx.localbroadcastmanager:localbroadcastmanager:1.0.0@aar,androidx.print:print:1.0.0@aar,androidx.annotation:annotation-jvm:1.6.0@jar,com.facebook.fresco:fresco:3.2.0@aar,com.facebook.fresco:imagepipeline-okhttp3:3.2.0@aar,com.facebook.fresco:middleware:3.2.0@aar,com.facebook.fresco:ui-common:3.2.0@aar,com.squareup.okhttp3:okhttp-urlconnection:4.9.2@jar,com.facebook.fresco:fbcore:3.2.0@aar,com.facebook.fresco:imagepipeline:3.2.0@aar,com.facebook.fresco:imagepipeline-base:3.2.0@aar,org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21@jar,androidx.annotation:annotation-experimental:1.4.0@aar,com.squareup.okhttp3:okhttp:4.9.2@jar,com.squareup.okio:okio:2.9.0@jar,org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21@jar,org.jetbrains.kotlin:kotlin-stdlib:1.9.24@jar,org.jetbrains:annotations:23.0.0@jar,androidx.tracing:tracing:1.1.0@aar,com.github.bumptech.glide:disklrucache:4.16.0@jar,com.github.bumptech.glide:annotations:4.16.0@jar,androidx.exifinterface:exifinterface:1.3.6@aar,androidx.autofill:autofill:1.1.0@aar,com.facebook.fbjni:fbjni:0.6.0@aar,com.facebook.soloader:soloader:0.12.1@aar,com.facebook.soloader:nativeloader:0.12.1@jar,com.facebook.soloader:annotation:0.12.1@jar,com.facebook.fresco:drawee:3.2.0@aar,com.facebook.infer.annotation:infer-annotation:0.18.0@jar,com.google.code.findbugs:jsr305:3.0.2@jar,org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72@jar,com.facebook.fresco:imagepipeline-native:3.2.0@aar,com.facebook.fresco:memory-type-ashmem:3.2.0@aar,com.facebook.fresco:memory-type-native:3.2.0@aar,com.facebook.fresco:memory-type-java:3.2.0@aar,com.facebook.fresco:nativeimagefilters:3.2.0@aar,com.facebook.fresco:nativeimagetranscoder:3.2.0@aar,com.facebook.yoga:proguard-annotations:1.19.0@jar,javax.inject:javax.inject:1@jar">
3
+ roots="com.app:paysdk:1.6.0-debug@aar,com.hbb20:ccp:2.7.3@aar,com.github.bumptech.glide:glide:4.16.0@aar,com.google.android.material:material:1.8.0@aar,com.facebook.react:react-android:0.76.4:release@aar,androidx.appcompat:appcompat:1.6.1@aar,androidx.viewpager2:viewpager2:1.0.0@aar,androidx.fragment:fragment:1.3.6@aar,androidx.fragment:fragment:1.3.6@aar,androidx.activity:activity:1.6.0@aar,androidx.lifecycle:lifecycle-common:2.6.2@jar,androidx.lifecycle:lifecycle-livedata-core:2.6.2@aar,androidx.dynamicanimation:dynamicanimation:1.0.0@aar,androidx.legacy:legacy-support-core-utils:1.0.0@aar,androidx.loader:loader:1.0.0@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2@aar,androidx.core:core-ktx:1.13.1@aar,androidx.appcompat:appcompat-resources:1.6.1@aar,androidx.drawerlayout:drawerlayout:1.1.1@aar,androidx.coordinatorlayout:coordinatorlayout:1.1.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.transition:transition:1.2.0@aar,androidx.vectordrawable:vectordrawable-animated:1.1.0@aar,androidx.vectordrawable:vectordrawable:1.1.0@aar,androidx.swiperefreshlayout:swiperefreshlayout:1.1.0@aar,androidx.viewpager:viewpager:1.0.0@aar,androidx.customview:customview:1.1.0@aar,androidx.core:core:1.13.1@aar,androidx.core:core:1.13.1@aar,androidx.lifecycle:lifecycle-runtime:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2@aar,org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1@jar,org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1@jar,com.github.androidmads:QRGenerator:1.0.1@aar,androidx.constraintlayout:constraintlayout:2.1.4@aar,com.github.bumptech.glide:gifdecoder:4.16.0@aar,androidx.cursoradapter:cursoradapter:1.0.0@aar,androidx.savedstate:savedstate:1.2.1@aar,androidx.cardview:cardview:1.0.0@aar,androidx.versionedparcelable:versionedparcelable:1.1.1@aar,androidx.collection:collection:1.1.0@jar,androidx.interpolator:interpolator:1.0.0@aar,androidx.arch.core:core-runtime:2.2.0@aar,androidx.arch.core:core-common:2.2.0@jar,androidx.documentfile:documentfile:1.0.0@aar,androidx.localbroadcastmanager:localbroadcastmanager:1.0.0@aar,androidx.print:print:1.0.0@aar,androidx.annotation:annotation-jvm:1.6.0@jar,com.facebook.fresco:fresco:3.2.0@aar,com.facebook.fresco:imagepipeline-okhttp3:3.2.0@aar,com.facebook.fresco:middleware:3.2.0@aar,com.facebook.fresco:ui-common:3.2.0@aar,com.squareup.okhttp3:okhttp-urlconnection:4.9.2@jar,com.facebook.fresco:fbcore:3.2.0@aar,com.facebook.fresco:imagepipeline:3.2.0@aar,com.facebook.fresco:imagepipeline-base:3.2.0@aar,org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21@jar,androidx.annotation:annotation-experimental:1.4.0@aar,com.squareup.okhttp3:okhttp:4.9.2@jar,com.squareup.okio:okio:2.9.0@jar,org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21@jar,org.jetbrains.kotlin:kotlin-stdlib:1.9.24@jar,org.jetbrains:annotations:23.0.0@jar,androidx.tracing:tracing:1.1.0@aar,com.github.bumptech.glide:disklrucache:4.16.0@jar,com.github.bumptech.glide:annotations:4.16.0@jar,androidx.exifinterface:exifinterface:1.3.6@aar,androidx.autofill:autofill:1.1.0@aar,com.facebook.fbjni:fbjni:0.6.0@aar,com.facebook.soloader:soloader:0.12.1@aar,com.facebook.soloader:nativeloader:0.12.1@jar,com.facebook.soloader:annotation:0.12.1@jar,com.facebook.fresco:drawee:3.2.0@aar,com.facebook.infer.annotation:infer-annotation:0.18.0@jar,com.google.code.findbugs:jsr305:3.0.2@jar,org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72@jar,com.facebook.fresco:imagepipeline-native:3.2.0@aar,com.facebook.fresco:memory-type-ashmem:3.2.0@aar,com.facebook.fresco:memory-type-native:3.2.0@aar,com.facebook.fresco:memory-type-java:3.2.0@aar,com.facebook.fresco:nativeimagefilters:3.2.0@aar,com.facebook.fresco:nativeimagetranscoder:3.2.0@aar,com.facebook.yoga:proguard-annotations:1.19.0@jar,javax.inject:javax.inject:1@jar">
4
4
  <dependency
5
- name="com.app:paysdk:1.6.0@aar"
5
+ name="com.app:paysdk:1.6.0-debug@aar"
6
6
  simpleName="com.app:paysdk"/>
7
7
  <dependency
8
8
  name="com.hbb20:ccp:2.7.3@aar"
@@ -261,9 +261,9 @@
261
261
  simpleName="javax.inject:javax.inject"/>
262
262
  </compile>
263
263
  <package
264
- roots="com.app:paysdk:1.6.0@aar,com.hbb20:ccp:2.7.3@aar,com.github.bumptech.glide:glide:4.16.0@aar,org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1@jar,com.google.android.material:material:1.8.0@aar,com.facebook.react:react-android:0.76.4:release@aar,androidx.constraintlayout:constraintlayout:2.1.4@aar,androidx.appcompat:appcompat-resources:1.6.1@aar,androidx.appcompat:appcompat:1.6.1@aar,androidx.viewpager2:viewpager2:1.0.0@aar,androidx.fragment:fragment:1.3.6@aar,androidx.fragment:fragment:1.3.6@aar,androidx.activity:activity:1.6.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.customview:customview-poolingcontainer:1.0.0@aar,androidx.dynamicanimation:dynamicanimation:1.0.0@aar,androidx.legacy:legacy-support-core-utils:1.0.0@aar,androidx.loader:loader:1.0.0@aar,androidx.emoji2:emoji2-views-helper:1.2.0@aar,androidx.emoji2:emoji2:1.2.0@aar,androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-process:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-core:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2@aar,androidx.core:core-ktx:1.13.1@aar,androidx.drawerlayout:drawerlayout:1.1.1@aar,androidx.coordinatorlayout:coordinatorlayout:1.1.0@aar,androidx.transition:transition:1.2.0@aar,androidx.vectordrawable:vectordrawable-animated:1.1.0@aar,androidx.vectordrawable:vectordrawable:1.1.0@aar,androidx.autofill:autofill:1.1.0@aar,androidx.swiperefreshlayout:swiperefreshlayout:1.1.0@aar,androidx.viewpager:viewpager:1.0.0@aar,androidx.customview:customview:1.1.0@aar,com.facebook.fresco:fresco:3.2.0@aar,com.facebook.fresco:imagepipeline-okhttp3:3.2.0@aar,com.facebook.fresco:drawee:3.2.0@aar,com.facebook.fresco:nativeimagefilters:3.2.0@aar,com.facebook.fresco:memory-type-native:3.2.0@aar,com.facebook.fresco:memory-type-java:3.2.0@aar,com.facebook.fresco:imagepipeline-native:3.2.0@aar,com.facebook.fresco:memory-type-ashmem:3.2.0@aar,com.facebook.fresco:imagepipeline:3.2.0@aar,com.facebook.fresco:nativeimagetranscoder:3.2.0@aar,com.facebook.fresco:imagepipeline-base:3.2.0@aar,com.facebook.fresco:middleware:3.2.0@aar,com.facebook.fresco:ui-common:3.2.0@aar,com.facebook.fresco:soloader:3.2.0@aar,com.facebook.fresco:fbcore:3.2.0@aar,androidx.core:core:1.13.1@aar,androidx.core:core:1.13.1@aar,androidx.lifecycle:lifecycle-runtime:2.6.2@aar,androidx.savedstate:savedstate:1.2.1@aar,androidx.lifecycle:lifecycle-common:2.6.2@jar,org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1@jar,com.github.androidmads:QRGenerator:1.0.1@aar,io.michaelrocks:libphonenumber-android:8.13.13@aar,androidx.cardview:cardview:1.0.0@aar,com.github.bumptech.glide:gifdecoder:4.16.0@aar,com.github.bumptech.glide:disklrucache:4.16.0@jar,com.github.bumptech.glide:annotations:4.16.0@jar,androidx.exifinterface:exifinterface:1.3.6@aar,androidx.profileinstaller:profileinstaller:1.3.0@aar,androidx.startup:startup-runtime:1.1.1@aar,androidx.tracing:tracing:1.1.0@aar,com.squareup.okhttp3:okhttp-urlconnection:4.9.2@jar,com.squareup.okhttp3:okhttp:4.9.2@jar,com.squareup.okio:okio:2.9.0@jar,androidx.annotation:annotation-experimental:1.4.0@aar,org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21@jar,androidx.cursoradapter:cursoradapter:1.0.0@aar,androidx.resourceinspection:resourceinspection-annotation:1.0.1@jar,androidx.versionedparcelable:versionedparcelable:1.1.1@aar,androidx.collection:collection:1.1.0@jar,androidx.interpolator:interpolator:1.0.0@aar,androidx.documentfile:documentfile:1.0.0@aar,androidx.localbroadcastmanager:localbroadcastmanager:1.0.0@aar,androidx.print:print:1.0.0@aar,androidx.arch.core:core-runtime:2.2.0@aar,androidx.arch.core:core-common:2.2.0@jar,androidx.concurrent:concurrent-futures:1.1.0@jar,androidx.annotation:annotation-jvm:1.6.0@jar,org.jetbrains.kotlin:kotlin-stdlib:1.9.24@jar,org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21@jar,com.google.zxing:core:3.5.0@jar,com.google.errorprone:error_prone_annotations:2.15.0@jar,com.facebook.fbjni:fbjni:0.6.0@aar,com.facebook.infer.annotation:infer-annotation:0.18.0@jar,com.facebook.soloader:soloader:0.12.1@aar,com.facebook.yoga:proguard-annotations:1.19.0@jar,com.google.code.findbugs:jsr305:3.0.2@jar,javax.inject:javax.inject:1@jar,androidx.constraintlayout:constraintlayout-core:1.0.4@jar,org.jetbrains:annotations:23.0.0@jar,com.facebook.soloader:nativeloader:0.12.1@jar,org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72@jar,com.facebook.soloader:annotation:0.12.1@jar,com.parse.bolts:bolts-tasks:1.4.0@jar,com.google.guava:listenablefuture:1.0@jar">
264
+ roots="com.app:paysdk:1.6.0-debug@aar,com.hbb20:ccp:2.7.3@aar,com.github.bumptech.glide:glide:4.16.0@aar,org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1@jar,com.google.android.material:material:1.8.0@aar,com.facebook.react:react-android:0.76.4:release@aar,androidx.constraintlayout:constraintlayout:2.1.4@aar,androidx.appcompat:appcompat-resources:1.6.1@aar,androidx.appcompat:appcompat:1.6.1@aar,androidx.viewpager2:viewpager2:1.0.0@aar,androidx.fragment:fragment:1.3.6@aar,androidx.fragment:fragment:1.3.6@aar,androidx.activity:activity:1.6.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.customview:customview-poolingcontainer:1.0.0@aar,androidx.dynamicanimation:dynamicanimation:1.0.0@aar,androidx.legacy:legacy-support-core-utils:1.0.0@aar,androidx.loader:loader:1.0.0@aar,androidx.emoji2:emoji2-views-helper:1.2.0@aar,androidx.emoji2:emoji2:1.2.0@aar,androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-process:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-core:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2@aar,androidx.core:core-ktx:1.13.1@aar,androidx.drawerlayout:drawerlayout:1.1.1@aar,androidx.coordinatorlayout:coordinatorlayout:1.1.0@aar,androidx.transition:transition:1.2.0@aar,androidx.vectordrawable:vectordrawable-animated:1.1.0@aar,androidx.vectordrawable:vectordrawable:1.1.0@aar,androidx.autofill:autofill:1.1.0@aar,androidx.swiperefreshlayout:swiperefreshlayout:1.1.0@aar,androidx.viewpager:viewpager:1.0.0@aar,androidx.customview:customview:1.1.0@aar,com.facebook.fresco:fresco:3.2.0@aar,com.facebook.fresco:imagepipeline-okhttp3:3.2.0@aar,com.facebook.fresco:drawee:3.2.0@aar,com.facebook.fresco:nativeimagefilters:3.2.0@aar,com.facebook.fresco:memory-type-native:3.2.0@aar,com.facebook.fresco:memory-type-java:3.2.0@aar,com.facebook.fresco:imagepipeline-native:3.2.0@aar,com.facebook.fresco:memory-type-ashmem:3.2.0@aar,com.facebook.fresco:imagepipeline:3.2.0@aar,com.facebook.fresco:nativeimagetranscoder:3.2.0@aar,com.facebook.fresco:imagepipeline-base:3.2.0@aar,com.facebook.fresco:middleware:3.2.0@aar,com.facebook.fresco:ui-common:3.2.0@aar,com.facebook.fresco:soloader:3.2.0@aar,com.facebook.fresco:fbcore:3.2.0@aar,androidx.core:core:1.13.1@aar,androidx.core:core:1.13.1@aar,androidx.lifecycle:lifecycle-runtime:2.6.2@aar,androidx.savedstate:savedstate:1.2.1@aar,androidx.lifecycle:lifecycle-common:2.6.2@jar,org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1@jar,com.github.androidmads:QRGenerator:1.0.1@aar,io.michaelrocks:libphonenumber-android:8.13.13@aar,androidx.cardview:cardview:1.0.0@aar,com.github.bumptech.glide:gifdecoder:4.16.0@aar,com.github.bumptech.glide:disklrucache:4.16.0@jar,com.github.bumptech.glide:annotations:4.16.0@jar,androidx.exifinterface:exifinterface:1.3.6@aar,androidx.profileinstaller:profileinstaller:1.3.0@aar,androidx.startup:startup-runtime:1.1.1@aar,androidx.tracing:tracing:1.1.0@aar,com.squareup.okhttp3:okhttp-urlconnection:4.9.2@jar,com.squareup.okhttp3:okhttp:4.9.2@jar,com.squareup.okio:okio:2.9.0@jar,androidx.annotation:annotation-experimental:1.4.0@aar,org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21@jar,androidx.cursoradapter:cursoradapter:1.0.0@aar,androidx.resourceinspection:resourceinspection-annotation:1.0.1@jar,androidx.versionedparcelable:versionedparcelable:1.1.1@aar,androidx.collection:collection:1.1.0@jar,androidx.interpolator:interpolator:1.0.0@aar,androidx.documentfile:documentfile:1.0.0@aar,androidx.localbroadcastmanager:localbroadcastmanager:1.0.0@aar,androidx.print:print:1.0.0@aar,androidx.arch.core:core-runtime:2.2.0@aar,androidx.arch.core:core-common:2.2.0@jar,androidx.concurrent:concurrent-futures:1.1.0@jar,androidx.annotation:annotation-jvm:1.6.0@jar,org.jetbrains.kotlin:kotlin-stdlib:1.9.24@jar,org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21@jar,com.google.zxing:core:3.5.0@jar,com.google.errorprone:error_prone_annotations:2.15.0@jar,com.facebook.fbjni:fbjni:0.6.0@aar,com.facebook.infer.annotation:infer-annotation:0.18.0@jar,com.facebook.soloader:soloader:0.12.1@aar,com.facebook.yoga:proguard-annotations:1.19.0@jar,com.google.code.findbugs:jsr305:3.0.2@jar,javax.inject:javax.inject:1@jar,androidx.constraintlayout:constraintlayout-core:1.0.4@jar,org.jetbrains:annotations:23.0.0@jar,com.facebook.soloader:nativeloader:0.12.1@jar,org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72@jar,com.facebook.soloader:annotation:0.12.1@jar,com.parse.bolts:bolts-tasks:1.4.0@jar,com.google.guava:listenablefuture:1.0@jar">
265
265
  <dependency
266
- name="com.app:paysdk:1.6.0@aar"
266
+ name="com.app:paysdk:1.6.0-debug@aar"
267
267
  simpleName="com.app:paysdk"/>
268
268
  <dependency
269
269
  name="com.hbb20:ccp:2.7.3@aar"
@@ -1,9 +1,9 @@
1
1
  <libraries>
2
2
  <library
3
- name="com.app:paysdk:1.6.0@aar"
4
- jars="/Users/appdev/.gradle/caches/8.10.2/transforms/92a68420d390f3e7177fbd0a06dcfa81/transformed/paysdk-1.6.0/jars/classes.jar"
5
- resolved="com.app:paysdk:1.6.0"
6
- folder="/Users/appdev/.gradle/caches/8.10.2/transforms/92a68420d390f3e7177fbd0a06dcfa81/transformed/paysdk-1.6.0"
3
+ name="com.app:paysdk:1.6.0-debug@aar"
4
+ jars="/Users/appdev/.gradle/caches/8.10.2/transforms/7d449ca4b045e9bafd4d5838383a0262/transformed/paysdk-1.6.0-debug/jars/classes.jar"
5
+ resolved="com.app:paysdk:1.6.0-debug"
6
+ folder="/Users/appdev/.gradle/caches/8.10.2/transforms/7d449ca4b045e9bafd4d5838383a0262/transformed/paysdk-1.6.0-debug"
7
7
  manifest="AndroidManifest.xml"
8
8
  resFolder="res"
9
9
  assetsFolder="assets"
@@ -1,8 +1,8 @@
1
1
  <dependencies>
2
2
  <compile
3
- roots="com.app:paysdk:1.6.0@aar,com.hbb20:ccp:2.7.3@aar,com.github.bumptech.glide:glide:4.16.0@aar,com.google.android.material:material:1.8.0@aar,com.facebook.react:react-android:0.76.4:release@aar,androidx.appcompat:appcompat:1.6.1@aar,androidx.viewpager2:viewpager2:1.0.0@aar,androidx.fragment:fragment:1.3.6@aar,androidx.fragment:fragment:1.3.6@aar,androidx.activity:activity:1.6.0@aar,androidx.lifecycle:lifecycle-common:2.6.2@jar,androidx.lifecycle:lifecycle-livedata-core:2.6.2@aar,androidx.dynamicanimation:dynamicanimation:1.0.0@aar,androidx.legacy:legacy-support-core-utils:1.0.0@aar,androidx.loader:loader:1.0.0@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2@aar,androidx.core:core-ktx:1.13.1@aar,androidx.appcompat:appcompat-resources:1.6.1@aar,androidx.drawerlayout:drawerlayout:1.1.1@aar,androidx.coordinatorlayout:coordinatorlayout:1.1.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.transition:transition:1.2.0@aar,androidx.vectordrawable:vectordrawable-animated:1.1.0@aar,androidx.vectordrawable:vectordrawable:1.1.0@aar,androidx.swiperefreshlayout:swiperefreshlayout:1.1.0@aar,androidx.viewpager:viewpager:1.0.0@aar,androidx.customview:customview:1.1.0@aar,androidx.core:core:1.13.1@aar,androidx.core:core:1.13.1@aar,androidx.lifecycle:lifecycle-runtime:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2@aar,org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1@jar,org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1@jar,com.github.androidmads:QRGenerator:1.0.1@aar,androidx.constraintlayout:constraintlayout:2.1.4@aar,com.github.bumptech.glide:gifdecoder:4.16.0@aar,androidx.cursoradapter:cursoradapter:1.0.0@aar,androidx.savedstate:savedstate:1.2.1@aar,androidx.cardview:cardview:1.0.0@aar,androidx.versionedparcelable:versionedparcelable:1.1.1@aar,androidx.collection:collection:1.1.0@jar,androidx.interpolator:interpolator:1.0.0@aar,androidx.arch.core:core-runtime:2.2.0@aar,androidx.arch.core:core-common:2.2.0@jar,androidx.documentfile:documentfile:1.0.0@aar,androidx.localbroadcastmanager:localbroadcastmanager:1.0.0@aar,androidx.print:print:1.0.0@aar,androidx.annotation:annotation-jvm:1.6.0@jar,com.facebook.fresco:fresco:3.2.0@aar,com.facebook.fresco:imagepipeline-okhttp3:3.2.0@aar,com.facebook.fresco:middleware:3.2.0@aar,com.facebook.fresco:ui-common:3.2.0@aar,com.squareup.okhttp3:okhttp-urlconnection:4.9.2@jar,com.facebook.fresco:fbcore:3.2.0@aar,com.facebook.fresco:imagepipeline:3.2.0@aar,com.facebook.fresco:imagepipeline-base:3.2.0@aar,org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21@jar,androidx.annotation:annotation-experimental:1.4.0@aar,com.squareup.okhttp3:okhttp:4.9.2@jar,com.squareup.okio:okio:2.9.0@jar,org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21@jar,org.jetbrains.kotlin:kotlin-stdlib:1.9.24@jar,org.jetbrains:annotations:23.0.0@jar,androidx.tracing:tracing:1.1.0@aar,com.github.bumptech.glide:disklrucache:4.16.0@jar,com.github.bumptech.glide:annotations:4.16.0@jar,androidx.exifinterface:exifinterface:1.3.6@aar,androidx.autofill:autofill:1.1.0@aar,com.facebook.fbjni:fbjni:0.6.0@aar,com.facebook.soloader:soloader:0.12.1@aar,com.facebook.soloader:nativeloader:0.12.1@jar,com.facebook.soloader:annotation:0.12.1@jar,com.facebook.fresco:drawee:3.2.0@aar,com.facebook.infer.annotation:infer-annotation:0.18.0@jar,com.google.code.findbugs:jsr305:3.0.2@jar,org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72@jar,com.facebook.fresco:imagepipeline-native:3.2.0@aar,com.facebook.fresco:memory-type-ashmem:3.2.0@aar,com.facebook.fresco:memory-type-native:3.2.0@aar,com.facebook.fresco:memory-type-java:3.2.0@aar,com.facebook.fresco:nativeimagefilters:3.2.0@aar,com.facebook.fresco:nativeimagetranscoder:3.2.0@aar,com.facebook.yoga:proguard-annotations:1.19.0@jar,javax.inject:javax.inject:1@jar">
3
+ roots="com.app:paysdk:1.6.0-debug@aar,com.hbb20:ccp:2.7.3@aar,com.github.bumptech.glide:glide:4.16.0@aar,com.google.android.material:material:1.8.0@aar,com.facebook.react:react-android:0.76.4:release@aar,androidx.appcompat:appcompat:1.6.1@aar,androidx.viewpager2:viewpager2:1.0.0@aar,androidx.fragment:fragment:1.3.6@aar,androidx.fragment:fragment:1.3.6@aar,androidx.activity:activity:1.6.0@aar,androidx.lifecycle:lifecycle-common:2.6.2@jar,androidx.lifecycle:lifecycle-livedata-core:2.6.2@aar,androidx.dynamicanimation:dynamicanimation:1.0.0@aar,androidx.legacy:legacy-support-core-utils:1.0.0@aar,androidx.loader:loader:1.0.0@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2@aar,androidx.core:core-ktx:1.13.1@aar,androidx.appcompat:appcompat-resources:1.6.1@aar,androidx.drawerlayout:drawerlayout:1.1.1@aar,androidx.coordinatorlayout:coordinatorlayout:1.1.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.transition:transition:1.2.0@aar,androidx.vectordrawable:vectordrawable-animated:1.1.0@aar,androidx.vectordrawable:vectordrawable:1.1.0@aar,androidx.swiperefreshlayout:swiperefreshlayout:1.1.0@aar,androidx.viewpager:viewpager:1.0.0@aar,androidx.customview:customview:1.1.0@aar,androidx.core:core:1.13.1@aar,androidx.core:core:1.13.1@aar,androidx.lifecycle:lifecycle-runtime:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2@aar,org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1@jar,org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1@jar,com.github.androidmads:QRGenerator:1.0.1@aar,androidx.constraintlayout:constraintlayout:2.1.4@aar,com.github.bumptech.glide:gifdecoder:4.16.0@aar,androidx.cursoradapter:cursoradapter:1.0.0@aar,androidx.savedstate:savedstate:1.2.1@aar,androidx.cardview:cardview:1.0.0@aar,androidx.versionedparcelable:versionedparcelable:1.1.1@aar,androidx.collection:collection:1.1.0@jar,androidx.interpolator:interpolator:1.0.0@aar,androidx.arch.core:core-runtime:2.2.0@aar,androidx.arch.core:core-common:2.2.0@jar,androidx.documentfile:documentfile:1.0.0@aar,androidx.localbroadcastmanager:localbroadcastmanager:1.0.0@aar,androidx.print:print:1.0.0@aar,androidx.annotation:annotation-jvm:1.6.0@jar,com.facebook.fresco:fresco:3.2.0@aar,com.facebook.fresco:imagepipeline-okhttp3:3.2.0@aar,com.facebook.fresco:middleware:3.2.0@aar,com.facebook.fresco:ui-common:3.2.0@aar,com.squareup.okhttp3:okhttp-urlconnection:4.9.2@jar,com.facebook.fresco:fbcore:3.2.0@aar,com.facebook.fresco:imagepipeline:3.2.0@aar,com.facebook.fresco:imagepipeline-base:3.2.0@aar,org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21@jar,androidx.annotation:annotation-experimental:1.4.0@aar,com.squareup.okhttp3:okhttp:4.9.2@jar,com.squareup.okio:okio:2.9.0@jar,org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21@jar,org.jetbrains.kotlin:kotlin-stdlib:1.9.24@jar,org.jetbrains:annotations:23.0.0@jar,androidx.tracing:tracing:1.1.0@aar,com.github.bumptech.glide:disklrucache:4.16.0@jar,com.github.bumptech.glide:annotations:4.16.0@jar,androidx.exifinterface:exifinterface:1.3.6@aar,androidx.autofill:autofill:1.1.0@aar,com.facebook.fbjni:fbjni:0.6.0@aar,com.facebook.soloader:soloader:0.12.1@aar,com.facebook.soloader:nativeloader:0.12.1@jar,com.facebook.soloader:annotation:0.12.1@jar,com.facebook.fresco:drawee:3.2.0@aar,com.facebook.infer.annotation:infer-annotation:0.18.0@jar,com.google.code.findbugs:jsr305:3.0.2@jar,org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72@jar,com.facebook.fresco:imagepipeline-native:3.2.0@aar,com.facebook.fresco:memory-type-ashmem:3.2.0@aar,com.facebook.fresco:memory-type-native:3.2.0@aar,com.facebook.fresco:memory-type-java:3.2.0@aar,com.facebook.fresco:nativeimagefilters:3.2.0@aar,com.facebook.fresco:nativeimagetranscoder:3.2.0@aar,com.facebook.yoga:proguard-annotations:1.19.0@jar,javax.inject:javax.inject:1@jar">
4
4
  <dependency
5
- name="com.app:paysdk:1.6.0@aar"
5
+ name="com.app:paysdk:1.6.0-debug@aar"
6
6
  simpleName="com.app:paysdk"/>
7
7
  <dependency
8
8
  name="com.hbb20:ccp:2.7.3@aar"
@@ -261,9 +261,9 @@
261
261
  simpleName="javax.inject:javax.inject"/>
262
262
  </compile>
263
263
  <package
264
- roots="com.app:paysdk:1.6.0@aar,com.hbb20:ccp:2.7.3@aar,com.github.bumptech.glide:glide:4.16.0@aar,org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1@jar,com.google.android.material:material:1.8.0@aar,com.facebook.react:react-android:0.76.4:release@aar,androidx.constraintlayout:constraintlayout:2.1.4@aar,androidx.appcompat:appcompat-resources:1.6.1@aar,androidx.appcompat:appcompat:1.6.1@aar,androidx.viewpager2:viewpager2:1.0.0@aar,androidx.fragment:fragment:1.3.6@aar,androidx.fragment:fragment:1.3.6@aar,androidx.activity:activity:1.6.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.customview:customview-poolingcontainer:1.0.0@aar,androidx.dynamicanimation:dynamicanimation:1.0.0@aar,androidx.legacy:legacy-support-core-utils:1.0.0@aar,androidx.loader:loader:1.0.0@aar,androidx.emoji2:emoji2-views-helper:1.2.0@aar,androidx.emoji2:emoji2:1.2.0@aar,androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-process:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-core:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2@aar,androidx.core:core-ktx:1.13.1@aar,androidx.drawerlayout:drawerlayout:1.1.1@aar,androidx.coordinatorlayout:coordinatorlayout:1.1.0@aar,androidx.transition:transition:1.2.0@aar,androidx.vectordrawable:vectordrawable-animated:1.1.0@aar,androidx.vectordrawable:vectordrawable:1.1.0@aar,androidx.autofill:autofill:1.1.0@aar,androidx.swiperefreshlayout:swiperefreshlayout:1.1.0@aar,androidx.viewpager:viewpager:1.0.0@aar,androidx.customview:customview:1.1.0@aar,com.facebook.fresco:fresco:3.2.0@aar,com.facebook.fresco:imagepipeline-okhttp3:3.2.0@aar,com.facebook.fresco:drawee:3.2.0@aar,com.facebook.fresco:nativeimagefilters:3.2.0@aar,com.facebook.fresco:memory-type-native:3.2.0@aar,com.facebook.fresco:memory-type-java:3.2.0@aar,com.facebook.fresco:imagepipeline-native:3.2.0@aar,com.facebook.fresco:memory-type-ashmem:3.2.0@aar,com.facebook.fresco:imagepipeline:3.2.0@aar,com.facebook.fresco:nativeimagetranscoder:3.2.0@aar,com.facebook.fresco:imagepipeline-base:3.2.0@aar,com.facebook.fresco:middleware:3.2.0@aar,com.facebook.fresco:ui-common:3.2.0@aar,com.facebook.fresco:soloader:3.2.0@aar,com.facebook.fresco:fbcore:3.2.0@aar,androidx.core:core:1.13.1@aar,androidx.core:core:1.13.1@aar,androidx.lifecycle:lifecycle-runtime:2.6.2@aar,androidx.savedstate:savedstate:1.2.1@aar,androidx.lifecycle:lifecycle-common:2.6.2@jar,org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1@jar,com.github.androidmads:QRGenerator:1.0.1@aar,io.michaelrocks:libphonenumber-android:8.13.13@aar,androidx.cardview:cardview:1.0.0@aar,com.github.bumptech.glide:gifdecoder:4.16.0@aar,com.github.bumptech.glide:disklrucache:4.16.0@jar,com.github.bumptech.glide:annotations:4.16.0@jar,androidx.exifinterface:exifinterface:1.3.6@aar,androidx.profileinstaller:profileinstaller:1.3.0@aar,androidx.startup:startup-runtime:1.1.1@aar,androidx.tracing:tracing:1.1.0@aar,com.squareup.okhttp3:okhttp-urlconnection:4.9.2@jar,com.squareup.okhttp3:okhttp:4.9.2@jar,com.squareup.okio:okio:2.9.0@jar,androidx.annotation:annotation-experimental:1.4.0@aar,org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21@jar,androidx.cursoradapter:cursoradapter:1.0.0@aar,androidx.resourceinspection:resourceinspection-annotation:1.0.1@jar,androidx.versionedparcelable:versionedparcelable:1.1.1@aar,androidx.collection:collection:1.1.0@jar,androidx.interpolator:interpolator:1.0.0@aar,androidx.documentfile:documentfile:1.0.0@aar,androidx.localbroadcastmanager:localbroadcastmanager:1.0.0@aar,androidx.print:print:1.0.0@aar,androidx.arch.core:core-runtime:2.2.0@aar,androidx.arch.core:core-common:2.2.0@jar,androidx.concurrent:concurrent-futures:1.1.0@jar,androidx.annotation:annotation-jvm:1.6.0@jar,org.jetbrains.kotlin:kotlin-stdlib:1.9.24@jar,org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21@jar,com.google.zxing:core:3.5.0@jar,com.google.errorprone:error_prone_annotations:2.15.0@jar,com.facebook.fbjni:fbjni:0.6.0@aar,com.facebook.infer.annotation:infer-annotation:0.18.0@jar,com.facebook.soloader:soloader:0.12.1@aar,com.facebook.yoga:proguard-annotations:1.19.0@jar,com.google.code.findbugs:jsr305:3.0.2@jar,javax.inject:javax.inject:1@jar,androidx.constraintlayout:constraintlayout-core:1.0.4@jar,org.jetbrains:annotations:23.0.0@jar,com.facebook.soloader:nativeloader:0.12.1@jar,org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72@jar,com.facebook.soloader:annotation:0.12.1@jar,com.parse.bolts:bolts-tasks:1.4.0@jar,com.google.guava:listenablefuture:1.0@jar">
264
+ roots="com.app:paysdk:1.6.0-debug@aar,com.hbb20:ccp:2.7.3@aar,com.github.bumptech.glide:glide:4.16.0@aar,org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1@jar,com.google.android.material:material:1.8.0@aar,com.facebook.react:react-android:0.76.4:release@aar,androidx.constraintlayout:constraintlayout:2.1.4@aar,androidx.appcompat:appcompat-resources:1.6.1@aar,androidx.appcompat:appcompat:1.6.1@aar,androidx.viewpager2:viewpager2:1.0.0@aar,androidx.fragment:fragment:1.3.6@aar,androidx.fragment:fragment:1.3.6@aar,androidx.activity:activity:1.6.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.recyclerview:recyclerview:1.3.0@aar,androidx.customview:customview-poolingcontainer:1.0.0@aar,androidx.dynamicanimation:dynamicanimation:1.0.0@aar,androidx.legacy:legacy-support-core-utils:1.0.0@aar,androidx.loader:loader:1.0.0@aar,androidx.emoji2:emoji2-views-helper:1.2.0@aar,androidx.emoji2:emoji2:1.2.0@aar,androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel:2.6.2@aar,androidx.lifecycle:lifecycle-process:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-ktx:2.6.2@aar,androidx.lifecycle:lifecycle-livedata-core:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-livedata:2.6.2@aar,androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2@aar,androidx.core:core-ktx:1.13.1@aar,androidx.drawerlayout:drawerlayout:1.1.1@aar,androidx.coordinatorlayout:coordinatorlayout:1.1.0@aar,androidx.transition:transition:1.2.0@aar,androidx.vectordrawable:vectordrawable-animated:1.1.0@aar,androidx.vectordrawable:vectordrawable:1.1.0@aar,androidx.autofill:autofill:1.1.0@aar,androidx.swiperefreshlayout:swiperefreshlayout:1.1.0@aar,androidx.viewpager:viewpager:1.0.0@aar,androidx.customview:customview:1.1.0@aar,com.facebook.fresco:fresco:3.2.0@aar,com.facebook.fresco:imagepipeline-okhttp3:3.2.0@aar,com.facebook.fresco:drawee:3.2.0@aar,com.facebook.fresco:nativeimagefilters:3.2.0@aar,com.facebook.fresco:memory-type-native:3.2.0@aar,com.facebook.fresco:memory-type-java:3.2.0@aar,com.facebook.fresco:imagepipeline-native:3.2.0@aar,com.facebook.fresco:memory-type-ashmem:3.2.0@aar,com.facebook.fresco:imagepipeline:3.2.0@aar,com.facebook.fresco:nativeimagetranscoder:3.2.0@aar,com.facebook.fresco:imagepipeline-base:3.2.0@aar,com.facebook.fresco:middleware:3.2.0@aar,com.facebook.fresco:ui-common:3.2.0@aar,com.facebook.fresco:soloader:3.2.0@aar,com.facebook.fresco:fbcore:3.2.0@aar,androidx.core:core:1.13.1@aar,androidx.core:core:1.13.1@aar,androidx.lifecycle:lifecycle-runtime:2.6.2@aar,androidx.savedstate:savedstate:1.2.1@aar,androidx.lifecycle:lifecycle-common:2.6.2@jar,org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1@jar,com.github.androidmads:QRGenerator:1.0.1@aar,io.michaelrocks:libphonenumber-android:8.13.13@aar,androidx.cardview:cardview:1.0.0@aar,com.github.bumptech.glide:gifdecoder:4.16.0@aar,com.github.bumptech.glide:disklrucache:4.16.0@jar,com.github.bumptech.glide:annotations:4.16.0@jar,androidx.exifinterface:exifinterface:1.3.6@aar,androidx.profileinstaller:profileinstaller:1.3.0@aar,androidx.startup:startup-runtime:1.1.1@aar,androidx.tracing:tracing:1.1.0@aar,com.squareup.okhttp3:okhttp-urlconnection:4.9.2@jar,com.squareup.okhttp3:okhttp:4.9.2@jar,com.squareup.okio:okio:2.9.0@jar,androidx.annotation:annotation-experimental:1.4.0@aar,org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21@jar,androidx.cursoradapter:cursoradapter:1.0.0@aar,androidx.resourceinspection:resourceinspection-annotation:1.0.1@jar,androidx.versionedparcelable:versionedparcelable:1.1.1@aar,androidx.collection:collection:1.1.0@jar,androidx.interpolator:interpolator:1.0.0@aar,androidx.documentfile:documentfile:1.0.0@aar,androidx.localbroadcastmanager:localbroadcastmanager:1.0.0@aar,androidx.print:print:1.0.0@aar,androidx.arch.core:core-runtime:2.2.0@aar,androidx.arch.core:core-common:2.2.0@jar,androidx.concurrent:concurrent-futures:1.1.0@jar,androidx.annotation:annotation-jvm:1.6.0@jar,org.jetbrains.kotlin:kotlin-stdlib:1.9.24@jar,org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21@jar,com.google.zxing:core:3.5.0@jar,com.google.errorprone:error_prone_annotations:2.15.0@jar,com.facebook.fbjni:fbjni:0.6.0@aar,com.facebook.infer.annotation:infer-annotation:0.18.0@jar,com.facebook.soloader:soloader:0.12.1@aar,com.facebook.yoga:proguard-annotations:1.19.0@jar,com.google.code.findbugs:jsr305:3.0.2@jar,javax.inject:javax.inject:1@jar,androidx.constraintlayout:constraintlayout-core:1.0.4@jar,org.jetbrains:annotations:23.0.0@jar,com.facebook.soloader:nativeloader:0.12.1@jar,org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72@jar,com.facebook.soloader:annotation:0.12.1@jar,com.parse.bolts:bolts-tasks:1.4.0@jar,com.google.guava:listenablefuture:1.0@jar">
265
265
  <dependency
266
- name="com.app:paysdk:1.6.0@aar"
266
+ name="com.app:paysdk:1.6.0-debug@aar"
267
267
  simpleName="com.app:paysdk"/>
268
268
  <dependency
269
269
  name="com.hbb20:ccp:2.7.3@aar"
@@ -1,9 +1,9 @@
1
1
  <libraries>
2
2
  <library
3
- name="com.app:paysdk:1.6.0@aar"
4
- jars="/Users/appdev/.gradle/caches/8.10.2/transforms/92a68420d390f3e7177fbd0a06dcfa81/transformed/paysdk-1.6.0/jars/classes.jar"
5
- resolved="com.app:paysdk:1.6.0"
6
- folder="/Users/appdev/.gradle/caches/8.10.2/transforms/92a68420d390f3e7177fbd0a06dcfa81/transformed/paysdk-1.6.0"
3
+ name="com.app:paysdk:1.6.0-debug@aar"
4
+ jars="/Users/appdev/.gradle/caches/8.10.2/transforms/7d449ca4b045e9bafd4d5838383a0262/transformed/paysdk-1.6.0-debug/jars/classes.jar"
5
+ resolved="com.app:paysdk:1.6.0-debug"
6
+ folder="/Users/appdev/.gradle/caches/8.10.2/transforms/7d449ca4b045e9bafd4d5838383a0262/transformed/paysdk-1.6.0-debug"
7
7
  manifest="AndroidManifest.xml"
8
8
  resFolder="res"
9
9
  assetsFolder="assets"
@@ -39,7 +39,7 @@ repositories {
39
39
  }
40
40
 
41
41
  dependencies {
42
- implementation 'com.app:paysdk:1.6.0'
42
+ implementation 'com.app:paysdk:1.6.0-debug'
43
43
  implementation 'com.hbb20:ccp:2.7.3'
44
44
  implementation 'com.github.bumptech.glide:glide:4.16.0'
45
45
  implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1"
@@ -98,8 +98,8 @@ public class RNEasymerchantsdkModule extends ReactContextBaseJavaModule {
98
98
  jsonConfig.put("showSubmitButton",
99
99
  jsonConfigMap.hasKey("showSubmitButton") ? jsonConfigMap.getBoolean("showSubmitButton") : true
100
100
  );
101
- jsonConfig.put("emailEditable",
102
- jsonConfigMap.hasKey("emailEditable") ? jsonConfigMap.getBoolean("emailEditable") : false
101
+ jsonConfig.put("isEmail",
102
+ jsonConfigMap.hasKey("isEmail") ? jsonConfigMap.getBoolean("isEmail") : false
103
103
  );
104
104
  jsonConfig.put("email",
105
105
  jsonConfigMap.hasKey("email") ? jsonConfigMap.getString("email") : ""
@@ -1,6 +1,6 @@
1
1
  Pod::Spec.new do |s|
2
2
  s.name = 'easymerchantsdk'
3
- s.version = '2.1.4'
3
+ s.version = '2.1.6'
4
4
  s.summary = 'A React Native SDK for Easy Merchant.'
5
5
  s.description = <<-DESC
6
6
  A React Native SDK to enable Easy Merchant functionality in mobile applications.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jimrising/easymerchantsdk-react-native",
3
- "version": "2.1.4",
3
+ "version": "2.1.6",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {