├── .github
└── workflows
│ └── android.yml
├── .gitignore
├── README.md
├── app
├── .gitignore
├── build.gradle
├── proguard-rules.pro
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── assets
│ └── xposed_init
│ ├── java
│ └── io
│ │ └── github
│ │ └── icepony
│ │ └── alwayscreateuser
│ │ ├── MainActivity.java
│ │ ├── MainHook.java
│ │ ├── SettingsFragment.java
│ │ └── XposedHelper.java
│ └── res
│ ├── values-night
│ └── themes.xml
│ ├── values
│ ├── colors.xml
│ ├── strings.xml
│ └── themes.xml
│ └── xml
│ └── prefs.xml
├── build.gradle
├── docs
└── img
│ ├── Island.png
│ └── Thanox.png
├── gradle.properties
├── gradle
├── libs.versions.toml
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle
/.github/workflows/android.yml:
--------------------------------------------------------------------------------
1 | name: Android CI
2 |
3 | on:
4 | push:
5 | branches: [ master ]
6 | pull_request:
7 | workflow_dispatch:
8 |
9 | jobs:
10 | build:
11 |
12 | runs-on: ubuntu-latest
13 |
14 | steps:
15 | - name: Checkout
16 | uses: actions/checkout@v3
17 |
18 | - name: Set up JDK 21
19 | uses: actions/setup-java@v3
20 | with:
21 | java-version: 21
22 | distribution: 'temurin'
23 | cache: 'gradle'
24 |
25 | - name: Build with Gradle
26 | run: |
27 | chmod +x ./gradlew
28 | ./gradlew assembleRelease assembleDebug
29 |
30 | - name: Upload artifact
31 | uses: actions/upload-artifact@v4
32 | with:
33 | name: Signed app bundle
34 | path: app/build/outputs/apk
35 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea
5 | .DS_Store
6 | /build
7 | /captures
8 | .externalNativeBuild
9 | .cxx
10 | local.properties
11 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Always create user
2 |
3 | []()
4 | []()
5 | [](https://github.com/icepony/AlwaysCreateUser/issues)
6 |
7 | An Xposed Framework module that bypasses Android's user/profile creation limits
8 |
9 | ## Features
10 |
11 | - Bypass common profile creation errors
12 | - `Cannot add more profiles of type android.os.usertype.profile.(MANAGED | CLONE | PRIVATE) for user
13 | 0`
14 | - `Maximum user limit is reached`
15 | - `Cannot add more managed profiles for user`
16 | - `Error: couldn't create User`
17 | - Support Android 4.2 through Android 14+
18 | - Compatible with popular profile manager apps (Island, Shelter, etc.)
19 |
20 | ## Compatibility Overview
21 |
22 | The module hooks methods within [
23 | `UserManagerService.java`](https://github.com/aosp-mirror/platform_frameworks_base/blob/54642d141f80d495a475b304052eedd2832fcdb1/services/core/java/com/android/server/pm/UserManagerService.java#L5733)
24 |
25 | | Android Version | Hook Methods List |
26 | |-----------------|-----------------------------|
27 | | 14+ | `isCreationOverrideEnabled` |
28 | | 11-13 | `canAddMoreProfilesToUser` |
29 | | 7-13 | `isUserLimitReached` |
30 | | 6-10 | `canAddMoreManagedProfiles` |
31 | | 4.2-6 | `isUserLimitReachedLocked` |
32 |
33 | ## Screenshot
34 |
35 | | [Island](https://github.com/oasisfeng/island) | [Thanox](https://github.com/Tornaco/Thanox) |
36 | |-----------------------------------------------|---------------------------------------------|
37 | |  |  |
38 |
39 | ### [How to Setup for Island](https://island.oasisfeng.com/setup.html#manual-setup-for-island)
40 |
41 | ## Check Out My Other Project!
42 |
43 | * **[AlwaysBatterySaver](https://github.com/icepony/AlwaysBatterySaver)**: An Xposed module that
44 | prevents Android from automatically disabling Battery Saver mode when the device is charging.
45 |
46 | ## Thanks
47 |
48 | * Xposed Framework Developers
49 | * [CorePatch](https://github.com/LSPosed/CorePatch) (Inspiration for hook structure)
50 | * LLMs (Gemini, DeepSeek, ChatGPT) for assistance.
51 |
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/app/build.gradle:
--------------------------------------------------------------------------------
1 | plugins {
2 | alias(libs.plugins.android.application)
3 | }
4 |
5 | android {
6 | buildFeatures {
7 | buildConfig = true
8 | }
9 |
10 | namespace 'io.github.icepony.alwayscreateuser'
11 | compileSdk 35
12 |
13 | defaultConfig {
14 | applicationId "io.github.icepony.alwayscreateuser"
15 | minSdk 17
16 | targetSdk 35
17 | versionCode 7
18 | versionName "2.0"
19 | }
20 |
21 | buildTypes {
22 | release {
23 | minifyEnabled true
24 | shrinkResources true
25 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
26 | }
27 | }
28 |
29 | compileOptions {
30 | sourceCompatibility JavaVersion.VERSION_11
31 | targetCompatibility JavaVersion.VERSION_11
32 | }
33 |
34 | android.applicationVariants.configureEach { variant ->
35 | variant.outputs.configureEach {
36 | outputFileName = "AlwaysCreateUser_v${variant.versionName}-${variant.buildType.name}.apk"
37 | }
38 | }
39 | }
40 |
41 | dependencies {
42 | //noinspection GradleDependency,UseTomlInstead
43 | compileOnly("de.robv.android.xposed:api:53")
44 | }
--------------------------------------------------------------------------------
/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # You can control the set of applied configuration files using the
3 | # proguardFiles setting in build.gradle.
4 | #
5 | # For more details, see
6 | # http://developer.android.com/guide/developing/tools/proguard.html
7 |
8 | # If your project uses WebView with JS, uncomment the following
9 | # and specify the fully qualified class name to the JavaScript interface
10 | # class:
11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12 | # public *;
13 | #}
14 |
15 | # Uncomment this to preserve the line number information for
16 | # debugging stack traces.
17 | #-keepattributes SourceFile,LineNumberTable
18 |
19 | # If you keep the line number information, uncomment this to
20 | # hide the original source file name.
21 | #-renamesourcefileattribute SourceFile
22 |
23 | -keep class io.github.icepony.alwayscreateuser.MainHook
24 |
25 | -repackageclasses
26 | -allowaccessmodification
27 | -overloadaggressively
--------------------------------------------------------------------------------
/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
9 |
10 |
13 |
16 |
19 |
22 |
25 |
26 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/app/src/main/assets/xposed_init:
--------------------------------------------------------------------------------
1 | io.github.icepony.alwayscreateuser.MainHook
--------------------------------------------------------------------------------
/app/src/main/java/io/github/icepony/alwayscreateuser/MainActivity.java:
--------------------------------------------------------------------------------
1 | package io.github.icepony.alwayscreateuser;
2 |
3 | import android.app.Activity;
4 | import android.app.AlertDialog;
5 | import android.content.Context;
6 | import android.os.Bundle;
7 |
8 | public class MainActivity extends Activity {
9 |
10 | @Override
11 | protected void onCreate(Bundle savedInstanceState) {
12 | super.onCreate(savedInstanceState);
13 |
14 | try {
15 | getSharedPreferences(BuildConfig.APPLICATION_ID + "_preferences", Context.MODE_WORLD_READABLE);
16 | } catch (SecurityException ignored) {
17 | new AlertDialog.Builder(this)
18 | .setTitle(R.string.module_not_loaded)
19 | .setMessage(R.string.will_not_save)
20 | .setPositiveButton(android.R.string.ok, null)
21 | .show();
22 | }
23 |
24 | if (savedInstanceState == null) {
25 | getFragmentManager()
26 | .beginTransaction()
27 | .add(android.R.id.content, new SettingsFragment())
28 | .commit();
29 | }
30 | }
31 | }
--------------------------------------------------------------------------------
/app/src/main/java/io/github/icepony/alwayscreateuser/MainHook.java:
--------------------------------------------------------------------------------
1 | package io.github.icepony.alwayscreateuser;
2 |
3 | import de.robv.android.xposed.IXposedHookLoadPackage;
4 | import de.robv.android.xposed.XC_MethodHook;
5 | import de.robv.android.xposed.callbacks.XC_LoadPackage;
6 |
7 | public class MainHook extends XposedHelper implements IXposedHookLoadPackage {
8 |
9 | boolean isModuleEnabled;
10 | private Class> userManagerServiceClass;
11 |
12 | private void reloadPreferences() {
13 | prefs.reload();
14 | isModuleEnabled = prefs.getBoolean("enable_module", true);
15 | }
16 |
17 | @Override
18 | public void handleLoadPackage(XC_LoadPackage.LoadPackageParam lpparam) {
19 | if (!lpparam.packageName.equals("android")) return;
20 | log("Handling Android package");
21 | userManagerServiceClass = findClass("com.android.server.pm.UserManagerService", lpparam.classLoader);
22 | if (userManagerServiceClass == null)
23 | return;
24 |
25 | hookUserManager();
26 | }
27 |
28 | private void hookUserManager() {
29 | checkAndHook("isCreationOverrideEnabled", true);
30 | checkAndHook("canAddMoreProfilesToUser", true);
31 | checkAndHook("canAddMoreManagedProfiles", true);
32 | checkAndHook("isUserLimitReached", false);
33 | checkAndHook("isUserLimitReachedLocked", false);
34 | }
35 |
36 | private void checkAndHook(String methodName, Object result) {
37 | hookAllMethods(userManagerServiceClass, methodName, new XC_MethodHook() {
38 | @Override
39 | protected void beforeHookedMethod(MethodHookParam param) {
40 | reloadPreferences();
41 | if (!isModuleEnabled) {
42 | return;
43 | }
44 |
45 | if (prefs.getBoolean("hook_" + methodName, true)) {
46 | log("Bypassing " + methodName);
47 | param.setResult(result);
48 | }
49 | }
50 | });
51 | }
52 |
53 | }
54 |
--------------------------------------------------------------------------------
/app/src/main/java/io/github/icepony/alwayscreateuser/SettingsFragment.java:
--------------------------------------------------------------------------------
1 | package io.github.icepony.alwayscreateuser;
2 |
3 | import android.os.Build;
4 | import android.os.Bundle;
5 | import android.preference.Preference;
6 | import android.preference.PreferenceCategory;
7 | import android.preference.PreferenceFragment;
8 | import android.preference.SwitchPreference;
9 | import android.view.View;
10 |
11 | public class SettingsFragment extends PreferenceFragment implements Preference.OnPreferenceChangeListener {
12 |
13 | private SwitchPreference mEnableModuleSwitch;
14 | private PreferenceCategory mSettingsPreferenceCategory;
15 |
16 | @Override
17 | public void onCreate(Bundle savedInstanceState) {
18 | super.onCreate(savedInstanceState);
19 |
20 | addPreferencesFromResource(R.xml.prefs);
21 |
22 | mEnableModuleSwitch = (SwitchPreference) findPreference("enable_module");
23 | mSettingsPreferenceCategory = (PreferenceCategory) findPreference("settings");
24 |
25 | updatePreferenceEnabledStates(mEnableModuleSwitch.isChecked());
26 |
27 | mEnableModuleSwitch.setOnPreferenceChangeListener(this);
28 | }
29 |
30 | private void updatePreferenceEnabledStates(boolean moduleEnabled) {
31 | if (!BuildConfig.DEBUG) {
32 | if (mSettingsPreferenceCategory != null) {
33 | mSettingsPreferenceCategory.setEnabled(moduleEnabled);
34 | }
35 | }
36 | }
37 |
38 | @Override
39 | public boolean onPreferenceChange(Preference preference, Object newValue) {
40 | if (!(newValue instanceof Boolean)) {
41 | return false;
42 | }
43 | boolean isEnabled = (Boolean) newValue;
44 | String key = preference.getKey();
45 |
46 | switch (key) {
47 | case "enable_module":
48 | updatePreferenceEnabledStates(isEnabled);
49 | return true;
50 |
51 | default:
52 | return true;
53 | }
54 | }
55 |
56 | @Override
57 | public void onViewCreated(View view, Bundle savedInstanceState) {
58 | // Adjust the top distance to avoid conflict with the ActionBar
59 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
60 | view.setOnApplyWindowInsetsListener((v, insets) -> {
61 | view.setPadding(insets.getSystemWindowInsetLeft(),
62 | insets.getSystemWindowInsetTop(),
63 | insets.getSystemWindowInsetRight(),
64 | insets.getStableInsetBottom());
65 |
66 | return insets.consumeSystemWindowInsets();
67 | });
68 | }
69 | super.onViewCreated(view, savedInstanceState);
70 | }
71 |
72 | @Override
73 | public void onResume() {
74 | super.onResume();
75 | if (mEnableModuleSwitch != null) {
76 | updatePreferenceEnabledStates(mEnableModuleSwitch.isChecked());
77 | }
78 | }
79 | }
--------------------------------------------------------------------------------
/app/src/main/java/io/github/icepony/alwayscreateuser/XposedHelper.java:
--------------------------------------------------------------------------------
1 | package io.github.icepony.alwayscreateuser;
2 |
3 | import android.util.Log;
4 |
5 | import java.lang.reflect.Field;
6 | import java.lang.reflect.Member;
7 | import java.util.Set;
8 |
9 | import de.robv.android.xposed.XC_MethodHook;
10 | import de.robv.android.xposed.XSharedPreferences;
11 | import de.robv.android.xposed.XposedBridge;
12 | import de.robv.android.xposed.XposedHelpers;
13 |
14 | public class XposedHelper {
15 | public static final String TAG = "AlwaysCreateUser";
16 | public static XSharedPreferences prefs = new XSharedPreferences(BuildConfig.APPLICATION_ID, BuildConfig.APPLICATION_ID + "_preferences");
17 |
18 | public static Field findField(Class> clazz, String fieldName) {
19 | try {
20 | Field field = XposedHelpers.findField(clazz, fieldName);
21 | log("Successfully found field on class " + clazz.getName() + ": " + fieldName);
22 | return field;
23 | } catch (Throwable e) {
24 | logError("Error finding field on class " + clazz.getName() + ": " + fieldName, e);
25 | }
26 | return null;
27 | }
28 |
29 | public static XC_MethodHook.Unhook hookMethod(Member hookMethod, XC_MethodHook callback) {
30 | try {
31 | XC_MethodHook.Unhook unhook = XposedBridge.hookMethod(hookMethod, callback);
32 | log("Successfully added hook for " + hookMethod);
33 | return unhook;
34 | } catch (Throwable e) {
35 | logError("Error hook method: " + hookMethod, e);
36 | }
37 | return null;
38 | }
39 |
40 | public static XC_MethodHook.Unhook findAndHookMethod(String className, ClassLoader classLoader, String methodName, Object... parameterTypesAndCallback) {
41 | try {
42 | XC_MethodHook.Unhook andHookMethod = XposedHelpers.findAndHookMethod(className, classLoader, methodName, parameterTypesAndCallback);
43 | log("Successfully added hook for " + className + "#" + methodName);
44 | return andHookMethod;
45 | } catch (Throwable e) {
46 | logError("Error hook method: " + className + "#" + methodName, e);
47 | }
48 | return null;
49 | }
50 |
51 | public static Set hookAllMethods(Class> hookClass, String methodName, XC_MethodHook callback) {
52 | try {
53 | Set unhooks = XposedBridge.hookAllMethods(hookClass, methodName, callback);
54 | if (unhooks.isEmpty()) {
55 | log("No hooks found for " + hookClass.getName() + "#" + methodName);
56 | return null;
57 | }
58 | log("Successfully added hook for " + hookClass.getName() + "#" + methodName + " with " + unhooks.size() + " hooks.");
59 | return unhooks;
60 | } catch (Throwable e) {
61 | logError("Error hook method: " + hookClass.getName() + "#" + methodName, e);
62 | }
63 | return null;
64 | }
65 |
66 | public static Class> findClass(String className, ClassLoader classLoader) {
67 | try {
68 | Class> aClass = XposedHelpers.findClass(className, classLoader);
69 | log("Successfully found class: " + className);
70 | return aClass;
71 | } catch (Throwable e) {
72 | logError("Error finding class: " + className, e);
73 | }
74 | return null;
75 | }
76 |
77 | public static void logError(String message, Throwable t) {
78 | XposedBridge.log("E/" + TAG + ": " + message + "\n" + Log.getStackTraceString(t));
79 | }
80 |
81 | public static void log(String message) {
82 | if (BuildConfig.DEBUG) {
83 | XposedBridge.log("D/" + TAG + ": " + message);
84 | }
85 | }
86 | }
87 |
--------------------------------------------------------------------------------
/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FF000000
4 | #FFFFFFFF
5 |
--------------------------------------------------------------------------------
/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Always create user
3 | An Xposed Framework module that bypasses Android\'s user/profile creation limits
4 |
5 | Module not loaded
6 | Any changes you make will not be saved
7 |
8 | General
9 | Enable Module
10 | Master switch to enable/disable all module functions.
11 |
12 | Settings
13 | Bypass isCreationOverrideEnabled
14 | Enable this to bypass user creation restrictions (Android 14+)
15 | Bypass canAddMoreProfilesToUser
16 | Enable this to bypass profile limits (Android 11–13)
17 | Bypass canAddMoreManagedProfiles
18 | Enable this to bypass managed profile limits (Android 6–10)
19 | Enable this to bypass user limit checks (Android 7–13)
20 | Bypass isUserLimitReached
21 | Enable this to bypass user limit checks (Android 4.2–6)
22 | Bypass isUserLimitReachedLocked
23 |
24 |
25 |
--------------------------------------------------------------------------------
/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/prefs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
11 |
12 |
15 |
20 |
25 |
30 |
35 |
40 |
41 |
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | plugins {
3 | alias(libs.plugins.android.application) apply false
4 | }
--------------------------------------------------------------------------------
/docs/img/Island.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/icepony/AlwaysCreateUser/8ad3147f19fc5f03b5d040f3ab4bdd2e25352810/docs/img/Island.png
--------------------------------------------------------------------------------
/docs/img/Thanox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/icepony/AlwaysCreateUser/8ad3147f19fc5f03b5d040f3ab4bdd2e25352810/docs/img/Thanox.png
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 | # IDE (e.g. Android Studio) users:
3 | # Gradle settings configured through the IDE *will override*
4 | # any settings specified in this file.
5 | # For more details on how to configure your build environment visit
6 | # http://www.gradle.org/docs/current/userguide/build_environment.html
7 | # Specifies the JVM arguments used for the daemon process.
8 | # The setting is particularly useful for tweaking memory settings.
9 | #org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
10 | # When configured, Gradle will run in incubating parallel mode.
11 | # This option should only be used with decoupled projects. For more details, visit
12 | # https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
13 | # org.gradle.parallel=true
14 | # AndroidX package structure to make it clearer which packages are bundled with the
15 | # Android operating system, and which are packaged with your app's APK
16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn
17 | android.useAndroidX=true
18 | # Enables namespacing of each library's R class so that its R class includes only the
19 | # resources declared in the library itself and none from the library's dependencies,
20 | # thereby reducing the size of the R class for that library
21 | android.nonTransitiveRClass=true
--------------------------------------------------------------------------------
/gradle/libs.versions.toml:
--------------------------------------------------------------------------------
1 | [versions]
2 | agp = "8.9.0"
3 |
4 | [plugins]
5 | android-application = { id = "com.android.application", version.ref = "agp" }
6 |
7 |
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/icepony/AlwaysCreateUser/8ad3147f19fc5f03b5d040f3ab4bdd2e25352810/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Sun Jan 26 06:29:26 CST 2025
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | #
4 | # Copyright 2015 the original author or authors.
5 | #
6 | # Licensed under the Apache License, Version 2.0 (the "License");
7 | # you may not use this file except in compliance with the License.
8 | # You may obtain a copy of the License at
9 | #
10 | # https://www.apache.org/licenses/LICENSE-2.0
11 | #
12 | # Unless required by applicable law or agreed to in writing, software
13 | # distributed under the License is distributed on an "AS IS" BASIS,
14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | # See the License for the specific language governing permissions and
16 | # limitations under the License.
17 | #
18 |
19 | ##############################################################################
20 | ##
21 | ## Gradle start up script for UN*X
22 | ##
23 | ##############################################################################
24 |
25 | # Attempt to set APP_HOME
26 | # Resolve links: $0 may be a link
27 | PRG="$0"
28 | # Need this for relative symlinks.
29 | while [ -h "$PRG" ] ; do
30 | ls=`ls -ld "$PRG"`
31 | link=`expr "$ls" : '.*-> \(.*\)$'`
32 | if expr "$link" : '/.*' > /dev/null; then
33 | PRG="$link"
34 | else
35 | PRG=`dirname "$PRG"`"/$link"
36 | fi
37 | done
38 | SAVED="`pwd`"
39 | cd "`dirname \"$PRG\"`/" >/dev/null
40 | APP_HOME="`pwd -P`"
41 | cd "$SAVED" >/dev/null
42 |
43 | APP_NAME="Gradle"
44 | APP_BASE_NAME=`basename "$0"`
45 |
46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
48 |
49 | # Use the maximum available, or set MAX_FD != -1 to use that value.
50 | MAX_FD="maximum"
51 |
52 | warn () {
53 | echo "$*"
54 | }
55 |
56 | die () {
57 | echo
58 | echo "$*"
59 | echo
60 | exit 1
61 | }
62 |
63 | # OS specific support (must be 'true' or 'false').
64 | cygwin=false
65 | msys=false
66 | darwin=false
67 | nonstop=false
68 | case "`uname`" in
69 | CYGWIN* )
70 | cygwin=true
71 | ;;
72 | Darwin* )
73 | darwin=true
74 | ;;
75 | MINGW* )
76 | msys=true
77 | ;;
78 | NONSTOP* )
79 | nonstop=true
80 | ;;
81 | esac
82 |
83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
84 |
85 |
86 | # Determine the Java command to use to start the JVM.
87 | if [ -n "$JAVA_HOME" ] ; then
88 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
89 | # IBM's JDK on AIX uses strange locations for the executables
90 | JAVACMD="$JAVA_HOME/jre/sh/java"
91 | else
92 | JAVACMD="$JAVA_HOME/bin/java"
93 | fi
94 | if [ ! -x "$JAVACMD" ] ; then
95 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
96 |
97 | Please set the JAVA_HOME variable in your environment to match the
98 | location of your Java installation."
99 | fi
100 | else
101 | JAVACMD="java"
102 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
103 |
104 | Please set the JAVA_HOME variable in your environment to match the
105 | location of your Java installation."
106 | fi
107 |
108 | # Increase the maximum file descriptors if we can.
109 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
110 | MAX_FD_LIMIT=`ulimit -H -n`
111 | if [ $? -eq 0 ] ; then
112 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
113 | MAX_FD="$MAX_FD_LIMIT"
114 | fi
115 | ulimit -n $MAX_FD
116 | if [ $? -ne 0 ] ; then
117 | warn "Could not set maximum file descriptor limit: $MAX_FD"
118 | fi
119 | else
120 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
121 | fi
122 | fi
123 |
124 | # For Darwin, add options to specify how the application appears in the dock
125 | if $darwin; then
126 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
127 | fi
128 |
129 | # For Cygwin or MSYS, switch paths to Windows format before running java
130 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
131 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
132 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
133 |
134 | JAVACMD=`cygpath --unix "$JAVACMD"`
135 |
136 | # We build the pattern for arguments to be converted via cygpath
137 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
138 | SEP=""
139 | for dir in $ROOTDIRSRAW ; do
140 | ROOTDIRS="$ROOTDIRS$SEP$dir"
141 | SEP="|"
142 | done
143 | OURCYGPATTERN="(^($ROOTDIRS))"
144 | # Add a user-defined pattern to the cygpath arguments
145 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
146 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
147 | fi
148 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
149 | i=0
150 | for arg in "$@" ; do
151 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
152 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
153 |
154 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
155 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
156 | else
157 | eval `echo args$i`="\"$arg\""
158 | fi
159 | i=`expr $i + 1`
160 | done
161 | case $i in
162 | 0) set -- ;;
163 | 1) set -- "$args0" ;;
164 | 2) set -- "$args0" "$args1" ;;
165 | 3) set -- "$args0" "$args1" "$args2" ;;
166 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
167 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
168 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
169 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
170 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
171 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
172 | esac
173 | fi
174 |
175 | # Escape application args
176 | save () {
177 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
178 | echo " "
179 | }
180 | APP_ARGS=`save "$@"`
181 |
182 | # Collect all arguments for the java command, following the shell quoting and substitution rules
183 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
184 |
185 | exec "$JAVACMD" "$@"
186 |
--------------------------------------------------------------------------------
/gradlew.bat:
--------------------------------------------------------------------------------
1 | @rem
2 | @rem Copyright 2015 the original author or authors.
3 | @rem
4 | @rem Licensed under the Apache License, Version 2.0 (the "License");
5 | @rem you may not use this file except in compliance with the License.
6 | @rem You may obtain a copy of the License at
7 | @rem
8 | @rem https://www.apache.org/licenses/LICENSE-2.0
9 | @rem
10 | @rem Unless required by applicable law or agreed to in writing, software
11 | @rem distributed under the License is distributed on an "AS IS" BASIS,
12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | @rem See the License for the specific language governing permissions and
14 | @rem limitations under the License.
15 | @rem
16 |
17 | @if "%DEBUG%" == "" @echo off
18 | @rem ##########################################################################
19 | @rem
20 | @rem Gradle startup script for Windows
21 | @rem
22 | @rem ##########################################################################
23 |
24 | @rem Set local scope for the variables with windows NT shell
25 | if "%OS%"=="Windows_NT" setlocal
26 |
27 | set DIRNAME=%~dp0
28 | if "%DIRNAME%" == "" set DIRNAME=.
29 | set APP_BASE_NAME=%~n0
30 | set APP_HOME=%DIRNAME%
31 |
32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter.
33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
34 |
35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
37 |
38 | @rem Find java.exe
39 | if defined JAVA_HOME goto findJavaFromJavaHome
40 |
41 | set JAVA_EXE=java.exe
42 | %JAVA_EXE% -version >NUL 2>&1
43 | if "%ERRORLEVEL%" == "0" goto execute
44 |
45 | echo.
46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
47 | echo.
48 | echo Please set the JAVA_HOME variable in your environment to match the
49 | echo location of your Java installation.
50 |
51 | goto fail
52 |
53 | :findJavaFromJavaHome
54 | set JAVA_HOME=%JAVA_HOME:"=%
55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
56 |
57 | if exist "%JAVA_EXE%" goto execute
58 |
59 | echo.
60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
61 | echo.
62 | echo Please set the JAVA_HOME variable in your environment to match the
63 | echo location of your Java installation.
64 |
65 | goto fail
66 |
67 | :execute
68 | @rem Setup the command line
69 |
70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
71 |
72 |
73 | @rem Execute Gradle
74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
75 |
76 | :end
77 | @rem End local scope for the variables with windows NT shell
78 | if "%ERRORLEVEL%"=="0" goto mainEnd
79 |
80 | :fail
81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
82 | rem the _cmd.exe /c_ return code!
83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
84 | exit /b 1
85 |
86 | :mainEnd
87 | if "%OS%"=="Windows_NT" endlocal
88 |
89 | :omega
90 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | repositories {
3 | google {
4 | content {
5 | includeGroupByRegex("com\\.android.*")
6 | includeGroupByRegex("com\\.google.*")
7 | includeGroupByRegex("androidx.*")
8 | }
9 | }
10 | mavenCentral()
11 | gradlePluginPortal()
12 | }
13 | }
14 | dependencyResolutionManagement {
15 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
16 | repositories {
17 | google()
18 | mavenCentral()
19 | maven { url 'https://api.xposed.info/' }
20 | }
21 | }
22 |
23 | rootProject.name = "Always create user"
24 | include ':app'
25 |
--------------------------------------------------------------------------------