Skip to content

Commit

Permalink
Update to Blueprint 2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jahirfiquitiva committed Aug 6, 2021
1 parent cfbbf6f commit 62d25d4
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 72 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Build

on:
push:
branches:
- sample
- master

jobs:
test:
name: Build app
runs-on: ubuntu-18.04
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: 11

- name: Delete some caches
run: rm -f ~/.gradle/caches/modules-2/modules-2.lock; rm -fr ~/.gradle/caches/*/plugin-resolution/

- name: Cache Gradle
uses: actions/cache@v2
with:
path: |
~/.android/build-cache
~/.m2
~/.gradle
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Make gradlew executable
run: chmod +x gradlew; chmod +x gradle/wrapper/gradle-wrapper.jar

- name: Build
run: ./gradlew clean test --full-stacktrace
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,5 @@ proguard/
/report

app/release
.project
.classpath
61 changes: 0 additions & 61 deletions .travis.yml

This file was deleted.

5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ Blueprint

![API](https://img.shields.io/badge/API-21%2B-34bf49.svg)
[![GitHub Release](https://img.shields.io/github/v/release/jahirfiquitiva/Blueprint?label=Blueprint&sort=semver)](https://github.com/jahirfiquitiva/Blueprint/releases/latest)
[![Build Status](https://travis-ci.com/jahirfiquitiva/Blueprint.svg?branch=master)](https://travis-ci.com/jahirfiquitiva/Blueprint)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/55f3f196492a4ea88f13da0f219b9125)](https://www.codacy.com/app/jahirfiquitiva/Blueprint?utm_source=github.com&utm_medium=referral&utm_content=jahirfiquitiva/Blueprint&utm_campaign=Badge_Grade)
[![Crowdin](https://badges.crowdin.net/blueprint/localized.svg)](https://crowdin.com/project/blueprint)
[![Build Status](https://github.com/jahirfiquitiva/Blueprint/actions/workflows/build.yml/badge.svg?branch=sample)](https://github.com/jahirfiquitiva/Blueprint/actions/workflows/build.yml)
[![Crowdin](https://badges.crowdin.net/blueprint/localized.svg)](https://crowdin.com/project/blueprint/invite)

Free, feature-rich, easily customizable Android dashboard for icon packs

Expand Down
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 = 223
const val versionName = "2.2.3"
const val version = 224
const val versionName = "2.2.4"
}
10 changes: 5 additions & 5 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.2.1"
const val kotlin = "1.5.0"
const val gradle = "7.0.0"
const val kotlin = "1.5.21"

// OneSignal
const val oneSignalPlugin = "0.12.10"
const val oneSignal = "4.3.4"
const val oneSignalPlugin = "0.13.4"
const val oneSignal = "4.4.2"

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

// Blueprint
const val blueprint = "2.2.3"
const val blueprint = "2.2.4"
}
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-6.7.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip

0 comments on commit 62d25d4

Please sign in to comment.