Skip to content

Commit

Permalink
Update to Blueprint 2.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jahirfiquitiva committed Apr 19, 2021
1 parent a14b96a commit ba2e59c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jdk: oraclejdk8
env:
global:
- ANDROID_API=30
- ANDROID_BUILD_TOOLS=30.0.0
- ANDROID_BUILD_TOOLS=30.0.2

android:
components:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ Blueprint is available via JitPack, so getting it as simple as adding it as a de
```gradle
allprojects {
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Expand Down
1 change: 0 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:requestLegacyExternalStorage="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/MyApp.SplashScreen"
Expand Down
5 changes: 4 additions & 1 deletion app/src/main/res/values/frames_setup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
-->
<bool name="allow_immediate_downloads">true</bool>

<!-- Choose whether you want users to download wallpapers using Wi-Fi only by default -->
<bool name="downloads_on_wifi_only_enabled_by_default">true</bool>

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

Expand All @@ -26,4 +29,4 @@
-->
<string name="wallpapers_placeholder" translatable="false"></string>
<string name="collections_placeholder" translatable="false"></string>
</resources>
</resources>
4 changes: 2 additions & 2 deletions buildSrc/src/main/java/MyApp.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

object MyApp {
const val appId = "dev.jahir.blueprint.app"
const val version = 216
const val versionName = "2.1.6"
const val version = 218
const val versionName = "2.1.8"
}
12 changes: 6 additions & 6 deletions buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

object Versions {
// Plugins
const val gradle = "4.1.1"
const val kotlin = "1.4.10"
const val gradle = "4.1.3"
const val kotlin = "1.4.32"

// OneSignal
const val oneSignalPlugin = "0.12.9"
const val oneSignal = "3.15.4"
const val oneSignalPlugin = "0.12.10"
const val oneSignal = "4.3.0"

// App
const val minSdk = 21
const val targetSdk = 30
const val buildTools = "30.0.0"
const val buildTools = "30.0.2"

// Blueprint
const val blueprint = "2.1.6"
const val blueprint = "2.1.8"
}

1 comment on commit ba2e59c

@PrinceAbid
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for the update, app force closes while requesting icons, please help resolving the issue, thanks..

Please sign in to comment.