mirror of
https://github.com/tateisu/SubwayTooter
synced 2024-12-23 23:54:51 +01:00
9b4ffd65c1
- Kotlin 1.3.41 - kotlinx.coroutines 1.2.2 - com.android.tools.build:gradle:3.4.2 - firebase-core:17.0.0 - firebase-messaging:19.0.1 - androidx.annotation:annotation:1.1.0 - org.conscrypt:conscrypt-android:2.1.0 - io.github.inflationx:calligraphy3:3.1.1 - io.github.inflationx:viewpump:2.0.3 - com.github.woxthebox:draglistview:1.6.6 - com.github.kenglxn.QRGen:android:2.5.0 - com.caverock:androidsvg-aar:1.4 - com.google.android.exoplayer:exoplayer:2.10.2 (this requires targetCompatibility JavaVersion.VERSION_1_8) - targetCompatibility JavaVersion.VERSION_1_8 - kotlin-stdlib-jdk7 => kotlin-stdlib
16 lines
396 B
Groovy
16 lines
396 B
Groovy
apply plugin: 'java-library'
|
|
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
//noinspection DifferentStdlibGradleVersion
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
|
|
testImplementation group: 'junit', name: 'junit', version: '4.12'
|
|
}
|
|
|
|
sourceCompatibility = "1.7"
|
|
targetCompatibility = "1.7"
|
|
|
|
|