Skip to content
This repository was archived by the owner on Aug 23, 2024. It is now read-only.

Commit af0f1cb

Browse files
author
Stan Wijckmans
committed
Project cleanup
1 parent 7d91e6a commit af0f1cb

File tree

5 files changed

+11
-21
lines changed

5 files changed

+11
-21
lines changed

.gitignore

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
*.iml
2-
.gradle
3-
/local.properties
4-
/.idea/workspace.xml
5-
/.idea/libraries
6-
.DS_Store
7-
/build
8-
/captures
9-
.externalNativeBuild
2+
local.properties
3+
.idea/
4+
.gradle/
5+
build/

build.gradle

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
buildscript {
22
repositories {
3-
jcenter()
3+
google()
44
}
55
dependencies {
66
classpath 'com.android.tools.build:gradle:2.3.0'
77
}
88
}
99

10-
allprojects {
11-
repositories {
12-
jcenter()
13-
}
14-
}
15-
1610
task clean(type: Delete) {
1711
delete rootProject.buildDir
18-
}
12+
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
zipStoreBase=GRADLE_USER_HOME
44
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-all.zip

mvvm/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ android {
1818
}
1919

2020
dependencies {
21-
compile 'com.android.support:appcompat-v7:25.3.1'
22-
compile 'com.google.dagger:dagger:2.10'
21+
implementation 'com.android.support:appcompat-v7:25.3.1'
22+
implementation 'com.google.dagger:dagger:2.10'
2323
}
2424

2525
task createJavaDoc(type: Javadoc) {
@@ -66,4 +66,4 @@ publishing {
6666
url "$buildDir\\repo"
6767
}
6868
}
69-
}
69+
}

mvvm/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<manifest package="stannieman.mvvm"/>
1+
<manifest package="stannieman.mvvm"/>

0 commit comments

Comments
 (0)