react-native-mytatva-rn-sdk 1.2.92 → 1.2.94

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.
@@ -164,9 +164,10 @@ dependencies {
164
164
  // Support library depends on this lightweight import
165
165
  implementation 'androidx.lifecycle:lifecycle-runtime:2.1.0'
166
166
 
167
- // Sentry: uses host app's init (e.g. @sentry/react-native); only capture from native here
168
- implementation platform('io.sentry:sentry-bom:7.14.0')
169
- implementation 'io.sentry:sentry-android'
167
+ // Sentry: compile-only host app (@sentry/react-native) provides runtime SDK + init.
168
+ // Version aligned with @sentry/react-native 7.11.0 (sentry-android 8.31.0).
169
+ compileOnly platform('io.sentry:sentry-bom:8.31.0')
170
+ compileOnly 'io.sentry:sentry-android'
170
171
 
171
172
  // network
172
173
  implementation 'com.squareup.retrofit2:retrofit:2.9.0'
@@ -183,10 +184,10 @@ dependencies {
183
184
  implementation "io.ktor:ktor-client-serialization:$ktor_version"
184
185
  implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.1")
185
186
 
186
- implementation(name: 'library_zxing-release', ext: 'aar')
187
- implementation(name: 'algorithm-release', ext: 'aar')
188
- // implementation files('libs/library_zxing-release.aar')
189
- // implementation files('libs/algorithm-release.aar')
187
+ // implementation(name: 'library_zxing-release', ext: 'aar')
188
+ // implementation(name: 'algorithm-release', ext: 'aar')
189
+ implementation files('libs/library_zxing-release.aar')
190
+ implementation files('libs/algorithm-release.aar')
190
191
 
191
192
  implementation 'com.pierfrancescosoffritti.androidyoutubeplayer:core:12.1.2'
192
193
 
@@ -199,3 +200,15 @@ if (isNewArchitectureEnabled()) {
199
200
  codegenJavaPackageName = "com.mytatvarnsdk"
200
201
  }
201
202
  }
203
+
204
+ // Disable AAR lint tasks that fail with local AAR dependencies in newer AGP versions
205
+ // These tasks are not critical for the build
206
+ afterEvaluate {
207
+ // Disable bundleReleaseLocalLintAar and bundleDebugLocalLintAar tasks
208
+ tasks.matching {
209
+ it.name.contains("bundleReleaseLocalLintAar") ||
210
+ it.name.contains("bundleDebugLocalLintAar")
211
+ }.configureEach { task ->
212
+ task.enabled = false
213
+ }
214
+ }