Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
jahirfiquitiva committed Feb 14, 2022
1 parent 143de0d commit 4249768
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 8 deletions.
8 changes: 7 additions & 1 deletion app/src/main/res/values/dashboard_setup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,15 @@
-->
<bool name="amoled_theme_enabled_by_default">false</bool>

<!--
Do you want Material You to be enabled by default? This works on Android 12 and higher.
`true` means yes. `false` means no.
-->
<bool name="material_you_enabled_by_default">true</bool>

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

</resources>
</resources>
13 changes: 13 additions & 0 deletions app/src/main/res/xml/network_security_config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config>
<trust-anchors>
<certificates src="system" />
</trust-anchors>
</base-config>
<domain-config>
<domain includeSubdomains="true">github.com</domain>
<domain includeSubdomains="true">raw.github.com</domain>
<domain includeSubdomains="true">drive.google.com</domain>
</domain-config>
</network-security-config>
4 changes: 2 additions & 2 deletions buildSrc/src/main/java/Blueprint.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

object Blueprint {
const val appId = "dev.jahir.blueprint.app"
const val version = 226
const val versionName = "2.2.6"
const val version = 228
const val versionName = "2.2.8"
}
8 changes: 4 additions & 4 deletions buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@

object Versions {
// Plugins
const val gradle = "7.0.3"
const val gradle = "7.1.1"
const val kotlin = "1.5.31"
const val sonatype = "1.1.0"

// OneSignal
const val oneSignalPlugin = "0.14.0"
const val oneSignal = "4.6.3"
const val oneSignal = "4.6.7"

// App
const val minSdk = 21
const val targetSdk = 31
const val buildTools = "30.0.2"
const val buildTools = "30.0.3"

// Kuper
const val kuper = "2.3.6"
const val kuper = "2.3.8"

// Adaptive Icons
const val adaptiveIcons = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip

0 comments on commit 4249768

Please sign in to comment.