Skip to content

Commit ee02e1c

Browse files
merge AlwaysAllowMultiInstaceSplit and KeepSplitScreenRatio into SplitScreenMods
1 parent baa1c5c commit ee02e1c

File tree

28 files changed

+66
-85
lines changed

28 files changed

+66
-85
lines changed

AlwaysAllowMultiInstanceSplit/Readme.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

AlwaysAllowMultiInstanceSplit/src/main/assets/xposed_init

Lines changed: 0 additions & 1 deletion
This file was deleted.

KeepSplitScreenRatio/Readme.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

KeepSplitScreenRatio/build.gradle.kts

Lines changed: 0 additions & 13 deletions
This file was deleted.

KeepSplitScreenRatio/src/main/AndroidManifest.xml

Lines changed: 0 additions & 24 deletions
This file was deleted.

KeepSplitScreenRatio/src/main/assets/xposed_init

Lines changed: 0 additions & 1 deletion
This file was deleted.

KeepSplitScreenRatio/src/main/res/values/arrays.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ A collection of small Xposed Modules.
66
| Module | Author | Description | Releases |
77
|-|-|-|-|
88
| [AlwaysAllowChargingFeedback](AlwaysAllowChargingFeedback) | [@binarynoise](https://github.com/binarynoise) | Always allow charging feedback, even in DnD mode | [GitHub](https://github.com/binarynoise/XposedModulets/releases?q=AlwaysAllowChargingFeedback) |
9-
| [AlwaysAllowMultiInstanceSplit](AlwaysAllowMultiInstanceSplit) | [@binarynoise](https://github.com/binarynoise) & [@programminghoch10](https://github.com/programminghoch10) | Allow all apps to be launched twice in a split screen | [GitHub](https://github.com/binarynoise/XposedModulets/releases?q=AlwaysAllowMultiInstanceSplit) |
109
| [AnimationScaleMod](AnimationScaleMod) | [@programminghoch10](https://github.com/programminghoch10) | Add more animation scale multipliers | [GitHub](https://github.com/binarynoise/XposedModulets/releases?q=AnimationScaleMod) |
1110
| [AntiBrightnessChange](AntiBrightnessChange) | [@programminghoch10](https://github.com/programminghoch10) | Prevent apps from changing display brightness | [GitHub](https://github.com/binarynoise/XposedModulets/releases?q=AntiBrightnessChange) [IzzyOnDroid](https://apt.izzysoft.de/fdroid/index/apk/com.programminghoch10.AntiBrightnessChange) |
1211
| [AutomaticAdvancedSettingsExpander](AutomaticAdvancedSettingsExpander) | [@binarynoise](https://github.com/binarynoise) | Automatically expands the advanced settings in the Settings app | [GitHub](https://github.com/binarynoise/XposedModulets/releases?q=AutomaticAdvancedSettingsExpander) [IzzyOnDroid](https://apt.izzysoft.de/fdroid/index/apk/de.binarynoise.AutomaticAdvancedSettingsExpander) |
@@ -22,6 +21,7 @@ A collection of small Xposed Modules.
2221
| [PersistentForegroundServiceNotifications](PersistentForegroundServiceNotifications) | [@binarynoise](https://github.com/binarynoise) | Make notifications of foreground services persistent again | [GitHub](https://github.com/binarynoise/XposedModulets/releases?q=persistentForegroundServiceNotifications) |
2322
| [ResetAllNotificationChannels](ResetAllNotificationChannels) | [@binarynoise](https://github.com/binarynoise) | Reset all Notification Channels: vibrations, ringtones, importance etc. | [GitHub](https://github.com/binarynoise/XposedModulets/releases?q=resetAllNotificationChannels) [IzzyOnDroid](https://apt.izzysoft.de/fdroid/index/apk/de.binarynoise.resetAllNotificationChannels) |
2423
| [RotationControl](RotationControl) | [@programminghoch10](https://github.com/programminghoch10) | Force rotation for selected packages | [GitHub](https://github.com/binarynoise/XposedModulets/releases?q=RotationControl) [IzzyOnDroid](https://apt.izzysoft.de/fdroid/index/apk/com.programminghoch10.RotationControl) |
24+
| [SplitScreenMods](SplitScreenMods) | [@binarynoise](https://github.com/binarynoise) & [@programminghoch10](https://github.com/programminghoch10) | A collection of various SplitScreen modifications. | [GitHub](https://github.com/binarynoise/XposedModulets/releases?q=SplitScreenMods) |
2525
| [UpsideWifi](UpsideWifi) | [@programminghoch10](https://github.com/programminghoch10) | Turn the WiFi icon upside down | [GitHub](https://github.com/binarynoise/XposedModulets/releases?q=UpsideWifi) |
2626
| [VolumeStepsIncrease](VolumeStepsIncrease) | [@programminghoch10](https://github.com/programminghoch10) | Increase the amount of volume steps | [GitHub](https://github.com/binarynoise/XposedModulets/releases?q=VolumeStepsIncrease) |
2727
<!--@formatter:on-->

SplitScreenMods/Readme.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# SplitScreenMods
2+
3+
A collection of various SplitScreen modifications.
4+
5+
## AlwaysAllowMultiInstanceSplit
6+
7+
Allow all apps to be launched twice side-by-side in a split screen.
8+
9+
Undefined behaviour ahead!
10+
11+
![1-screenshot.png](../metadata/com.programminghoch10.SplitScreenMods/en-US/images/phoneScreenshots/1-screenshot.png)
12+
13+
## KeepSplitScreenRatio
14+
15+
Keep the split screen ratio, when switching one of the split apps.
16+
17+
Only required on Android 14 and later,
18+
since previous versions did not force a split resize in this situation.
19+

AlwaysAllowMultiInstanceSplit/build.gradle.kts renamed to SplitScreenMods/build.gradle.kts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@ plugins {
44
}
55

66
android {
7-
namespace = "de.binarynoise.AlwaysAllowMultiInstanceSplit"
7+
namespace = "com.programminghoch10.SplitScreenMods"
88

99
defaultConfig {
1010
minSdk = 33
11-
targetSdk = 35
11+
targetSdk = 36
1212
}
1313
}
1414

1515
dependencies {
16-
implementation(project(":reflection"))
1716
implementation(project(":logger"))
1817
}

0 commit comments

Comments
 (0)