Skip to content

Commit 35f3e04

Browse files
committed
v3.0.8
1 parent f3b9b1b commit 35f3e04

File tree

5 files changed

+25
-15
lines changed

5 files changed

+25
-15
lines changed

AndroidAsync-Kotlin/build.gradle

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
apply plugin: 'com.android.library'
2-
apply plugin: 'kotlin-android'
32
apply plugin: 'kotlin-android-extensions'
3+
apply plugin: 'kotlin-android'
4+
45
android {
56
compileSdkVersion 29
67
buildToolsVersion "29.0.1"
78

9+
kotlinOptions {
10+
apiVersion = "1.3"
11+
languageVersion = "1.3"
12+
}
13+
14+
compileOptions {
15+
sourceCompatibility 1.8
16+
targetCompatibility 1.8
17+
}
818

919
defaultConfig {
1020
minSdkVersion 14
@@ -25,11 +35,13 @@ android {
2535

2636
dependencies {
2737
implementation fileTree(dir: 'libs', include: ['*.jar'])
38+
api project(':AndroidAsync:AndroidAsync')
39+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
40+
2841
testImplementation 'junit:junit:4.12'
42+
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.0.6'
2943
androidTestImplementation 'androidx.test:runner:1.1.1'
3044
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
31-
32-
api project(':AndroidAsync:AndroidAsync')
3345
}
3446

3547
// upload to maven task

AndroidAsync-Kotlin/src/androidTest/java/com/koushikdutta/async/kotlin/ExampleInstrumentedTest.kt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
package com.koushikdutta.async.kotlin
22

3-
import androidx.test.platform.app.InstrumentationRegistry
4-
import androidx.test.ext.junit.runners.AndroidJUnit4
53

4+
import androidx.test.platform.app.InstrumentationRegistry
5+
import androidx.test.runner.AndroidJUnit4
6+
import org.junit.Assert.assertEquals
67
import org.junit.Test
78
import org.junit.runner.RunWith
89

9-
import org.junit.Assert.*
10-
1110
/**
1211
* Instrumented test, which will execute on an Android device.
1312
*

AndroidAsync-Kotlin/src/main/AndroidManifest.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.koushikdutta.async"
3-
android:versionCode="300"
4-
android:versionName="3.0.0">
2+
xmlns:maven="http://schemas.android.com/apk/res/android"
3+
package="com.koushikdutta.async.kotlin"
4+
maven:groupId="com.koushikdutta.async"
5+
android:versionCode="309"
6+
android:versionName="3.0.9">
57

68
<uses-permission android:name="android.permission.INTERNET"/>
79

AndroidAsync-Kotlin/src/main/res/values/strings.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.

AndroidAsync/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
package="com.koushikdutta.async"
3-
android:versionCode="300"
4-
android:versionName="3.0.0">
3+
android:versionCode="308"
4+
android:versionName="3.0.8">
55

66
<uses-permission android:name="android.permission.INTERNET"/>
77

0 commit comments

Comments
 (0)