new version 3.21.00

This commit is contained in:
Nick 2025-07-25 10:02:29 +02:00
parent 2f7a83e9da
commit 4b9fa9ce47
33 changed files with 178331 additions and 168681 deletions

163
README.md
View File

@ -9,9 +9,10 @@ Android SDK
- [Add fragment](#fragment)
- [Keyboard support](#keyboard)
- [Troubleshooting](#troubleshooting)
- [Authors](#authors)
- [Author](#authors)
<a name="import"></a>
## Import
You must use git to download the sdk from [repository](https://pubgit.newsmemory.com/tecnavia/newsmemory-android-sdk)
@ -19,17 +20,44 @@ You must use git to download the sdk from [repository](https://pubgit.newsmemory
1. Inside root folder run the following command:
```sh
git clone --depth 1 --branch 3.18.19 https://pubgit.newsmemory.com/tecnavia/newsmemory-android-sdk.git
git clone --depth 1 --branch 3.21.00 https://pubgit.newsmemory.com/tecnavia/newsmemory-android-sdk.git
```
2. if you already has the module you could update to another release by the following commands
2. If you already have the module you could update to another release launching the following commands:
```sh
cd newsmemory-android-sdk
git checkout tags/3.18.19
git checkout tags/3.21.00
```
### Package contents
The unzipped folder is named `newsmemory-android-sdk` and has the following contents:
```
.
├── build.gradle
├── gradle.properties
├── libs # all the *.aar file of the SDK dependencies imported by SDK build.gradle
├── *.aar
├── src
├── main
├── AndroidManifest.xml
├── assets
├── fonts # set of base fonts supported by the ePaper (*.otf, *.ttf files)
├── index.android.bundle # the javascript bundle file, core of Tecnavia ePaper solution
├── packages.txt # this file contains the list of dependencies that will be loaded by the app at runtime using reflection
├── res # folder containing images and resources referenced by the javascript bundle
├── LICENSE
└── README.md
```
---
<a name="installation"></a>
## Installation
<a name="project"></a>
### Project Gradle
1. check main gradle repositories and dependencies
```java
@ -41,12 +69,11 @@ buildscript {
}
dependencies {
classpath "com.android.tools.build:gradle:7.2.1"
classpath "com.android.tools.build:gradle:8.9.2"
classpath "com.google.gms:google-services:4.3.4"
//add crashlytics only if the aar file is included
classpath "com.google.firebase:firebase-crashlytics-gradle:2.3.0"
classpath "com.google.firebase:firebase-crashlytics-gradle:2.9.9"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0"
}
}
@ -79,52 +106,59 @@ maven {
3. you could customize all dependencies version by updating the following variables. !Pay attention: as the sdk may not start or work properly add these variables to ext object in main gradle file, see below example.
| variable | default | Description |
|:---------------------------------- |:-------:|:-------------------------------------------------------------- |
| compileSdk | 33 | |
| targetSdk | 33 | |
| Variable name | Default | Description |
|:---------------------------------- |:-------:|:-------------------------------------------------------------: |
| compileSdk | 35 | |
| targetSdk | 35 | |
| minSdk | 24 | |
| frescoVersion | 2.5.0 | used by react native to display some images |
| soLoaderVersion | 0.10.4 | used to load needed system native libraries |
| frescoVersion | 3.6.0 | used by react native to display some images |
| soLoaderVersion | 0.12.1 | used to load needed system native libraries |
| okHttpVersion | 4.9.2 | |
| glideVersion | 4.12.0 | |
| kotlinGradleVersion | 1.9.0 | |
| kotlinVersion | 1.9.0 | |
| kotlinVersion | 2.1.20 | |
| webkitVersion | 1.4.0 | |
| androidxVersion | 1.8.0 | |
| androidxWorkRuntimeVersion | 1.5.0 | |
| androidxWorkRuntimeVersion | 2.7.0 | |
| androidxAnnotationVersion | 1.4.0 | |
| androidxViewpager2Version | 1.0.0 | |
| androidxViewpager2Version | 1.1.0 | |
| androidxFragmentVersion | 1.4.1 | |
| androidxBrowserVersion | 1.4.0 | |
| androidxTransitionVersion | 1.1.0 | |
| androidxCoordinatorlayoutVersion | 1.1.0 | |
| androidxSwiperefreshlayoutVersion | 1.0.0 | |
| androidxAppcompatVersion | 1.0.2 | |
| androidxSwiperefreshlayoutVersion | 1.1.0 | |
| androidxAppcompatVersion | 1.7.0 | |
| androidxLegacySupportVersion | 1.0.0 | |
| playServiceiidVersion | 17.0.0 | |
| playServiceBaseVersion | 18.0.1 | |
| **The following variables are used if you include on of the optional library listed in description** |
| playServiceAnalyticsVersion | 18.0.1 | react-native-google-analytics-bridge |
| playServiceAdsVersion | 20.6.0 | react-native-prebid, react-native-dfp, react-native-admob |
| **The following variables are used if you include one of SDK's optional libraries** |
| playServiceAdsVersion | 24.4.0 | react-native-prebid, react-native-dfp, react-native-admob |
| playServiceMapsVersion | 18.0.2 | react-native-maps |
| playBillingVersion | 5.0.0 | react-native-iap for google |
| amazonSdkVersion | 3.0.3 | react-native-iap for amazon |
| playBillingVersion | 7.0.0 | react-native-iap for google |
| amazonSdkVersion | 3.0.7 | react-native-iap for amazon |
```java
ext {
compileSdk = 34
compileSdk = 35
androidxVersion = "1.8.0"
...
}
```
<a name="settings"></a>
### Settings Gradle
### Settings Gradle
```java
include ':newsmemory-android-sdk'
...
include ':newsmemory-android-sdk'7
...
```
<a name="app"></a>
### App Gradle
add the following lines if missing
```java
plugin: "com.android.application"
@ -143,22 +177,32 @@ android{
...
packagingOptions {
pickFirst "lib/x86/libc++_shared.so"
pickFirst "lib/x86_64/libc++_shared.so"
pickFirst "lib/arm64-v8a/libc++_shared.so"
pickFirst "lib/armeabi-v7a/libc++_shared.so"
}
}
dependencies{
implementation project(":newsmemory-android-sdk")
implementation "com.facebook.soloader:soloader:0.12.1"
...
}
```
---
<a name="fragment"></a>
## Add fragment to activity
Tecnavia provides "PAPER_SETUP", "SERVER" and also an "API_KEY" values which allow you to load the epaper for a specific publication.
```java
...
import com.facebook.soloader.SoLoader;
import com.facebook.react.soloader.OpenSourceMergedSoMapping;
import com.tecnavia.tabridge.TaConstants;
import com.tecnavia.tabridge.TaFragment;
import com.tecnavia.tabridge.listeners.TaFragmentDelegate;
...
public class YourActivity extends AppCompatActivity {
private TaFragment taFragment;
...
@ -168,6 +212,12 @@ public class YourActivity extends AppCompatActivity {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
try {
SoLoader.init(this, OpenSourceMergedSoMapping.INSTANCE);
} catch (IOException e) {
throw new RuntimeException(e);
}
if(taFragment == null) {
taFragment = new TaFragment()
.setDelegate(new TaFragmentDelegate() {
@ -218,10 +268,10 @@ public class YourActivity extends AppCompatActivity {
public Bundle getBuildProps() {
Bundle bundle = new Bundle();
bundle.putString(TaConstants.TA_PSETUP, "replace_with_psetup");
bundle.putString(TaConstants.TA_MACHINE, "replace_with_server");
bundle.putString(TaConstants.TA_PSETUP, "<replace with PAPER_SETUP>");
bundle.putString(TaConstants.TA_MACHINE, "<replace with SERVER>");
bundle.putString(TaConstants.TA_LOCALE, "en");
bundle.putString(TaConstants.TA_TOKEN, "replace with a valid token");
bundle.putString(TaConstants.TA_TOKEN, "<replace with a valid token>");
//the value inside R.string will be avilable after first build
bundle.putString(TaConstants.TA_APP_VERSION_NAME, getString(com.tecnavia.sdk.R.string.APP_VERSION_NAME));
bundle.putString(TaConstants.TA_APP_VERSION_CODE, getString(com.tecnavia.sdk.R.string.APP_VERSION_CODE));
@ -229,7 +279,7 @@ public class YourActivity extends AppCompatActivity {
bundle.putString(TaConstants.TA_APP_NAME, getString(com.tecnavia.sdk.R.string.APP_NAME));
//must be true otherwise the module doesn't work in SDK mode
bundle.putBoolean(TaConstants.TA_IS_ADDON, true);
bundle.putString(TaConstants.TA_API_KEY, "Required to be authorized");
bundle.putString(TaConstants.TA_API_KEY, "<replace with API_KEY>");
// Specify the device type for the TA_LOCKED_ORIENTATION. If not provided, all devices will use TA_LOCKED_ORIENTATION.
bundle.putString(TaConstants.TA_LOCKED_ORIENTATION_DEVICE, "tablet|phone");
@ -243,17 +293,26 @@ public class YourActivity extends AppCompatActivity {
//querystring-like list of parameters to pass to GA4 analytics
bundle.putString(TaConstants.TA_EXTRA_GA4_PARAMS, "param1=value1&param2=value2&param3=value3");
//querystring-like list of parameters to pass to the SDK to force the loading of a specific issue/edition, see [startup parameters](#startup) section |
bundle.putString(TaConstants.TA_STARTUP_PARAMS, "issue=value1&edition=value2");
return bundle;
}
}
```
the following constant is required by SDK to be authorized
the following constants are required by SDK to be load a specific publication
```java
bundle.putString(TaConstants.TA_API_KEY, "");
bundle.putString(TaConstants.TA_PSETUP, "<replace with PAPER_SETUP>");
bundle.putString(TaConstants.TA_MACHINE, "<replace with SERVER>");
```
the following constants are required by SDK otherwise there will be some inconsinstecies and bugs
the following constant is required by SDK to be authorized
```java
bundle.putString(TaConstants.TA_API_KEY, "<replace with API_KEY>");
```
the following constants are required by SDK otherwise there will be some inconsistencies and bugs
```java
bundle.putString(TaConstants.TA_APP_VERSION_NAME, getString(com.tecnavia.sdk.R.string.APP_VERSION_NAME));
bundle.putString(TaConstants.TA_APP_VERSION_CODE, getString(com.tecnavia.sdk.R.string.APP_VERSION_CODE));
@ -285,6 +344,25 @@ public class YourActivity extends TaActivity {
...
}
```
---
<a name="startup"></a>
## Startup parameters
Here a list of the supported startup parameters:
| Name | Format | Description |
| -------------------|------------------ | ------------------------------------------------------------------------------ |
| issue | YYYYMMDD | The issue to load at startup |
| selDate | YYYYMMDD | The issue to load at startup |
| date | YYYYMMDD | The issue to load at startup |
| edition | any | The edition to load at startup |
| editionStart | any | The edition to load at startup |
| goTo | any (e.g. `A1`) | The page of the issue to load at startup |
| artid | number (e.g. `8`) | The Tecnavia id of ther article to load at startup (requires `goTo` to be set) |
---
<a name="keyboard"></a>
@ -320,7 +398,6 @@ public class MainActivity extends AppCompatActivity implements DefaultHardwareBa
```
Here a list of the supported keys:
### Key groups
@ -526,7 +603,5 @@ We suggest to add to you activity in the `onCreate` method.
<a name="authors"></a>
## Authors
Nicolò Aquilini, iOS Software developer, Tecnavia
Andrea Mauri, Android Software developer, Tecnavia
## Author
Nicolò Aquilini, App Software developer, Tecnavia

View File

@ -11,10 +11,10 @@ buildscript {
}*/
}
dependencies {
classpath "com.android.tools.build:gradle:7.2.1"
classpath "com.android.tools.build:gradle:8.9.2"
classpath "com.google.gms:google-services:4.3.4"
//use the version suggested by react-native-firebase
//classpath "com.google.firebase:firebase-crashlytics-gradle:2.3.0"
//classpath "com.google.firebase:firebase-crashlytics-gradle:2.9.9"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinGradleVersion"
}
} else {
@ -55,17 +55,10 @@ publishing {
tareactnativecolormatriximagefilters(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-color-matrix-image-filters'
version '6.0.9'
version '7.0.2'
artifact("$libsDirName/react-native-color-matrix-image-filters-release.aar")
}
tareactnativecommunitydatetimepicker(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-community_datetimepicker'
version '6.7.5'
artifact("$libsDirName/react-native-community_datetimepicker-release.aar")
}
tareactnativecommunitynetinfo(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-community_netinfo'
@ -73,13 +66,6 @@ publishing {
artifact("$libsDirName/react-native-community_netinfo-release.aar")
}
tareactnativecommunityslider(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-community_slider'
version '2.0.9'
artifact("$libsDirName/react-native-community_slider-release.aar")
}
tareactnativeconfig(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-config'
@ -125,7 +111,7 @@ publishing {
tareactnativegesturehandler(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-gesture-handler'
version '1.10.3'
version '2.27.1'
artifact("$libsDirName/react-native-gesture-handler-release.aar")
}
@ -139,7 +125,7 @@ publishing {
tareactnativeimagemarker(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-image-marker'
version '0.9.2'
version '1.2.6'
artifact("$libsDirName/react-native-image-marker-release.aar")
}
@ -160,7 +146,7 @@ publishing {
tareactnativepagerview(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-pager-view'
version '6.4.1'
version '6.8.1'
artifact("$libsDirName/react-native-pager-view-release.aar")
}
@ -174,21 +160,21 @@ publishing {
tareactnativereanimated(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-reanimated'
version '2.17.0'
version '3.18.0'
artifact("$libsDirName/react-native-reanimated-release.aar")
}
tareactnativesafeareacontext(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-safe-area-context'
version '3.3.2'
version '5.5.2'
artifact("$libsDirName/react-native-safe-area-context-release.aar")
}
tareactnativescreens(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-screens'
version '3.32.0'
version '3.37.0'
artifact("$libsDirName/react-native-screens-release.aar")
}
@ -199,34 +185,13 @@ publishing {
artifact("$libsDirName/react-native-share-release.aar")
}
tareactnativesplashscreen(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-splash-screen'
version '3.2.0'
artifact("$libsDirName/react-native-splash-screen-release.aar")
}
tareactnativesqlitestorage(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-sqlite-storage'
version '3.3.10'
artifact("$libsDirName/react-native-sqlite-storage-release.aar")
}
tareactnativesvg(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-svg'
version '15.7.1'
version '15.12.0'
artifact("$libsDirName/react-native-svg-release.aar")
}
tareactnativetecnaviautils(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-tecnavia-utils'
version '1.3.2'
artifact("$libsDirName/react-native-tecnavia-utils-release.aar")
}
tareactnativetextsize(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-text-size'
@ -272,7 +237,7 @@ publishing {
tareactnativewebview(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native-webview'
version '12.4.0'
version '13.14.2'
artifact("$libsDirName/react-native-webview-release.aar")
}
@ -286,52 +251,59 @@ publishing {
tatecnaviareactnativebridge(MavenPublication) {
groupId 'tecnavia'
artifactId 'tecnavia_react-native-bridge'
version '1.3.14'
version '1.9.0'
artifact("$libsDirName/tecnavia_react-native-bridge-release.aar")
}
tatecnaviareactnativedefaultpreference(MavenPublication) {
groupId 'tecnavia'
artifactId 'tecnavia_react-native-default-preference'
version '1.5.0'
version '1.6.0'
artifact("$libsDirName/tecnavia_react-native-default-preference-release.aar")
}
tatecnaviareactnativedfp(MavenPublication) {
groupId 'tecnavia'
artifactId 'tecnavia_react-native-dfp'
version '1.5.0'
version '1.6.0'
artifact("$libsDirName/tecnavia_react-native-dfp-release.aar")
}
tatecnaviareactnativegeolocation(MavenPublication) {
groupId 'tecnavia'
artifactId 'tecnavia_react-native-geolocation'
version '3.0.1'
artifact("$libsDirName/tecnavia_react-native-geolocation-release.aar")
}
tatecnaviareactnativenavigationbarcolor(MavenPublication) {
groupId 'tecnavia'
artifactId 'tecnavia_react-native-navigation-bar-color'
version '2.0.2'
version '2.1.0'
artifact("$libsDirName/tecnavia_react-native-navigation-bar-color-release.aar")
}
tatecnaviareactnativepdf(MavenPublication) {
groupId 'tecnavia'
artifactId 'tecnavia_react-native-pdf'
version '5.1.8'
version '5.3.2'
artifact("$libsDirName/tecnavia_react-native-pdf-release.aar")
}
tatecnaviareactnativeprint(MavenPublication) {
groupId 'tecnavia'
artifactId 'tecnavia_react-native-print'
version '0.6.1'
version '0.7.0'
artifact("$libsDirName/tecnavia_react-native-print-release.aar")
}
tatecnaviareactnativesqlitestorage(MavenPublication) {
groupId 'tecnavia'
artifactId 'tecnavia_react-native-sqlite-storage'
version '3.5.0'
artifact("$libsDirName/tecnavia_react-native-sqlite-storage-release.aar")
}
tatecnaviareactnativeutils(MavenPublication) {
groupId 'tecnavia'
artifactId 'tecnavia_react-native-utils'
version '1.7.4'
artifact("$libsDirName/tecnavia_react-native-utils-release.aar")
}
tatecnaviareactnativewebanalytics(MavenPublication) {
groupId 'tecnavia'
artifactId 'tecnavia_react-native-web-analytics'
@ -342,14 +314,14 @@ publishing {
tatecnaviareactnativeziparchive(MavenPublication) {
groupId 'tecnavia'
artifactId 'tecnavia_react-native-zip-archive'
version '5.2.0'
version '5.3.0'
artifact("$libsDirName/tecnavia_react-native-zip-archive-release.aar")
}
tareactnative(MavenPublication) {
groupId 'tecnavia'
artifactId 'react-native'
version '0.70.15'
version '0.80.1'
artifact("$libsDirName/react-native-release.aar")
}
@ -369,10 +341,11 @@ afterEvaluate {
}
android {
compileSdkVersion safeExtGet("compileSdkVersion", "33").toInteger()
compileSdkVersion safeExtGet("compileSdkVersion", "35").toInteger()
namespace "com.tecnavia.sdk"
defaultConfig {
targetSdkVersion safeExtGet("targetSdkVersion", "33").toInteger()
targetSdkVersion safeExtGet("targetSdkVersion", "35").toInteger()
minSdkVersion safeExtGet("minSdkVersion", "24").toInteger()
versionName APP_VERSION_NAME
}
@ -418,77 +391,72 @@ repositories {
mavenLocal()
}
def frescoVersion = safeExtGet("frescoVersion", "2.5.0")
def soLoaderVersion = safeExtGet("soLoaderVersion","0.10.4")
def frescoVersion = safeExtGet("frescoVersion", "3.6.0")
def soLoaderVersion = safeExtGet("soLoaderVersion","0.12.1")
def okHttpVersion = safeExtGet("okHttpVersion", "4.9.2")
def glideVersion = safeExtGet("glideVersion", "4.12.0")
def kotlinVersion = safeExtGet("kotlinVersion", "1.9.0")
def kotlinVersion = safeExtGet("kotlinVersion", "2.1.20")
def webkitVersion = safeExtGet("webkitVersion", "1.4.0")
def androidxVersion = safeExtGet("androidxVersion", "1.8.0")
def androidxWorkRuntimeVersion = safeExtGet("androidxWorkRuntimeVersion", "2.7.0")
def androidxAnnotationVersion = safeExtGet("androidxAnnotationVersion", "1.4.0")
def androidxViewpager2Version = safeExtGet("androidxViewpager2Version", "1.0.0")
def androidxViewpager2Version = safeExtGet("androidxViewpager2Version", "1.1.0")
def androidxFragmentVersion = safeExtGet("androidxFragmentVersion", "1.4.1")
def androidxBrowserVersion = safeExtGet("androidxBrowserVersion", "1.4.0")
def androidxTransitionVersion = safeExtGet("androidxTransitionVersion", "1.1.0")
def androidxCoordinatorlayoutVersion = safeExtGet("androidxCoordinatorlayoutVersion", "1.1.0")
def androidxSwiperefreshlayoutVersion = safeExtGet("androidxSwiperefreshlayoutVersion", "1.0.0")
def androidxAppcompatVersion = safeExtGet("androidxAppcompatVersion", "1.0.2")
def androidxSwiperefreshlayoutVersion = safeExtGet("androidxSwiperefreshlayoutVersion", "1.1.0")
def androidxAppcompatVersion = safeExtGet("androidxAppcompatVersion", "1.7.0")
def androidxLegacySupportVersion = safeExtGet("androidxLegacySupportVersion", "1.0.0")
def playServiceiidVersion = safeExtGet("playServiceiidVersion", "17.0.0")
def playServiceBaseVersion = safeExtGet("playServiceBaseVersion", "18.0.1")
def playServiceAnalyticsVersion = safeExtGet("playServiceAnalyticsVersion", "18.0.1")
def playServiceAdsVersion = safeExtGet("playServiceAdsVersion", "20.2.0")
def playServiceAdsVersion = safeExtGet("playServiceAdsVersion", "24.4.0")
def playServiceMapsVersion = safeExtGet("playServiceMapsVersion", "18.0.2")
def playBillingVersion = safeExtGet("playBillingVersion", "5.0.0")
def amazonSdkVersion = safeExtGet("amazonSdkVersion", "3.0.3")
def playBillingVersion = safeExtGet("playBillingVersion", "7.0.0")
def amazonSdkVersion = safeExtGet("amazonSdkVersion", "3.0.7")
dependencies {
implementation "tecnavia:react-native-android-open-settings:1.3.0"
implementation "tecnavia:react-native-async-storage_async-storage:2.0.0"
implementation "tecnavia:react-native-color-matrix-image-filters:6.0.9"
implementation "tecnavia:react-native-community_datetimepicker:6.7.5"
implementation "tecnavia:react-native-color-matrix-image-filters:7.0.2"
implementation "tecnavia:react-native-community_netinfo:11.4.1"
implementation "tecnavia:react-native-community_slider:2.0.9"
implementation "tecnavia:react-native-config:1.4.11"
implementation "tecnavia:react-native-cookies_cookies:6.2.1"
implementation "tecnavia:react-native-device-info:8.7.1"
implementation "tecnavia:react-native-dynamic-fonts:0.3.2"
implementation "tecnavia:react-native-fast-image:8.5.11"
implementation "tecnavia:react-native-fs:2.20.0"
implementation "tecnavia:react-native-gesture-handler:1.10.3"
implementation "tecnavia:react-native-gesture-handler:2.27.1"
implementation "tecnavia:react-native-idle-timer:2.1.6"
implementation "tecnavia:react-native-image-marker:0.9.2"
implementation "tecnavia:react-native-image-marker:1.2.6"
implementation "tecnavia:react-native-linear-gradient:2.8.3"
implementation "tecnavia:react-native-mail:6.1.1"
implementation "tecnavia:react-native-pager-view:6.4.1"
implementation "tecnavia:react-native-pager-view:6.8.1"
implementation "tecnavia:react-native-photo-view-ex:1.1.0"
implementation "tecnavia:react-native-reanimated:2.17.0"
implementation "tecnavia:react-native-safe-area-context:3.3.2"
implementation "tecnavia:react-native-screens:3.32.0"
implementation "tecnavia:react-native-reanimated:3.18.0"
implementation "tecnavia:react-native-safe-area-context:5.5.2"
implementation "tecnavia:react-native-screens:3.37.0"
implementation "tecnavia:react-native-share:10.2.1"
implementation "tecnavia:react-native-splash-screen:3.2.0"
implementation "tecnavia:react-native-sqlite-storage:3.3.10"
implementation "tecnavia:react-native-svg:15.7.1"
implementation "tecnavia:react-native-tecnavia-utils:1.3.2"
implementation "tecnavia:react-native-svg:15.12.0"
implementation "tecnavia:react-native-text-size:3.0.0"
implementation "tecnavia:react-native-tts:4.1.1"
implementation "tecnavia:react-native-uuid-generator:6.1.1"
implementation "tecnavia:react-native-vector-icons:8.1.0"
implementation "tecnavia:react-native-video:5.2.1"
implementation "tecnavia:react-native-volume-control:1.0.1"
implementation "tecnavia:react-native-webview:12.4.0"
implementation "tecnavia:react-native-webview:13.14.2"
implementation "tecnavia:rn-fetch-blob:0.11.2"
api "tecnavia:tecnavia_react-native-bridge:1.3.14"
implementation "tecnavia:tecnavia_react-native-default-preference:1.5.0"
implementation "tecnavia:tecnavia_react-native-dfp:1.5.0"
implementation "tecnavia:tecnavia_react-native-geolocation:3.0.1"
implementation "tecnavia:tecnavia_react-native-navigation-bar-color:2.0.2"
implementation "tecnavia:tecnavia_react-native-pdf:5.1.8"
implementation "tecnavia:tecnavia_react-native-print:0.6.1"
api "tecnavia:tecnavia_react-native-bridge:1.9.0"
implementation "tecnavia:tecnavia_react-native-default-preference:1.6.0"
implementation "tecnavia:tecnavia_react-native-dfp:1.6.0"
implementation "tecnavia:tecnavia_react-native-navigation-bar-color:2.1.0"
implementation "tecnavia:tecnavia_react-native-pdf:5.3.2"
implementation "tecnavia:tecnavia_react-native-print:0.7.0"
implementation "tecnavia:tecnavia_react-native-sqlite-storage:3.5.0"
implementation "tecnavia:tecnavia_react-native-utils:1.7.4"
implementation "tecnavia:tecnavia_react-native-web-analytics:1.2.0"
implementation "tecnavia:tecnavia_react-native-zip-archive:5.2.0"
api "tecnavia:react-native:0.70.15"
implementation "tecnavia:tecnavia_react-native-zip-archive:5.3.0"
api "tecnavia:react-native:0.80.1"
implementation "tecnavia:android-jsc:1.0.0"
//androidx dependencies
@ -517,9 +485,10 @@ dependencies {
implementation "com.facebook.fresco:imagepipeline-okhttp3:$frescoVersion"
implementation "com.facebook.fresco:ui-common:$frescoVersion"
implementation "com.facebook.soloader:soloader:$soLoaderVersion"
implementation "com.facebook.fbjni:fbjni-java-only:0.2.2"
implementation "com.facebook.fbjni:fbjni:0.7.0"
//google dependencies
implementation "com.google.code.findbugs:jsr305:3.0.2"
///used by react-native-pdf
implementation "com.google.code.gson:gson:2.8.5"
//used by react-native-device-info package
//update core with the same values in react-native-firebase
@ -527,13 +496,10 @@ dependencies {
//used by react-native-maps and react-native-iap packages
//update core with the same values in react-native-firebase
implementation "com.google.android.gms:play-services-base:$playServiceBaseVersion"
//used by react-native-google-analytics-bridge ga3
//try to use the same version of firebase-core
//use the same version of play-services-analytics
//used by react-native-prebid, react-native-admob and react-native-dfp packages
implementation "com.google.android.gms:play-services-ads:$playServiceAdsVersion"
//used by react-native-maps package
//used by @firebase/app
//used by react-native-iap
//firebase
//okhttp
implementation "com.squareup.okhttp3:okhttp:$okHttpVersion"

View File

@ -1,7 +1,7 @@
android.useAndroidX=true
APP_NAME=Android SDK
APP_VERSION_NAME=3.18.19
APP_VERSION_CODE=1747226748505
APP_VERSION_NAME=3.21.00
APP_VERSION_CODE=1753425847982
ANDROID_APP_ID=com.tecnaviaapplication
IS_ADDON=true

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,5 +1,5 @@
<!-- tecnavia manifest template -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.tecnavia.sdk">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<!-- we need it if there are google ad manager -->

File diff suppressed because one or more lines are too long

View File

@ -5,7 +5,7 @@ com.chirag.RNMail.RNMail
net.no_mad.tts.TextToSpeechPackage
com.lugg.ReactNativeConfig.ReactNativeConfigPackage
org.pgsqlite.SQLitePluginPackage
com.swmansion.gesturehandler.react.RNGestureHandlerPackage
com.swmansion.gesturehandler.RNGestureHandlerPackage
com.prebidlibrary.RNPrebidPackage
com.oblador.vectoricons.VectorIconsPackage
com.reactcommunity.rndatetimepicker.RNDateTimePickerPackage
@ -53,4 +53,8 @@ com.wenkesj.voice.VoicePackage
com.reactnativecommunity.webview.RNCWebViewPackage
com.RNFetchBlob.RNFetchBlobPackage
com.blueconic.reactnative.BlueConicClientPackage
com.tecnavia.chartbeat.ChartBeatPackage
com.tecnavia.chartbeat.ChartBeatPackage
com.reactnativecommunity.geolocation.GeolocationPackage
com.heanoria.library.reactnative.locationenabler.AndroidLocationEnablerPackage
com.zoontek.rnpermissions.RNPermissionsPackage
it.innove.BleManagerPackage

File diff suppressed because one or more lines are too long