-
-
Notifications
You must be signed in to change notification settings - Fork 30
Adding Zooper widgets
Zooper widgets require a set of files that go into 4 folders: bitmaps
, fonts
, iconsets
, templates
Those 4 folders are inside src/main/assets
.
Copy your widgets files into the respective folders.
And that's it.
Go to your project's AndroidManifest.xml, and search for the lines:
<!-- TODO: Remove comment marks to enable Zooper
<intent-filter>
<action android:name="org.zooper.zw.TEMPLATES"/>
</intent-filter>
-->
<!-- TODO: Remove comment marks to enable Zooper
<provider
android:name=".zooper.TemplateProvider"
android:authorities="${applicationId}.zwprovider"
tools:ignore="ExportedContentProvider"/>
-->
Remove the comment marks to enable Zooper.
Go to res/values/kuper_setup.xml
and edit whatever you want.
I think the comments and names make the things self-explanatory, so it will be easy to do by yourself. This page explains it in full details though.
Play encrypts paid apps, and that messes with the provider and Zooper.
So, to avoid problems with Zooper, additionally to your iconsets zips, unzip them and create a folder with its content, inside the iconsets folder too.
For example, if your iconset is named WeatherIcons.zip
- Copy it to:
assets/iconsets/
- In
assets/iconsets/
create a folder with the name of your iconset zip, in this caseWeatherIcons
- Extract the content of the iconset zip, in this case
WeatherIcons.zip
intoassets/iconsets/WeatherIcons
(or the folder you created in last step). - Keep both the zip and the folder inside
assets/iconsets/
. The app will do the rest.
Copyright 2022 by Jahir Fiquitiva. This work is licensed under the CreativeCommons Attribution-ShareAlike 4.0 International License.
This list represents the step-to-step process to setup Kuper. It's organized so it's easier to follow. (Although you can do it in the order you want.)
- First steps
- Setting
build.gradle
up - Setting
AndroidManifest.xml
up - Change app icons
- Setting colors up
- Setting
MainActivity.kt
up - Setting
strings.xml
up - Setting
kuper_setup.xml
up - Setting
frames_setup.xml
up - Setting custom styles
- Adding Zooper widgets
- Adding Kustom assets
- Setting up Credits
- Optimize your wallpapers
- Setting up the wallpapers JSON file
- Enabling notifications
- Update your app's changelog
- Publish your app! 😃
- Update to latest version