Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ subprojects {

ext {
minSdkVersion = 21
netceteraMinSdkVersion = 24
targetSdkVersion = 36
compileSdkVersion = 36

Expand Down Expand Up @@ -85,7 +86,6 @@ ext {
libphonenumberVersion = '9.0.19'
zxingVersion = '3.5.4'
jjwtVersion = '0.13.0'
bouncyCastleVersion = '1.79'
slf4jVersion = '1.7.36'

netcetera3dsSdkVersion = '2.5.3.1'
Expand Down
2 changes: 1 addition & 1 deletion example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {

defaultConfig {
applicationId "com.processout.example"
minSdk rootProject.ext.minSdkVersion
minSdk rootProject.ext.netceteraMinSdkVersion
targetSdk rootProject.ext.targetSdkVersion
versionCode generateVersionCode()
versionName rootProject.ext.publishVersion
Expand Down
3 changes: 1 addition & 2 deletions netcetera-3ds-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ android {
}

defaultConfig {
minSdk rootProject.ext.minSdkVersion
minSdk rootProject.ext.netceteraMinSdkVersion
targetSdk rootProject.ext.targetSdkVersion
setBuildConfig(it)
consumerProguardFiles 'consumer-rules.pro', 'netcetera-consumer-rules.pro'
Expand Down Expand Up @@ -138,6 +138,5 @@ preBuild.dependsOn afterKeepSecrets

dependencies {
api fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.bouncycastle:bcprov-jdk15to18:$bouncyCastleVersion"
implementation "org.slf4j:slf4j-api:$slf4jVersion"
}
2 changes: 1 addition & 1 deletion netcetera-3ds/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ android {
compileSdk = rootProject.ext.compileSdkVersion

defaultConfig {
minSdk rootProject.ext.minSdkVersion
minSdk rootProject.ext.netceteraMinSdkVersion
targetSdk rootProject.ext.targetSdkVersion
setBuildConfig(it)
consumerProguardFiles 'consumer-rules.pro'
Expand Down