Skip to content

Commit bac27d2

Browse files
committed
Fix visible class in launchers
1 parent f689180 commit bac27d2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

omegalauncherslib/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ apply plugin: 'com.github.dcendents.android-maven'
44
group = 'com.github.Omega-R.OmegaLauncher'
55
apply plugin: 'kotlin-android-extensions'
66
android {
7-
compileSdkVersion 28
7+
compileSdkVersion 31
88

99

1010
defaultConfig {
1111
minSdkVersion 14
12-
targetSdkVersion 28
12+
targetSdkVersion 31
1313
versionCode 1
1414
versionName "1.0"
1515

omegalauncherslib/src/main/java/com/omegar/libs/omegalaunchers/ActivityLauncher.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import kotlinx.android.parcel.Parcelize
1616
*/
1717
@Parcelize
1818
class ActivityLauncher(
19-
private val activityClass: Class<out Activity>,
19+
val activityClass: Class<out Activity>,
2020
private val bundle: Bundle? = null,
2121
private var flags: Int = 0
2222
) : BaseIntentLauncher() {

omegalauncherslib/src/main/java/com/omegar/libs/omegalaunchers/DialogFragmentLauncher.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import java.lang.IllegalArgumentException
2020
*/
2121
@Parcelize
2222
class DialogFragmentLauncher(
23-
private val fragmentClass: Class<DialogFragment>,
23+
val fragmentClass: Class<DialogFragment>,
2424
private val bundle: Bundle? = null
2525
) : Launcher {
2626

omegalauncherslib/src/main/java/com/omegar/libs/omegalaunchers/FragmentLauncher.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import kotlinx.android.parcel.Parcelize
1818
*/
1919
@Parcelize
2020
class FragmentLauncher(
21-
private val fragmentClass: Class<Fragment>,
21+
val fragmentClass: Class<Fragment>,
2222
private val bundle: Bundle? = null
2323
) : Launcher {
2424

0 commit comments

Comments
 (0)