123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- apply plugin: 'com.android.application'
- apply plugin: 'kotlin-android'
- apply plugin: 'kotlin-android-extensions'
- android {
- compileSdkVersion 29
- testOptions {
- unitTests.returnDefaultValues = true
- unitTests.all {
- useJUnitPlatform()
- }
- unitTests {
- includeAndroidResources = true
- }
- }
- defaultConfig {
- applicationId "net.folivo.android.smsGatewayServer"
- minSdkVersion 27
- targetSdkVersion 29
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- packagingOptions {
- exclude 'META-INF/*'
- }
- kotlinOptions {
- jvmTarget = "1.8"
- }
- }
- dependencies {
- implementation 'androidx.legacy:legacy-support-v4:1.0.0'
- def fragment_version = "1.3.0-alpha08"
- def kotest_version = "4.2.5"
- def activity_version = "1.2.0-alpha08"
- def mockk_version = "1.10.0"
- def ktor_version = "1.4.1"
- androidTestImplementation 'androidx.test.ext:junit:1.1.2'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
- testImplementation "io.kotest:kotest-runner-junit5:$kotest_version" // for kotest framework
- testImplementation "io.kotest:kotest-assertions-core:$kotest_version"
- // for kotest core jvm assertions
- testImplementation "io.kotest:kotest-property:$kotest_version" // for kotest property test
- testImplementation "io.kotest:kotest-extensions-robolectric:4.0.1"
- testImplementation "io.mockk:mockk:$mockk_version"
- testImplementation 'androidx.test:core:1.3.0'
- testImplementation 'org.robolectric:robolectric:4.4'
- testImplementation 'junit:junit:4.13'
- implementation "io.ktor:ktor:$ktor_version"
- implementation "io.ktor:ktor-server-netty:$ktor_version"
- implementation "io.ktor:ktor-gson:$ktor_version"
- implementation "io.ktor:ktor-auth:$ktor_version"
- implementation "io.ktor:ktor-jackson:$ktor_version"
- implementation "io.ktor:ktor-network-tls-certificates:$ktor_version"
- implementation "io.ktor:ktor-client-cio:$ktor_version"
- implementation "androidx.work:work-runtime-ktx:2.4.0"
- implementation "androidx.activity:activity-ktx:$activity_version"
- implementation "androidx.fragment:fragment:$fragment_version"
- implementation 'androidx.core:core-ktx:1.3.2'
- implementation 'androidx.appcompat:appcompat:1.2.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.3'
- implementation 'ch.qos.logback:logback-classic:1.2.3'
- implementation "org.jetbrains.kotlin:kotlin-stdlib:1.4.10"
- implementation 'com.google.android.material:material:1.2.1'
- }
|