Welcome!
Here are three ways you can collaborate with Total Launcher:
1. "I would like to start a theme business with Total Launcher."
Great! This will be a fantastic opportunity for both your business and Total Launcher.
To get started, you'll need to create your own theme picker app. Please review [this document], which explains how to build a theme picker and theme packages using sample projects.
Tip: You don't need to be a professional developer to build your own theme picker app! With the AI coding assistant (Gemini) built into Android Studio, even non-programmers can easily modify the sample projects, fix errors, and build functional apps using simple natural language prompts. It's even free!
2. "I want to publish just a few themes for Total Launcher."
All you need to do is create your theme packages—no theme picker required.
However, if you'd like, I can feature a download link for your package in my app, "ChYK's Theme Collections". This can significantly help boost your theme downloads. Please check [this document] to learn how to create a standalone theme package.
3. "I'm an icon pack developer."
You can easily add Total Launcher support to your icon pack using the code snippet below.
Once implemented, please let me know! I'll be happy to feature your icon pack on our site's recommended list.
Intent intent;
intent = new Intent("com.ss.launcher2.ACTION_APPLY_ICONPACK");
ComponentName cmp = ComponentName.unflattenFromString(
"com.ss.launcher2/.ApplyThemeActivity");
intent.setComponent(cmp);
intent.putExtra("com.ss.launcher2.EXTRA_ICONPACK",
"[your package name]");
startActivity(intent);