Project

General

Profile

« Previous | Next » 

Revision 1b2295ea

Added by Leszek Koltunski 5 months ago

first two files converted to Kotlin

View differences:

build.gradle
1
plugins {
2
    alias(libs.plugins.kotlin.android)
3
}
1 4
apply plugin: 'com.android.library'
2 5

  
3 6
android {
4
    compileSdk 34
7
    compileSdk 35
5 8

  
6 9
    defaultConfig {
7 10
        minSdk 21
8
        targetSdk 34
11
        targetSdk 35
9 12
    }
10 13

  
11 14
    buildTypes {
......
24 27
        sourceCompatibility JavaVersion.VERSION_11
25 28
        targetCompatibility JavaVersion.VERSION_11
26 29
    }
30
    kotlinOptions {
31
        jvmTarget = '11'
32
    }
27 33
}
28 34

  
29 35
dependencies {
30 36
    api project(':distorted-library')
37
    implementation libs.core.ktx
31 38
}
32 39

  

Also available in: Unified diff