Skip to content

Commit

Permalink
Fix visible class in launchers
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-knyazev committed Dec 21, 2022
1 parent f689180 commit bac27d2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions omegalauncherslib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ apply plugin: 'com.github.dcendents.android-maven'
group = 'com.github.Omega-R.OmegaLauncher'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
compileSdkVersion 31


defaultConfig {
minSdkVersion 14
targetSdkVersion 28
targetSdkVersion 31
versionCode 1
versionName "1.0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import kotlinx.android.parcel.Parcelize
*/
@Parcelize
class ActivityLauncher(
private val activityClass: Class<out Activity>,
val activityClass: Class<out Activity>,
private val bundle: Bundle? = null,
private var flags: Int = 0
) : BaseIntentLauncher() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import java.lang.IllegalArgumentException
*/
@Parcelize
class DialogFragmentLauncher(
private val fragmentClass: Class<DialogFragment>,
val fragmentClass: Class<DialogFragment>,
private val bundle: Bundle? = null
) : Launcher {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import kotlinx.android.parcel.Parcelize
*/
@Parcelize
class FragmentLauncher(
private val fragmentClass: Class<Fragment>,
val fragmentClass: Class<Fragment>,
private val bundle: Bundle? = null
) : Launcher {

Expand Down

0 comments on commit bac27d2

Please sign in to comment.