Skip to content
This repository was archived by the owner on Oct 27, 2019. It is now read-only.

Commit f049eb4

Browse files
committed
Fixes app imports after new package structure
1 parent becaddf commit f049eb4

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: 'kotlin-android-extensions'
77
android {
88
compileSdkVersion 27
99
defaultConfig {
10-
applicationId "kotlinx.coroutines.experimental.firebase.app"
10+
applicationId "kotlinx.coroutines.experimental.firebase.android.app"
1111
minSdkVersion 25
1212
targetSdkVersion 27
1313
versionCode 1

app/src/androidTest/java/kotlinx/coroutines/experimental/android/app/BaseIntegrationTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import com.google.firebase.FirebaseApp
55
import com.google.firebase.auth.FirebaseAuth
66
import com.google.firebase.database.FirebaseDatabase
77
import kotlinx.coroutines.experimental.async
8+
import kotlinx.coroutines.experimental.firebase.android.await
89
import kotlinx.coroutines.experimental.runBlocking
9-
import kotlinx.coroutines.firebase.android.await
1010
import org.junit.Before
1111
import org.junit.BeforeClass
1212

app/src/androidTest/java/kotlinx/coroutines/experimental/android/app/DatabaseReferenceIntegrationTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ package kotlinx.coroutines.experimental.android.app
33
import android.support.test.runner.AndroidJUnit4
44
import com.google.firebase.FirebaseException
55
import com.google.firebase.database.*
6+
import kotlinx.coroutines.experimental.firebase.android.await
7+
import kotlinx.coroutines.experimental.firebase.android.readValue
8+
import kotlinx.coroutines.experimental.firebase.android.readValues
69
import kotlinx.coroutines.experimental.runBlocking
7-
import kotlinx.coroutines.firebase.android.await
810
import org.hamcrest.Matchers.*
911
import org.junit.Assert.assertThat
1012
import org.junit.Assert.fail
1113
import org.junit.Test
1214
import org.junit.runner.RunWith
13-
import readValue
14-
import readValues
1515

1616
@RunWith(AndroidJUnit4::class)
1717
class DatabaseReferenceIntegrationTest : BaseIntegrationTest() {

app/src/androidTest/java/kotlinx/coroutines/experimental/android/app/TaskIntegrationTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package kotlinx.coroutines.experimental.android.app
22

33
import android.support.test.runner.AndroidJUnit4
44
import com.google.firebase.auth.*
5+
import kotlinx.coroutines.experimental.firebase.android.await
56
import kotlinx.coroutines.experimental.runBlocking
6-
import kotlinx.coroutines.firebase.android.await
77
import org.hamcrest.Matchers.*
88

99
import org.junit.Test

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="kotlinx.coroutines.experimental.firebase.app">
2+
package="kotlinx.coroutines.experimental.firebase.android.app">
33

44
<application
55
android:allowBackup="true"

0 commit comments

Comments
 (0)