Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
public final class org/koin/androix/startup/KoinInitializer : androidx/startup/Initializer {
public final class org/koin/androidx/startup/KoinInitializer : androidx/startup/Initializer {
public fun <init> ()V
public synthetic fun create (Landroid/content/Context;)Ljava/lang/Object;
public fun create (Landroid/content/Context;)Lorg/koin/core/Koin;
public fun dependencies ()Ljava/util/List;
}

public abstract interface class org/koin/androix/startup/KoinStartup {
public abstract interface class org/koin/androidx/startup/KoinStartup {
public abstract fun onKoinStartup ()Lorg/koin/dsl/KoinConfiguration;
}

Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
tools:node="merge">
<!-- This entry makes ExampleLoggerInitializer discoverable. -->
<meta-data
android:name="org.koin.androix.startup.KoinInitializer"
android:name="org.koin.androidx.startup.KoinInitializer"
android:value="androidx.startup" />
</provider>
</application>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.koin.androix.startup
package org.koin.androidx.startup

import android.content.Context
import androidx.startup.Initializer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.koin.androix.startup
package org.koin.androidx.startup

import org.koin.core.annotation.KoinExperimentalAPI
import org.koin.core.module.KoinApplicationDslMarker
Expand Down
Loading