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.
- package/android/build.gradle +20 -7
- package/android/src/main/java/com/mytatvarnsdk/CgmTrackyLibModule.kt +594 -232
- package/android/src/main/java/com/mytatvarnsdk/activity/PermissionActivity.kt +276 -87
- package/android/src/main/java/com/mytatvarnsdk/activity/PlaceTransmitterActivity.kt +4 -0
- package/android/src/main/res/layout/activity_permission.xml +0 -1
- package/android/src/main/res/layout/layout_green_solid_button.xml +43 -0
- package/android/src/main/res/layout/permission_disclosure_bottomsheet.xml +70 -0
- package/android/src/main/res/values/strings.xml +12 -0
- package/ios/MyReactNativeBridge.m +13 -1
- package/ios/Support/Converter/DataConverter.swift +62 -29
- package/ios/ViewControllers/AttachTransmitterViewController.swift +9 -0
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -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:
|
|
168
|
-
|
|
169
|
-
|
|
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
|
-
|
|
189
|
-
|
|
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
|
+
}
|