Skip to content

Commit 46c05d7

Browse files
authored
Merge pull request #4 from asos-olivier/first_commit
Initial commit
2 parents 1260cac + 3a022bd commit 46c05d7

File tree

81 files changed

+3408
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+3408
-0
lines changed

.gitignore

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

build.gradle

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
/*
2+
* Copyright ASOS (c) 2019.
3+
* Licensed under the Apache License, Version 2.0 (the "License");
4+
* you may not use this file except in compliance with the License.
5+
* You may obtain a copy of the License at
6+
*
7+
* http://www.apache.org/licenses/LICENSE-2.0
8+
*
9+
* Unless required by applicable law or agreed to in writing, software
10+
* distributed under the License is distributed on an "AS IS" BASIS,
11+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* See the License for the specific language governing permissions and
13+
* limitations under the License.
14+
*/
15+
16+
// Top-level build file where you can add configuration options common to all sub-projects/modules.
17+
buildscript {
18+
19+
ext {
20+
compileSdkVersion = 28
21+
// No need to explicitly set buildToolsVersion since Android Plugin for Gradle 3.0.0
22+
23+
minSdkVersion = 19
24+
targetSdkVersion = 28
25+
26+
gradlePlugin = '3.2.1'
27+
28+
kotlin_version = '1.3.21'
29+
30+
arch_core_version = '2.0.0-beta01'
31+
supportLibraryVersion = '1.0.2'
32+
legacySupportVersion = '1.0.0'
33+
coroutinesVersion = '1.1.1'
34+
35+
frescoVersion = '1.10.0'
36+
glide_version = '4.9.0'
37+
okHTTPVersion = '3.12.1'
38+
39+
junitVersion = '4.12'
40+
mockitoVersion = '2.8.9'
41+
testSupportLibraryVersion = '1.1.0'
42+
}
43+
44+
repositories {
45+
google()
46+
jcenter()
47+
48+
}
49+
dependencies {
50+
classpath 'com.android.tools.build:gradle:3.3.2'
51+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
52+
// NOTE: Do not place your application dependencies here; they belong
53+
// in the individual module build.gradle files
54+
}
55+
}
56+
57+
allprojects {
58+
repositories {
59+
google()
60+
jcenter()
61+
62+
}
63+
}
64+
65+
task clean(type: Delete) {
66+
delete rootProject.buildDir
67+
}

gradle.properties

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
#
2+
# Copyright ASOS (c) 2019.
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
#
15+
16+
# Project-wide Gradle settings.
17+
# IDE (e.g. Android Studio) users:
18+
# Gradle settings configured through the IDE *will override*
19+
# any settings specified in this file.
20+
# For more details on how to configure your build environment visit
21+
# http://www.gradle.org/docs/current/userguide/build_environment.html
22+
# Specifies the JVM arguments used for the daemon process.
23+
# The setting is particularly useful for tweaking memory settings.
24+
org.gradle.jvmargs=-Xmx1536m
25+
# When configured, Gradle will run in incubating parallel mode.
26+
# This option should only be used with decoupled projects. More details, visit
27+
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
28+
# org.gradle.parallel=true
29+
# AndroidX package structure to make it clearer which packages are bundled with the
30+
# Android operating system, and which are packaged with your app's APK
31+
# https://developer.android.com/topic/libraries/support-library/androidx-rn
32+
android.useAndroidX=true
33+
# Automatically convert third-party libraries to use AndroidX
34+
android.enableJetifier=true
35+
# Kotlin code style for this project: "official" or "obsolete":
36+
kotlin.code.style=official

gradle/wrapper/gradle-wrapper.jar

53.1 KB
Binary file not shown.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#
2+
# Copyright ASOS (c) 2019.
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
#
15+
16+
#Tue Mar 19 08:26:13 GMT 2019
17+
distributionBase=GRADLE_USER_HOME
18+
distributionPath=wrapper/dists
19+
zipStoreBase=GRADLE_USER_HOME
20+
zipStorePath=wrapper/dists
21+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip

gradlew

Lines changed: 172 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 84 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)