-
-
Notifications
You must be signed in to change notification settings - Fork 30
Setting up your project AndroidManifest.xml
You will find the AndroidManifest.xml
file under app/src/main
. Here are the lines that you will need to edit:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="dev.jahir.kuper.app">
In AndroidManifest.xml
, find the lines shown above. In the last line of this block, replace dev.jahir.kuper.app
with your app's package name. This is crucial for everything to function properly.
In AndroidManifest.xml
you can find these lines:
<!-- Permission required for donations -->
<uses-permission android:name="com.android.vending.BILLING"/>
Be sure they are enabled if you plan on enabling donations to you. Otherwise, you are free to remove them.
Additionally, if you plan on enabling donations. You must also add a license key, even if you don't enable license check, as that key works for both license check and in-app purchases (donations). Check how to do it here.
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