Skip to content

Commit 70011bd

Browse files
author
Mukesh Solanki
committed
updated libs and added stale and ci
1 parent c803408 commit 70011bd

6 files changed

Lines changed: 85 additions & 10 deletions

File tree

.circleci/config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
jobs:
3+
build:
4+
working_directory: ~/code
5+
docker:
6+
- image: circleci/android:api-28-alpha
7+
environment:
8+
JVM_OPTS: -Xmx3200m
9+
steps:
10+
- checkout
11+
- restore_cache:
12+
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
13+
- run:
14+
name: Download Dependencies
15+
command: ./gradlew androidDependencies
16+
- save_cache:
17+
paths:
18+
- ~/.gradle
19+
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}

.github/stale.yml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Configuration for probot-stale - https://github.com/probot/stale
2+
3+
# issues only:
4+
issues:
5+
6+
# Number of days of inactivity before an Issue or Pull Request becomes stale
7+
daysUntilStale: 60
8+
9+
# Number of days of inactivity before a stale Issue or Pull Request is closed.
10+
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
11+
daysUntilClose: 7
12+
13+
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
14+
exemptLabels:
15+
- pinned
16+
- security
17+
- enchangements
18+
- "[Status] Maybe Later"
19+
20+
# Set to true to ignore issues in a project (defaults to false)
21+
exemptProjects: false
22+
23+
# Set to true to ignore issues in a milestone (defaults to false)
24+
exemptMilestones: false
25+
26+
# Label to use when marking as stale
27+
staleLabel: stale
28+
29+
# Comment to post when marking as stale. Set to `false` to disable
30+
markComment: >
31+
This issue has been automatically marked as stale because it has not had
32+
recent activity. It will be closed if no further activity occurs. Thank you
33+
for your contributions.
34+
35+
# Comment to post when removing the stale label.
36+
# unmarkComment: >
37+
# Your comment here.
38+
39+
# Comment to post when closing a stale Issue or Pull Request.
40+
closeComment: >
41+
This has been closed with no activity
42+
43+
# Limit the number of actions per hour, from 1-30. Default is 30
44+
limitPerRun: 30
45+
46+
# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
47+
# pulls:
48+
# daysUntilStale: 30
49+
# markComment: >
50+
# This pull request has been automatically marked as stale because it has not had
51+
# recent activity. It will be closed if no further activity occurs. Thank you
52+
# for your contributions.
53+
54+
# issues:
55+
# exemptLabels:
56+
# - confirmed

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 27
4+
compileSdkVersion 28
55
defaultConfig {
66
applicationId "com.mukesh.markdownview.example"
77
minSdkVersion 14
8-
targetSdkVersion 27
8+
targetSdkVersion 28
99
versionCode 1
1010
versionName "1.0"
1111
}
@@ -19,6 +19,6 @@ android {
1919

2020
dependencies {
2121
implementation fileTree(include: ['*.jar'], dir: 'libs')
22-
implementation 'com.android.support:appcompat-v7:27.1.1'
22+
implementation 'com.android.support:appcompat-v7:28.0.0-rc02'
2323
implementation project(':markdownview')
2424
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
google()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.1.1'
9+
classpath 'com.android.tools.build:gradle:3.3.0-alpha08'
1010
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
1111

1212
// NOTE: Do not place your application dependencies here; they belong
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Tue Apr 17 16:20:45 IST 2018
1+
#Fri Aug 31 01:17:43 IST 2018
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-all.zip

markdownview/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ apply plugin: 'com.github.dcendents.android-maven'
44
group = 'com.github.mukeshsolanki'
55

66
android {
7-
compileSdkVersion 27
7+
compileSdkVersion 28
88

99
defaultConfig {
1010
minSdkVersion 14
11-
targetSdkVersion 27
12-
versionCode 5
13-
versionName "1.0.6"
11+
targetSdkVersion 28
12+
versionCode 7
13+
versionName "1.0.7"
1414
}
1515
buildTypes {
1616
release {

0 commit comments

Comments
 (0)