Skip to content

Commit

Permalink
Update Frames version and add new setup files
Browse files Browse the repository at this point in the history
  • Loading branch information
jahirfiquitiva committed Apr 7, 2020
1 parent ac2132f commit 100ac2c
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 20 deletions.
51 changes: 51 additions & 0 deletions app/src/main/res/values/dashboard_setup.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="utf-8"?><!--suppress CheckTagEmptyBody -->
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation">

<!--
Do you want notifications to be enabled for all your users?
True means yes
False means no
-->
<bool name="notifications_enabled_by_default">true</bool>

<!--
Do you want animations to be enabled for all your users?
True means yes
False means no
-->
<bool name="animations_enabled_by_default">true</bool>

<!-- Privacy Policy link or url -->
<string name="privacy_policy_link">""</string>

<!-- Terms and Conditions link or url -->
<string name="terms_conditions_link">""</string>

<!--
Do you want to show your app and the dashboard versions in settings?
True means yes
False means no
-->
<bool name="show_versions_in_settings">true</bool>

<!--
Which theme do you want set as default?
0. Light
1. Dark
2. Follow system
-->
<integer name="default_theme">2</integer>

<!--
Do you want AMOLED theme to be enabled by default? (Requires dark theme or system dark theme enabled)
True means yes
False means no
-->
<bool name="amoled_theme_enabled_by_default">false</bool>

<!-- These are your donation items. Only put their ids here -->
<string-array name="donation_items">
<item></item>
</string-array>

</resources>
16 changes: 0 additions & 16 deletions app/src/main/res/values/frames_setup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@
-->
<bool name="allow_immediate_downloads">true</bool>

<!--
Do you want notifications to be enabled for all your users?
True means yes
False means no
-->
<bool name="notifications_enabled_by_default">true</bool>

<!-- Choose whether you want colored tiles by default -->
<bool name="enable_colored_tiles">false</bool>

Expand All @@ -27,19 +20,10 @@
<!-- Choose whether you want to show wallpaper palette colors or not -->
<bool name="show_wallpaper_palette_details">true</bool>

<!-- Privacy Policy link or url -->
<string name="privacy_policy_link">""</string>

<!-- Terms and Conditions link or url -->
<string name="terms_conditions_link">""</string>

<!--
Show a custom image as placeholder while loading wallpapers or collections
Use drawable name without extensions
-->
<string name="wallpapers_placeholder" translatable="false"></string>
<string name="collections_placeholder" translatable="false"></string>

<!-- These are your donation items. Only put their ids here -->
<string-array name="donation_items"></string-array>
</resources>
4 changes: 2 additions & 2 deletions buildSrc/src/main/java/Kuper.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

object Kuper {
const val appId = "dev.jahir.kuper.app"
const val version = 206
const val versionName = "2.0.6"
const val version = 207
const val versionName = "2.0.7"
}
4 changes: 2 additions & 2 deletions buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ object Versions {
const val oneSignal = "3.12.7"

// App
const val minSdk = 16
const val minSdk = 21
const val targetSdk = 29
const val buildTools = "29.0.3"

// Frames
const val frames = "3.1.1"
const val frames = "3.1.2"

// Kustom API
const val kustomApi = "6369c37"
Expand Down

0 comments on commit 100ac2c

Please sign in to comment.