2022-07-03 20:52:22 +03:00
|
|
|
group 'ru.yoomoney.sdk.kassa.payments.flutter'
|
|
|
|
|
|
|
|
buildscript {
|
2023-05-12 18:17:35 +03:00
|
|
|
ext.kotlin_version = '1.7.10'
|
2022-07-03 20:52:22 +03:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-08-14 18:02:30 +03:00
|
|
|
classpath 'com.android.tools.build:gradle:7.3.0'
|
2022-07-03 20:52:22 +03:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
android {
|
2023-05-12 18:17:35 +03:00
|
|
|
compileSdkVersion 33
|
2022-07-03 20:52:22 +03:00
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 21
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
signingConfig signingConfigs.debug
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2023-08-14 18:02:30 +03:00
|
|
|
implementation 'ru.yoomoney.sdk.kassa.payments:yookassa-android-sdk:6.7.1'
|
2022-07-03 20:52:22 +03:00
|
|
|
}
|