new version 3.18.09
This commit is contained in:
parent
5a60a9a0b6
commit
a69ae6c7f7
|
@ -75,7 +75,7 @@ maven {
|
|||
}
|
||||
```
|
||||
|
||||
3. you could customize all dependencies version by updating the following variables, !pay attention, because the sdk may not starts or works properly add these variables to ext object in main gradle file, see below example.
|
||||
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 |
|
||||
|:---------------------------------- |:-------:|:-------------------------------------------------------------- |
|
||||
|
@ -83,7 +83,7 @@ maven {
|
|||
| targetSdk | 33 | |
|
||||
| minSdk | 24 | |
|
||||
| frescoVersion | 2.5.0 | used by react native to display some images |
|
||||
| soLoaderVersion | 0.10.1 | used to load needed system native libraries |
|
||||
| soLoaderVersion | 0.10.4 | used to load needed system native libraries |
|
||||
| okHttpVersion | 4.9.2 | |
|
||||
| glideVersion | 4.12.0 | |
|
||||
| kotlinGradleVersion | 1.9.0 | |
|
||||
|
@ -234,6 +234,10 @@ public class YourActivity extends AppCompatActivity {
|
|||
|
||||
// Define the orientation for the app. If not specified, the app will use its default behavior.
|
||||
bundle.putString(TaConstants.TA_LOCKED_ORIENTATION, "portrait|landscape");
|
||||
|
||||
//set the SDK referrer for GA4 analytics
|
||||
bundle.putString(TaConstants.TA_REFERRER, "referrer");
|
||||
|
||||
return bundle;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -286,7 +286,7 @@ publishing {
|
|||
tatecnaviareactnativebridge(MavenPublication) {
|
||||
groupId 'tecnavia'
|
||||
artifactId 'tecnavia_react-native-bridge'
|
||||
version '1.3.10'
|
||||
version '1.3.11'
|
||||
artifact("$libsDirName/tecnavia_react-native-bridge-release.aar")
|
||||
}
|
||||
|
||||
|
@ -419,7 +419,7 @@ repositories {
|
|||
}
|
||||
|
||||
def frescoVersion = safeExtGet("frescoVersion", "2.5.0")
|
||||
def soLoaderVersion = safeExtGet("soLoaderVersion","0.10.1")
|
||||
def soLoaderVersion = safeExtGet("soLoaderVersion","0.10.4")
|
||||
def okHttpVersion = safeExtGet("okHttpVersion", "4.9.2")
|
||||
def glideVersion = safeExtGet("glideVersion", "4.12.0")
|
||||
def kotlinVersion = safeExtGet("kotlinVersion", "1.9.0")
|
||||
|
@ -479,7 +479,7 @@ dependencies {
|
|||
implementation "tecnavia:react-native-volume-control:1.0.1"
|
||||
implementation "tecnavia:react-native-webview:12.4.0"
|
||||
implementation "tecnavia:rn-fetch-blob:0.11.2"
|
||||
api "tecnavia:tecnavia_react-native-bridge:1.3.10"
|
||||
api "tecnavia:tecnavia_react-native-bridge:1.3.11"
|
||||
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"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
android.useAndroidX=true
|
||||
|
||||
APP_NAME=Android SDK
|
||||
APP_VERSION_NAME=3.18.06
|
||||
APP_VERSION_CODE=1740665461011
|
||||
APP_VERSION_NAME=3.18.09
|
||||
APP_VERSION_CODE=1742893448916
|
||||
ANDROID_APP_ID=com.tecnaviaapplication
|
||||
IS_ADDON=true
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue