Skip to content

Commit b2122f0

Browse files
committed
update dependencies
1 parent e2ee91e commit b2122f0

File tree

10 files changed

+39
-39
lines changed

10 files changed

+39
-39
lines changed

.idea/compiler.xml

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Crash/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies {
3636
implementation 'androidx.core:core-ktx:1.6.0'
3737
implementation 'androidx.appcompat:appcompat:1.3.1'
3838
implementation 'com.google.android.material:material:1.4.0'
39-
implementation 'com.github.Omega-R.OmegaIntentBuilder:core:1.3.3'
39+
implementation 'com.github.Omega-R.OmegaIntentBuilder:core:1.3.4'
4040
implementation "com.squareup.retrofit2:retrofit:2.9.0"
4141

4242
testImplementation 'junit:junit:4.+'

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22
ext {
3-
omegaRecyclerView = '1.10.0'
4-
omegaMoxy_version = 'c29de47d47'
3+
omegaRecyclerView = '1.10.1'
4+
omegaMoxy_version = '3.0.0'
55
kotlinCorutines_version = '1.5.0'
66

77
}// Top-level build file where you can add configuration options common to all sub-projects/modules.

core/build.gradle

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,16 @@ dependencies {
8484
ksp "com.github.Omega-R.OmegaMoxy:moxy-compiler:${omegaMoxy_version}"
8585

8686

87-
api "com.github.Omega-R.OmegaRecyclerView:omegarecyclerview:${omegaRecyclerView}@aar"
88-
api 'com.github.Omega-R.OmegaTypes:omegatypes:2.1.0'
89-
api 'com.github.Omega-R.OmegaTypes:glide:2.1.0'
90-
api 'com.github.Omega-R.OmegaIntentBuilder:core:1.3.3@aar'
91-
api 'com.github.Omega-R.OmegaLaunchers:omegalauncherslib:9bf99e7a'
87+
api "com.github.Omega-R.OmegaRecyclerView:omegarecyclerview:${omegaRecyclerView}"
88+
api 'com.github.Omega-R.OmegaTypes:omegatypes:2.2.0'
89+
api 'com.github.Omega-R.OmegaTypes:glide:2.2.0'
90+
api 'com.github.Omega-R.OmegaIntentBuilder:core:1.3.4'
91+
api 'com.github.Omega-R.OmegaLaunchers:omegalauncherslib:1.0.6'
9292
api 'com.github.Omega-R:OmegaExtensions:1.0.5'
93-
api "com.github.Omega-R:OmegaBind:fd7a8c1a@aar"
94-
api 'com.github.Omega-R:OmegaClicks:1.0.0@aar'
95-
api 'com.github.Omega-R:OmegaAdapters:1.0.2@aar'
93+
api 'com.github.Omega-R.OmegaIntentBuilder:annotations:1.0.5'
94+
api 'com.github.Omega-R:OmegaBind:1.0.5'
95+
api 'com.github.Omega-R:OmegaClicks:1.0.0'
96+
api 'com.github.Omega-R:OmegaAdapters:1.0.3'
9697

9798

9899
api project(':annotations')

core/src/main/java/com/omega_r/base/components/OmegaActivity.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import androidx.recyclerview.widget.RecyclerView
1717
import com.omega_r.base.R
1818
import com.omega_r.base.annotations.*
1919
import com.omega_r.base.annotations.OmegaWindowBackground.Companion.apply
20-
import com.omega_r.base.components.OmegaMenuable.ItemMenuProperty
2120
import com.omega_r.base.components.OmegaMenuable.MenuProperty
2221
import com.omega_r.base.dialogs.DialogCategory
2322
import com.omega_r.base.mvp.model.Action

core/src/main/java/com/omega_r/base/mvp/factory/MvpActivityLauncher.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import android.content.Intent
66
import android.os.Bundle
77
import android.os.Parcel
88
import android.os.Parcelable.Creator
9-
import android.os.SystemClock
109
import com.omegar.libs.omegalaunchers.ActivityLauncher
1110
import com.omegar.libs.omegalaunchers.tools.BundlePair
1211
import com.omegar.libs.omegalaunchers.tools.bundleOf
@@ -20,7 +19,7 @@ import kotlin.reflect.KClass
2019

2120
class MvpActivityLauncher(
2221
activityClass: Class<out Activity>,
23-
private val bundle: Bundle?,
22+
bundle: Bundle?,
2423
flags: Int = 0,
2524
private val presenterType: PresenterType,
2625
private val presenterClass: KClass<out MvpPresenter<*>>,

core/src/main/java/com/omega_r/base/mvp/factory/MvpDialogFragmentLauncher.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ package com.omega_r.base.mvp.factory
33
import android.os.Bundle
44
import android.os.Parcel
55
import android.os.Parcelable.Creator
6-
import android.os.SystemClock
76
import androidx.fragment.app.DialogFragment
8-
import androidx.fragment.app.Fragment
97
import com.omegar.libs.omegalaunchers.DialogFragmentLauncher
108
import com.omegar.libs.omegalaunchers.tools.BundlePair
119
import com.omegar.libs.omegalaunchers.tools.bundleOf
@@ -18,7 +16,7 @@ import kotlin.reflect.KClass
1816

1917
class MvpDialogFragmentLauncher(
2018
fragmentClass: Class<out DialogFragment>,
21-
private val bundle: Bundle?,
19+
bundle: Bundle?,
2220
private val presenterType: PresenterType,
2321
private val presenterClass: KClass<out MvpPresenter<*>>,
2422
) : DialogFragmentLauncher(fragmentClass, bundle), MvpLauncher {

core/src/main/java/com/omega_r/base/mvp/factory/MvpFragmentLauncher.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
package com.omega_r.base.mvp.factory
22

3-
import android.app.Activity
43
import android.os.Bundle
54
import android.os.Parcel
65
import android.os.Parcelable.Creator
7-
import android.os.SystemClock
86
import androidx.fragment.app.Fragment
97
import com.omegar.libs.omegalaunchers.FragmentLauncher
108
import com.omegar.libs.omegalaunchers.tools.BundlePair
@@ -18,7 +16,7 @@ import kotlin.reflect.KClass
1816

1917
class MvpFragmentLauncher(
2018
fragmentClass: Class<out Fragment>,
21-
private val bundle: Bundle?,
19+
bundle: Bundle?,
2220
private val presenterType: PresenterType,
2321
private val presenterClass: KClass<out MvpPresenter<*>>,
2422
) : FragmentLauncher(fragmentClass, bundle), MvpLauncher {

0 commit comments

Comments
 (0)