Skip to content

Commit

Permalink
ci: add circle ci config
Browse files Browse the repository at this point in the history
Signed-off-by: Archit Raj <arch10@ymail.com>
  • Loading branch information
arch10 committed Feb 14, 2021
1 parent d554107 commit dc860f1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 2.1

orbs:
android: circleci/android@0.2.1

jobs:
build:
executor: android/android

steps:
- checkout
- run:
name: chmod permissions
command: chmod +x ./gradlew
- run:
command: ./gradlew build
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
applicationId "com.gigaworks.tech.calculator"
minSdkVersion 21
targetSdkVersion 30
versionCode 40
versionCode 41
versionName "2.0.0"
buildConfigField "java.util.Date", "buildTime", "new java.util.Date(" + System.currentTimeMillis() + "L)"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down

0 comments on commit dc860f1

Please sign in to comment.