Skip to content

Commit

Permalink
Merge pull request #176 from Tinkoff/v2.12
Browse files Browse the repository at this point in the history
V2.12
  • Loading branch information
jQwout authored Dec 29, 2022
2 parents 41777f3 + 10e64e1 commit 1cbf5ef
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 8 deletions.
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 2.12.0

#### Fixed
#### Changes
- !up minSdk version to 24!
- network config for self-signed certs
- add tinkoff and min.digital self-signed certs in ui module
#### Additions

## 2.11.0

#### Fixed
Expand Down
8 changes: 3 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_NAME=2.12.0
VERSION_CODE=18
VERSION_CODE=19
GROUP=ru.tinkoff.acquiring

POM_DESCRIPTION=Library which allows you to use internet acquiring in your android app
Expand All @@ -13,9 +13,7 @@ POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=tcs
POM_DEVELOPER_NAME=Tinkoff Credit Systems
org.gradle.daemon=true
org.gradle.jvmargs=-Xmx8096m -XX:+UseConcMarkSweepGC -Dfile.encoding=UTF-8
org.gradle.jvmargs=-Xmx8096m -XX:+UseConcMarkSweepGC -Dfile.encoding=UTF-8 -XX:MaxMetaspaceSize=512m

android.useAndroidX=true
android.enableJetifier=true

org.gradle.jvmargs=-XX:MaxMetaspaceSize=512m
android.enableJetifier=true
1 change: 0 additions & 1 deletion gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ ext {

compileSdk = 31
minSdk = 24
yandexPayMinSdk = 24
targetSdk = 31
buildTools = '30.0.3'

Expand Down
4 changes: 4 additions & 0 deletions migration.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2.12.0
Изменена версия minSdk всвязи самоподписными сертификатами:
minSdk : `21` -`24`

2.10.0

Изменены имена некоторых атрибутов:
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ android {

defaultConfig {
applicationId "ru.tinkoff.acquiring.sample"
minSdkVersion rootProject.yandexPayMinSdk
minSdkVersion rootProject.minSdk
targetSdkVersion rootProject.compileSdk
versionCode Integer.parseInt(VERSION_CODE)
versionName VERSION_NAME
Expand Down
5 changes: 5 additions & 0 deletions sample/src/main/res/xml/network_security_config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@
<certificates src="@raw/acq_tinkoff_root_cert" />
<certificates src="@raw/acq_ministry_of_digital_development_root_cert" />
</base-config>
<debug-overrides>
<trust-anchors>
<certificates src="user" />
</trust-anchors>
</debug-overrides>
</network-security-config>
2 changes: 1 addition & 1 deletion yandexpay/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
buildToolsVersion rootProject.buildTools

defaultConfig {
minSdkVersion rootProject.yandexPayMinSdk
minSdkVersion rootProject.minSdk
targetSdkVersion rootProject.targetSdk
versionCode Integer.parseInt(VERSION_CODE)
versionName VERSION_NAME
Expand Down

0 comments on commit 1cbf5ef

Please sign in to comment.