Skip to content

Commit 5e3be40

Browse files
committed
Version 1.0
1 parent 4f927f7 commit 5e3be40

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
/.idea
99
/gradle.properties
1010
app/src/main/res/values/keys.xml
11-
11+
app/release/

app/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "com.danhasting.radar"
88
minSdkVersion 16
99
targetSdkVersion 27
10-
versionCode 0
11-
versionName "0.0"
10+
versionCode 2
11+
versionName "1.0"
1212
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1313

1414
javaCompileOptions {
@@ -27,15 +27,15 @@ android {
2727

2828
dependencies {
2929
implementation fileTree(include: ['*.jar'], dir: 'libs')
30-
implementation 'com.android.support:appcompat-v7:27.1.0'
31-
implementation 'com.android.support:design:27.1.0'
32-
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
30+
implementation 'com.android.support:appcompat-v7:27.1.1'
31+
implementation 'com.android.support:design:27.1.1'
32+
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
3333
implementation 'android.arch.lifecycle:extensions:1.1.1'
3434
testImplementation 'junit:junit:4.12'
35-
androidTestImplementation 'com.android.support.test:runner:1.0.1'
36-
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
37-
implementation 'android.arch.persistence.room:runtime:1.0.0'
38-
annotationProcessor 'android.arch.persistence.room:compiler:1.0.0'
35+
androidTestImplementation 'com.android.support.test:runner:1.0.2'
36+
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
37+
implementation 'android.arch.persistence.room:runtime:1.1.0'
38+
annotationProcessor 'android.arch.persistence.room:compiler:1.1.0'
3939
implementation 'com.x5dev:chunk-templates:3.3.1'
4040
implementation 'com.loopj.android:android-async-http:1.4.9'
4141
}

app/lint.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<lint>
3+
<issue id="UnusedResources">
4+
<ignore path="src/main/res/mipmap/app_icon_devel.png" />
5+
</issue>
6+
</lint>

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
jcenter()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:3.1.0'
10+
classpath 'com.android.tools.build:gradle:3.1.2'
1111

1212

1313
// NOTE: Do not place your application dependencies here; they belong

0 commit comments

Comments
 (0)